listing iptables rules
When I do "iptables --list" , why I cant see all rules ?I can oly see this :
# iptables --list
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
Because I have this script :
# cat emule
#!/bin/bash
iptables -t nat -A PREROUTING -i ppp0 -p tcp --dport 4662 -j DNAT --to 10.0.0.58:4662
iptables -t nat -A PREROUTING -i ppp0 -p udp --dport 4672 -j DNAT --to 10.0.0.58:4672
How can I see the above entries so I can delete it ?
Thanks.