> > #setup NAT > iptables -t nat -A POSTROUTING -o ppp0 -j MASQUERADE > > > #forward chain > > #syn flood limiting > iptables -A FORWARD -p tcp --syn -m limit --limit 1/s -j ACCEPT > iptables -A FORWARD -p tcp --tcp-flags SYN,ACK,FIN,RST RST -m limit --limit > 1/s -j ACCEPT > > > #enable ip forwarding > echo 1 > /proc/sys/net/ipv4/ip_forward
This is the relevant portion. Except for the fact that the limits are too tight everything else looks good. What is the default policy of the FORWARD chain? Ramin > > echo "Starting IP Forwarding" > > > The symptoms: > The linux box connects properly to my DSL service, and can see the windows > box on the local LAN (windows box can see the linux box aswell). I can > access services on the linux box such as ssh and http, but something is > preventing the windows box from seeing anything on the outside world via the > DSL. Any ideas/solutions? > > Cheers, > Tyler > > Tyler Kemp > ---------- > [EMAIL PROTECTED] > [EMAIL PROTECTED] > [EMAIL PROTECTED] >
