iptables-restore无法加载我的规则
我已经搜寻了一段时间,但没有任何解决方法。我正在设置邮件服务器,但是在写入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 …