我已经搜寻了一段时间,但没有任何解决方法。我正在设置邮件服务器,但是在写入iptables时,出现错误:
iptables-restore:第2行失败。
我正在尝试使用以下/etc/iptables.test.rules:
# Allows SMTP access
-A INPUT -p tcp --dport 25 -j ACCEPT
# Allows pop and pops connections
-A INPUT -p tcp --dport 110 -j ACCEPT
-A INPUT -p tcp --dport 995 -j ACCEPT
# Allows imap and imaps connections
-A INPUT -p tcp --dport 143 -j ACCEPT
-A INPUT -p tcp --dport 993 -j ACCEPT
之后,我发出以下命令:
sudo iptables-restore < /etc/iptables.test.rules
但是我得到了这个:
iptables-restore: line 2 failed.
我不知道问题是什么。谁能澄清?
我正在使用Ubuntu 10.10 LTS