CVSROOT: /cvs Module name: src Changes by: clau...@cvs.openbsd.org 2021/05/17 04:09:53
Modified files: sys/netinet6 : ip6_input.c Log message: Stop setting IPV6_MINMTU in ip6_send() which is used by the ICMP code. Because of this large ping packets where fragmented even if the MTU did not indicate the need for it. This causes some trouble when system do not expect to receive a fragmented answer from a system. One such case is the automated link test from google routers before allowing to establish a BGP peering session with them. In general PMTU problems should be an issue from the past and if not it may be better to also break on ping packets and not only for UDP and TCP. ICMP ping is normaly the first tool in the admins toolbox to figure out network issues. OK phessler@ florian@ bluhm@