常用的适合Web服务器的iptables规则
iptables --delete-chain
iptables --flush
iptables -P INPUT DROP #1
iptables -P FORWARD DROP #1
iptables -P OUTPUT DROP #1
iptables -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT #2
iptables -A INPUT -p tcp -m tcp --dport 80 -j ACCEPT #3
iptables -A INPUT -p tcp -m tcp --dport 22 -j ACCEPT #3
iptables -A INPUT -p tcp -m tcp --dport 21 -j ACCEPT #3
iptables -A INPUT -p tcp -m tcp --dport 873 -j ACCEPT #3
iptables -A INPUT -i lo -j ACCEPT #4
iptables -A INPUT -p icmp -m icmp --icmp-type 8 -j ACCEPT #5
iptables -A INPUT -p icmp -m icmp --icmp-type 11 -j ACCEPT #5
iptables -A OUTPUT -m state --state RELATED,ESTABLISHED -j ACCEPT #6
iptables -A OUTPUT -p udp -m udp --dport 53 -j ACCEPT #7
iptables -A OUTPUT -o lo -j ACCEPT #4
iptables -A OUTPUT -p tcp -m tcp --dport 80 -j ACCEPT #8
iptables -A OUTPUT -p tcp -m tcp --dport 25 -j ACCEPT #9
iptables -A OUTPUT -p icmp -m icmp --icmp-type 8 -j ACCEPT #10
iptables -A OUTPUT -p icmp -m icmp --icmp-type 11 -j ACCEPT #10
iptables-save>/etc/sysconfig/iptables
service iptables restart
#1、设置INPUT,FORWARD,OUTPUT链默认target为DROP,也就是外部与服务器不能通信。
#2、设置当连接状态为RELATED和ESTABLISHED时,允许数据进入服务器。
#3、设置外部客户端连接服务器端口80,22,21,873。
#4、允许内部数据循回。
#5、允许外部ping服务器 。
#6、设置状态为RELATED和ESTABLISHED的数据可以从服务器发送到外部。
#7、允许服务器使用外部dns解析域名。
#8、设置服务器连接外部服务器端口80。
#9、允许服务器发送邮件。
#10、允许从服务器ping外部。