I'm trying to add the following rule to iptables
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
but when I do a "iptables -L" I only see:
# iptables -L
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
Whats the deal?

