What's new
  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

iptables clamp-mss-to-pmtu

antdes45

Occasional Visitor
Hi,

I'm on ADSL and Netalyzr claims I can't send fragmented UDP traffic, that is, until I move the clamp-mss-to-pmtu rule to the mangle table.

I have the following firewall-start script which fixes the problem:
Code:
#!/bin/sh
iptables -D FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu
iptables -t mangle -A POSTROUTING -p tcp --tcp-flags SYN,RST SYN -j TCPMSS -o ppp0 --clamp-mss-to-pmtu

OpenWRT decided to move the rule to the mangle table. There are a few OpenWRT discussions about this. Now, putting the rule in FORWARD or POSTROUTING seems to be a great debate, but in my case, fixed some things.

https://lists.openwrt.org/pipermail/openwrt-devel/2012-February/014129.html

Netalyzr is also claiming that ICMP too big packets are blocked, which could explain why the fix is necessary to start with. Is there a ICMP blocking rule on Asuswrt or (most probably) my ISP is blocking them?
 
Last edited:
Thanks Merlin, saw the commit. I'm testing the latest dd-wrt beta build until next release since it's got different QoS queueing models. I'm quite disappointed so far.
 

Similar threads

Latest threads

Support SNBForums w/ Amazon

If you'd like to support SNBForums, just use this link and buy anything on Amazon. Thanks!

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Back
Top