iptables --list
Why I cant see my iptables setting using --list option ?I have set this :
iptables -t nat -A PREROUTING -i ppp0 -p tcp --dport 3000 -j DNAT --to 10.0.0.100:3000
iptables -t nat -A PREROUTING -i ppp0 -p udp --dport 4000 -j DNAT --to 10.0.0.100:4000
How to see current iptables rules that are running ?
Thanks.