下面示例是監控目標端口是80的輸入流量 --dport(destination port 的縮寫)linux
iptables -A INPUT -p tcp --dport 80
下面示例是監控來源端口是80的輸出流量 --sport(source port 的縮寫)tcp
iptables -A OUTPUT -p tcp --sport 80
iptables -L -v -n -x
iptables -L -v -n -x | grep 80 | awk '{print $2}'
iptables -Z INPUT
iptables -Z OUTPUT
iptables -D INPUT -p tcp --dport 80
iptables -D OUTPUT -p tcp --sport 80
iptables -L
iptables -F
iptables -L -n --line-numbers
iptables -D INPUT 8
iptables -I INPUT -s 123.45.6.7 -j DROP #屏蔽單個IP的命令 iptables -I INPUT -s 123.0.0.0/8 -j DROP #封整個段即從123.0.0.1到123.255.255.254的命令 iptables -I INPUT -s 124.45.0.0/16 -j DROP #封IP段即從123.45.0.1到123.45.255.254的命令 iptables -I INPUT -s 123.45.6.0/24 -j DROP #封IP段即從123.45.6.1到123.45.6.254的命令是
http://man.linuxde.net/iptables http://blog.51cto.com/ptallrights/1841911