私はしばらく探し回っていましたが、私の問題を解決するものは何もありません。メールサーバーを設定していますが、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を使用しています