First page Back Continue Last page Overview Graphics
Actions
-D – delete – has two formats
- Specify the rule number to delete
iptables -t nat -D POSTROUTING 2
deletes the second rule in the POSTROUTING chain of the nat table
- Specify the complete rule
iptables -D INPUT -p 6 –dport 135 -j ACCEPT
deletes the rule that allows MS RPC wherever it is in the filter table INPUT chain
Notes: