I installed iptables in Slitaz, however my traffic isn't being routed to eth0. I am trying to capture incoming traffic and routing it to eth0.
My local.sh script:
# ip port forwarding
echo 1 > /proc/sys/net/ipv4/ip_forward
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
Anyone any idea what's going wrong?