una - iptables: ¿cómo eliminar la regla de postrouting?
ver iptables ubuntu (1)
Me gustaría eliminar la regla POSTROUTING a continuación,
[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
luego escribí a continuación,
[root@hostname ~]# iptables -D POSTROUTING 1
iptables: No chain/target/match by that name
¿Hay algo mal?
Intente agregar el nombre de la tabla explícitamente:
iptables -t nat -D POSTROUTING 1