why do you SNAT?
for a simple and fast gateway you should do this:
set net.ipv4.ip_forward to 1 (/etc/sysctl.conf, then run: sysctl -p)
iptables -t nat -I POSTROUTING -o eth0 -j MASQUERADE
eth0 being your external interface (wan connection).
That's it.
|