SHINYの気になる言葉
mindiaSHINYの気になる言葉見出し語

iptables

!! (^ ..O ^ ) !! SHINYA · 2008-10-05 更新

Linuxでサーバを要塞化するためのコマンド設定ファイル

サービス停止(stop)
/etc/rc.d/init.d/iptables stop

#許可するport 拒否するportを設定

# tcp30000ポートを許可する例
iptables -A INPUT -p tcp --dport 30000 -j ACCEPT

# tcp135,137ポートを拒否する例
iptables -A INPUT -s ! $LOCALNET -p tcp -m multiport --dports 135,137 -j DROP
not found save

/etc/rc.d/init.d/iptables save
not found iptables

service start
/etc/rc.d/init.d/iptables start

関連する見出し語

この見出し語を含む記事