# 定义安全政策为正面表列
$IPTABLES -P INPUT DROP
$IPTABLES -P OUTPUT DROP
$IPTABLES -P FORWARD DROP
# 安全政策
$IPTABLES -A INPUT -p all -i eth0 -j ACCEPT
$IPTABLES -A INPUT -p all -i lo -s 127.0.0.1 -j ACCEPT
$IPTABLES -A INPUT -p all -i lo -s 192.168.0.1 -j ACCEPT
$IPTABLES -A INPUT -p all -i lo -s 192.168.1.1 -j ACCEPT
$IPTABLES -A FORWARD -i eth0 -o eth1 -j ACCEPT
$IPTABLES -A FORWARD -i eth1 -o eth0 -m state --state ESTABLISHED,RELATED -j ACCEPT
$IPTABLES -A FORWARD -p tcp --dport 21 -j ACCEPT
$IPTABLES -A FORWARD -p tcp --sport 20 -j ACCEPT
$IPTABLES -A OUTPUT -p all -s 127.0.0.1 -j ACCEPT
$IPTABLES -A OUTPUT -p all -s 192.168.0.1 -j ACCEPT
$IPTABLES -A OUTPUT -p all -s 192.168.1.1 -j ACCEPT