Hello, On Fri, Oct 23, 2015, at 18:45, Vincent Li wrote: > It looks ip_no_pmtu_disc setting does not affect UDP IP packet DF bit > setting, is that intended behavior? echo 0, 1, 2, 3 respectively to > ip_no_pmtu_disc, UDP IP packet always have DF bit cleared, unless use > IP_PMTUDISC_DO on IP_MTU_DISCOVER as ip man page says.
Which size do the UDP packets have and what is your MTU? inet_create also creates udp sockets and thus the setting does have effect. > > in inet_create, seems to prove that. > > if (net->ipv4.sysctl_ip_no_pmtu_disc) > inet->pmtudisc = IP_PMTUDISC_DONT; > else > inet->pmtudisc = IP_PMTUDISC_WANT; > > so I am wondering why UDP is excluded by ip_no_pmtu_disc, why in > inet_create, not assign each individual ip_no_pmtu_disc setting to > inet->pmtudisc but only check true and assign IP_PMTUDISC_DONT or > IP_PMTUDISC_WANT only. ip_no_pmtu_disc sysctl != IP_MTU_DISCOVER setsockopt. Also we cannot change this as it would disrupt communication easily relying on this established behavior. See Documentation/ip-sysctl.txt: ip_no_pmtu_disc - INTEGER Disable Path MTU Discovery. If enabled in mode 1 and a fragmentation-required ICMP is received, the PMTU to this destination will be set to min_pmtu (see below). You will need to raise min_pmtu to the smallest interface MTU on your system manually if you want to avoid locally generated fragments. In mode 2 incoming Path MTU Discovery messages will be discarded. Outgoing frames are handled the same as in mode 1, implicitly setting IP_PMTUDISC_DONT on every created socket. Mode 3 is a hardend pmtu discover mode. The kernel will only accept fragmentation-needed errors if the underlying protocol can verify them besides a plain socket lookup. Current protocols for which pmtu events will be honored are TCP, SCTP and DCCP as they verify e.g. the sequence number or the association. This mode should not be enabled globally but is only intended to secure e.g. name servers in namespaces where TCP path mtu must still work but path MTU information of other protocols should be discarded. If enabled globally this mode could break other protocols. Possible values: 0-3 Default: FALSE Bye, Hannes -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html