public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Problem with PMTU discovery on ICMP packets
@ 2001-05-05 11:36 Svenning Soerensen
  2001-05-05 11:44 ` David S. Miller
  0 siblings, 1 reply; 6+ messages in thread
From: Svenning Soerensen @ 2001-05-05 11:36 UTC (permalink / raw)
  To: linux-kernel; +Cc: linux-ipsec

Hi there,

I think there is a bug in the 2.4 icmp code regarding PMTU discovery.
It seems to be inconsistent between reboots: at one boot echo replies always
have the DF bit set, while after another boot they don't, indicating that
this is caused by an uninitialized parameter.
Even 'echo 1 > /proc/sys/net/ipv4/ip_no_pmtu_disc' doesn't change this
behaviour.

I can't think of any legitimate reasons for doing PMTU discovery on ICMP
packets, and since it actually in some situations breaks ping in combination
with FreeS/WAN (I can elaborate, if anyone is interested), I would suggest
to turn it off in a consistent manner.
The patch below (against 2.4.4) should accomplish this.

Svenning

--- linux/net/ipv4/icmp.c	2001/04/28 12:30:34	1.1.1.2
+++ linux/net/ipv4/icmp.c	2001/05/05 11:06:41
@@ -1006,6 +1006,7 @@
 	icmp_socket->sk->allocation=GFP_ATOMIC;
 	icmp_socket->sk->sndbuf = SK_WMEM_MAX*2;
 	icmp_socket->sk->protinfo.af_inet.ttl = MAXTTL;
+	icmp_socket->sk->protinfo.af_inet.pmtudisc = IP_PMTUDISC_DONT;
 
 	/* Unhash it so that IP input processing does not even
 	 * see it, we do not wish this socket to see incoming

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2001-05-10  1:22 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-05-05 11:36 Problem with PMTU discovery on ICMP packets Svenning Soerensen
2001-05-05 11:44 ` David S. Miller
2001-05-05 14:23   ` Svenning Soerensen
2001-05-05 22:11     ` David S. Miller
2001-05-07  0:19       ` Svenning Soerensen
2001-05-10  1:21         ` David S. Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox