首先,登录后,可以通过键入以下内容手动加载规则
sudo iptables-restore < /etc/iptables.new
然后规则出现在
sudo iptables -L
但是无论如何我都无法使其自动加载。 在/ etc / network / interfaces中,我有这个:
auto eth0 inet dhcp
adress 192.168.56.101
netmask 255.255.255.0
pre-up iptables-restore < /etc/iptables.new
iptables.new中的规则是:
Generated By iptables-save v1.4.12 on Sun Jul 7 15:28:14 2013
*filter
:INPUT ACCEPT [4:824]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
-A INPUT -p tcp -m tcp --dport 22 -j ACCEPT
COMMIT
# Completed on Sun Jul 7 7 15:28:14 2013
我通常这样做的是: