web-dev-qa-db-ja.com

iptables:ポストルーティングルールを削除する方法

以下のPOSTROUTINGルールを削除したいのですが、

[root@hostname ~]# service iptables status
Table: nat
Chain PREROUTING (policy ACCEPT)
num  target     prot opt source               destination         

Chain POSTROUTING (policy ACCEPT)
num  target     prot opt source               destination         
1    MASQUERADE  all  --  192.168.1.0/24       0.0.0.0/0           

Chain OUTPUT (policy ACCEPT)
num  target     prot opt source               destination         

次に下に入力しました

[root@hostname ~]# iptables -D POSTROUTING 1
iptables: No chain/target/match by that name

何か間違っていることでも?

37
hiroo

テーブル名を明示的に追加してみてください。

iptables -t nat -D POSTROUTING 1
70
sarnold