
|
Hanging websites, scp fails, ftp stalls ..., odd network behaviorIf you have ever broken websites or stalling traffic I had this problem last year when I switched to a new provider My setup is a dsl connection with a Linux firewall for the home network Normally the default MTU size is 1500, but for a pppoe connection it is downscaled to 1492 Now that I had some more time, I had to investigate this issue I discovered (in the man page) that the simplest way is to add a iptables rule and allow this mss package So if you have pppoe and a iptables firewall ... iptables -I FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu I hope I can help some ppl with this blog
|