回答:
私のシステム管理者は、iptablesルールを含むファイルをくれました。これをロードするには、どのコマンドを入力しますか?
iptables-restore < file-with-iptables-rules.txt
私は彼が前にそれをするのを見ました、そして、彼は1行でそれをしました!... iptables> thefile.datのようなもの????
iptables-save > file-with-iptables-rules.txt
curl -s SOME_URL | iptables-restore
。
あなたは、ロード・復元のiptablesを使用してiptablesの設定ファイルを
iptables-restore thefile.dat
これはすぐに有効になります。ただし、この設定をシステムの再起動後も保持するには、保存する必要があります。ほとんどのディストリビューションでこれを行うことができます。
/etc/init.d/iptables save
他の回答で述べたように、設定は次を使用して保存できます
iptables-save > thesavefile.dat
ファイル自体はテキストファイルであり、任意のテキストエディターで編集した後、iptables-restoreコマンドを使用してiptablesに再読み込みできます。
iptables-restore < http://git.company.com/Company/iptables-rules/blob/master/iptables-rules.txt