Network Working Group K. Lahey Internet Draft December 1998 Expires: June 1999 TCP Problems with Path MTU Discovery 1. Status of this Memo This document is an Internet Draft. Internet Drafts are working documents of the Internet Engineering Task Force (IETF), its areas, and its working groups. Note that other groups may also distribute working documents as Internet Drafts. Internet Drafts are draft documents valid for a maximum of six months, and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet Drafts as reference material or to cite them other than as ``work in progress''. To view the entire list of current Internet-Drafts, please check the "1id-abstracts.txt" listing contained in the Internet-Drafts Shadow Directories on ftp.is.co.za (Africa), ftp.nordu.net (Northern Europe), ftp.nis.garr.it (Southern Europe), munnari.oz.au (Pacific Rim), ftp.ietf.org (US East Coast), or ftp.isi.edu (US West Coast). This memo provides information for the Internet community. This memo does not specify an Internet standard of any kind. Distribution of this memo is unlimited. 2. Introduction This memo catalogs several known TCP implementation problems dealing with Path MTU Discovery [RFC1191], including the long-standing black hole problem, stretch ACKs due to confusion between MSS and segment size, and MSS advertisement based on PMTU. The goal in doing so is to improve conditions in the existing Internet by enhancing the quality of current TCP/IP implementations. While Path MTU Discovery (PMTUD) can be used with any upper-layer protocol, it is most commonly used by TCP; this document does not attempt to treat problems encountered by other upper-layer protocols. Each problem is defined as follows: Lahey PUTFFHERE[Page 1] Internet Draft TCP Problems with Path MTU Discovery December 1998 Name of Problem The name associated with the problem. In this memo, the name is given as a subsection heading. Classification One or more problem categories for which the problem is classi- fied: "congestion control", "performance", "reliability". Description A definition of the problem, succinct but including necessary background material. Significance A brief summary of the sorts of environments for which the prob- lem is significant. Implications Why the problem is viewed as a problem. Relevant RFCs The RFCs defining the TCP specification with which the problem conflicts. These RFCs often qualify behavior using terms such as MUST, SHOULD, MAY, and others written capitalized. See RFC 2119 for the exact interpretation of these terms. Trace file demonstrating the problem One or more ASCII trace files demonstrating the problem, if applicable. Trace file demonstrating correct behavior One or more examples of how correct behavior appears in a trace, if applicable. References References that further discuss the problem. How to detect How to test an implementation to see if it exhibits the problem. This discussion may include difficulties and subtleties Lahey PUTFFHERE[Page 2] Internet Draft TCP Problems with Path MTU Discovery December 1998 associated with causing the problem to manifest itself, and with interpreting traces to detect the presence of the problem (if applicable). How to fix For known causes of the problem, how to correct the implementa- tion. 3. Known implementation problems 3.1. Name of Problem Black Hole Detection Classification Reliability Description Path MTU Discovery works by sending out as large a packet as possi- ble, with the Don't Fragment (DF) bit set in the IP header. If the packet is too large for a router to forward on to a particular link, the router must send an ICMP Destination Unreachable -- Frag- mentation Needed message to the source address. As was pointed out in [RFC1435], routers don't always do this correctly -- many routers fail to send the ICMP messages, for a variety of reasons ranging from kernel bugs to configuration prob- lems. PMTUD, as documented in [RFC1191], fails when confronted with this problem. The upper-layer protocol continues to try to send large packets and, without the ICMP messages, never discovers that it needs to reduce the size of those packets. Its packets are disap- pearing into a PMTUD black hole. Significance PMTUD fails spectacularly (or, more to the point, silently) when confronted with the lack of ICMP messages. Lahey PUTFFHERE[Page 3] Internet Draft TCP Problems with Path MTU Discovery December 1998 Implications This failure is especially difficult to debug, as pings and some interactive TCP connections to the destination host work. Bulk transfers fail with the first large packet and the connection even- tually times out. While these situations can almost always be blamed on a misconfi- guration, they appear to be frequent enough to require some sort of workaround from the host side. Relevant RFCs RFC1191 describes Path MTU Discovery. RFC 1435 provides an early description of these sorts of problems. Trace file demonstrating the problem Made using tcpdump [Jacobson89] recording at an intermediate host. 20:12:11.951321 A > B: S 1748427200:1748427200(0) win 49152 20:12:11.951829 B > A: S 1001927984:1001927984(0) ack 1748427201 win 16384 20:12:11.955230 A > B: . ack 1 win 49152 (DF) 20:12:11.959099 A > B: . 1:1461(1460) ack 1 win 49152 (DF) 20:12:13.139074 A > B: . 1:1461(1460) ack 1 win 49152 (DF) 20:12:16.188685 A > B: . 1:1461(1460) ack 1 win 49152 (DF) 20:12:22.290483 A > B: . 1:1461(1460) ack 1 win 49152 (DF) 20:12:34.491856 A > B: . 1:1461(1460) ack 1 win 49152 (DF) 20:12:58.896405 A > B: . 1:1461(1460) ack 1 win 49152 (DF) 20:13:47.703184 A > B: . 1:1461(1460) ack 1 win 49152 (DF) 20:14:52.780640 A > B: . 1:1461(1460) ack 1 win 49152 (DF) 20:15:57.856037 A > B: . 1:1461(1460) ack 1 win 49152 (DF) 20:17:02.932431 A > B: . 1:1461(1460) ack 1 win 49152 (DF) 20:18:08.009337 A > B: . 1:1461(1460) ack 1 win 49152 (DF) 20:19:13.090521 A > B: . 1:1461(1460) ack 1 win 49152 (DF) 20:20:18.168066 A > B: . 1:1461(1460) ack 1 win 49152 (DF) 20:21:23.242761 A > B: R 1461:1461(0) ack 1 win 49152 (DF) The short SYN packet has no trouble traversing the network, due to its small size. Similarly, ICMP echo packets used to diagnose con- nectivity problems will succeed. Large data packets fail to traverse the network. Eventually the connection times out. This can be especially confusing when the application starts out with a very small write, which succeeds, following up with many large writes, which then fail. Lahey PUTFFHERE[Page 4] Internet Draft TCP Problems with Path MTU Discovery December 1998 Trace file demonstrating correct behavior Made using tcpdump recording at an intermediate host. 16:48:42.659115 A > B: S 271394446:271394446(0) win 8192 (DF) 16:48:42.672279 B > A: S 2837734676:2837734676(0) ack 271394447 win 16384 16:48:42.676890 A > B: . ack 1 win 8760 (DF) 16:48:42.870574 A > B: . 1:1461(1460) ack 1 win 8760 (DF) 16:48:42.871799 A > B: . 1461:2921(1460) ack 1 win 8760 (DF) 16:48:45.786814 A > B: . 1:1461(1460) ack 1 win 8760 (DF) 16:48:51.794676 A > B: . 1:1461(1460) ack 1 win 8760 (DF) 16:49:03.808912 A > B: . 1:537(536) ack 1 win 8760 16:49:04.016476 B > A: . ack 537 win 16384 16:49:04.021245 A > B: . 537:1073(536) ack 1 win 8760 16:49:04.021697 A > B: . 1073:1609(536) ack 1 win 8760 16:49:04.120694 B > A: . ack 1609 win 16384 16:49:04.126142 A > B: . 1609:2145(536) ack 1 win 8760 In this case, the sender sees four packets fail to traverse the network (using a two-packet initial send window) and turns off PMTUD. All subsequent packets have the DF flag turned off, and the size set to the default value of 536 [RFC1122]. References This problem has been discussed extensively on the tcp-impl mailing list; the name "black hole" has been in use for many years. How to detect This shows up only as a failure to complete a TCP connection. A series of ICMP echo packets will show that the connection is still passing packets, a series of MTU-sized ICMP echo packets will show some fragmentation, and a series of MTU-sized ICMP echo packets with DF set will fail. This can be confusing for network engineers trying to diagnose the problem. How to fix TCP should notice that the connection is timing out. After several timeouts, TCP should attempt to send smaller packets, perhaps turn- ing off the DF flag for each packet. If this succeeds, it should continue to turn off PMTUD for the connection for some reasonable period of time, after which it should probe again to try to deter- mine if the path has changed. Lahey PUTFFHERE[Page 5] Internet Draft TCP Problems with Path MTU Discovery December 1998 Note that, under IPv6, there is no DF bit -- it is implicitly on at all times. Fragmentation is not allowed in routers, only at the originating host. Fortunately, the minimum supported MTU for IPv6 is 1280 octets, which is significantly larger than the 68 octet minimum in IPv4. This should make it more reasonable for IPv6 TCP implementations to fall back to 1280 octet packets, when IPv4 implementations will probably have to turn off DF to respond to black hole detection. While, ideally, the ICMP black holes should be fixed when they are found, the large number of these requires some more aggressive response on the part of host implementations. Any system that uses Path MTU Discovery should also support some form of black hole detection. 3.2. Name of Problem Stretch ACK due to PMTUD Classification Congestion Control / Performance Description When a naively implemented TCP stack communicates with a PMTUD- equipped stack, it will try to generate an ACK for every second full-sized segment. If it determines the full-sized segment based on the advertised MSS, this can degrade badly in the face of PMTUD. The PMTU can wind up being a small fraction of the advertised MSS; in this case, an ACK would be generated only very infrequently. Significance Stretch ACKs have a variety of unfortunate effects, more fully out- lined in [Paxson98]. Most of these have to do with encouraging a more bursty connection, due to the infrequent arrival of ACKs. They can also impede congestion window growth. Implications The complete implications of stretch ACKs are outlined in Lahey PUTFFHERE[Page 6] Internet Draft TCP Problems with Path MTU Discovery December 1998 [Paxson98]. Relevant RFCs RFC 1122 outlines the requirements for frequency of ACK generation. [RFC2001-bis] expands on this and clarifies that delayed ACK is a SHOULD, not a MUST. Trace file demonstrating it Made using tcpdump recording at an intermediate host. The times- tamp options from all but the first two packets have been removed for clarity. 21:01:09.877349 A > B: S 436208717:436208717(0) win 16384 (DF) 21:01:09.882427 B > A: S 1367238400:1367238400(0) ack 436208718 win 49152 (DF) 21:01:09.882879 A > B: . ack 1 win 16384 (DF) 21:01:09.884121 A > B: . 1:525(524) ack 1 win 16384 (DF) 21:01:10.012907 B > A: . ack 525 win 49152 (DF) 21:01:10.013380 A > B: . 525:1049(524) ack 1 win 16384 (DF) 21:01:10.013428 A > B: . 1049:1573(524) ack 1 win 16384 (DF) 21:01:10.214801 B > A: . ack 1573 win 49152 (DF) 21:01:10.215311 A > B: . 1573:2097(524) ack 1 win 16384 (DF) 21:01:10.215360 A > B: . 2097:2621(524) ack 1 win 16384 (DF) 21:01:10.215410 A > B: . 2621:3145(524) ack 1 win 16384 (DF) 21:01:10.420001 B > A: . ack 3145 win 49152 (DF) 21:01:10.420589 A > B: . 3145:3669(524) ack 1 win 16384 (DF) 21:01:10.420642 A > B: . 3669:4193(524) ack 1 win 16384 (DF) 21:01:10.420690 A > B: . 4193:4717(524) ack 1 win 16384 (DF) 21:01:10.420740 A > B: . 4717:5241(524) ack 1 win 16384 (DF) 21:01:10.622541 B > A: . ack 5241 win 49152 (DF) 21:01:10.623086 A > B: . 5241:5765(524) ack 1 win 16384 (DF) 21:01:10.623181 A > B: . 5765:6289(524) ack 1 win 16384 (DF) 21:01:10.623272 A > B: . 6289:6813(524) ack 1 win 16384 (DF) 21:01:10.623330 A > B: . 6813:7337(524) ack 1 win 16384 (DF) 21:01:10.623386 A > B: . 7337:7861(524) ack 1 win 16384 (DF) 21:01:10.825555 B > A: . ack 7861 win 49152 (DF) 21:01:10.826167 A > B: . 7861:8385(524) ack 1 win 16384 (DF) 21:01:10.826218 A > B: . 8385:8909(524) ack 1 win 16384 (DF) 21:01:10.826268 A > B: . 8909:9433(524) ack 1 win 16384 (DF) 21:01:10.826321 A > B: . 9433:9957(524) ack 1 win 16384 (DF) 21:01:10.826370 A > B: . 9957:10481(524) ack 1 win 16384 (DF) 21:01:10.826442 A > B: . 10481:11005(524) ack 1 win 16384 (DF) Lahey PUTFFHERE[Page 7] Internet Draft TCP Problems with Path MTU Discovery December 1998 21:01:10.839214 B > A: . ack 11005 win 49152 (DF) 21:01:10.839800 A > B: . 11005:11529(524) ack 1 win 16384 (DF) 21:01:10.839878 A > B: . 11529:12053(524) ack 1 win 16384 (DF) 21:01:10.839966 A > B: . 12053:12577(524) ack 1 win 16384 (DF) 21:01:10.840062 A > B: . 12577:13101(524) ack 1 win 16384 (DF) 21:01:10.840110 A > B: . 13101:13625(524) ack 1 win 16384 (DF) 21:01:10.840159 A > B: . 13625:14149(524) ack 1 win 16384 (DF) 21:01:10.840208 A > B: . 14149:14673(524) ack 1 win 16384 (DF) 21:01:10.852496 B > A: . ack 14149 win 49152 (DF) 21:01:10.853082 A > B: . 14673:15197(524) ack 1 win 16384 (DF) 21:01:10.853158 A > B: . 15197:15721(524) ack 1 win 16384 (DF) 21:01:10.853206 A > B: . 15721:16245(524) ack 1 win 16384 (DF) 21:01:10.853299 A > B: . 16245:16769(524) ack 1 win 16384 (DF) 21:01:10.853380 A > B: . 16769:17293(524) ack 1 win 16384 (DF) 21:01:10.853449 A > B: . 17293:17817(524) ack 1 win 16384 (DF) 21:01:10.853499 A > B: . 17817:18341(524) ack 1 win 16384 (DF) 21:01:11.028546 B > A: . ack 18341 win 49152 (DF) 21:01:12.258326 A > B: . ack 2 win 16384 (DF) Note that the interval between ACKs is significantly larger than two times the segment size -- it is even larger than two times the MSS, 1460. [Editor -- Will find a better trace file for this that displays exactly 2 * MSS.] Trace file demonstrating correct behavior Made using tcpdump recording at an intermediate host. The times- tamp options from all but the first two packets have been removed for clarity. 21:02:47.038874 A > B: S 538351768:538351768(0) win 16384 (DF) 21:02:47.086595 B > A: S 37992677:37992677(0) ack 538351769 win 8760 (DF) 21:02:47.087025 A > B: . ack 1 win 16384 (DF) 21:02:47.088294 A > B: . 1:537(536) ack 1 win 16384 (DF) 21:02:47.138623 B > A: . ack 537 win 8760 (DF) 21:02:47.139080 A > B: . 537:1073(536) ack 1 win 16384 (DF) 21:02:47.139129 A > B: . 1073:1609(536) ack 1 win 16384 (DF) 21:02:47.143913 B > A: . ack 1609 win 8760 (DF) 21:02:47.144406 A > B: . 1609:2145(536) ack 1 win 16384 (DF) 21:02:47.144453 A > B: . 2145:2681(536) ack 1 win 16384 (DF) 21:02:47.144503 A > B: . 2681:3217(536) ack 1 win 16384 (DF) 21:02:47.150155 B > A: . ack 2681 win 8760 (DF) 21:02:47.150644 A > B: . 3217:3753(536) ack 1 win 16384 (DF) 21:02:47.150730 A > B: . 3753:4289(536) ack 1 win 16384 (DF) 21:02:47.150788 A > B: . 4289:4825(536) ack 1 win 16384 (DF) Lahey PUTFFHERE[Page 8] Internet Draft TCP Problems with Path MTU Discovery December 1998 21:02:47.154880 B > A: . ack 3753 win 8760 (DF) 21:02:47.155353 A > B: . 4825:5361(536) ack 1 win 16384 (DF) 21:02:47.155404 A > B: . 5361:5897(536) ack 1 win 16384 (DF) 21:02:47.155452 A > B: . 5897:6433(536) ack 1 win 16384 (DF) 21:02:47.157030 B > A: . ack 4825 win 8760 (DF) 21:02:47.157500 A > B: . 6433:6969(536) ack 1 win 16384 (DF) 21:02:47.157549 A > B: . 6969:7505(536) ack 1 win 16384 (DF) 21:02:47.157597 A > B: . 7505:8041(536) ack 1 win 16384 (DF) 21:02:47.161042 B > A: . ack 5897 win 8760 (DF) 21:02:47.161538 A > B: . 8041:8577(536) ack 1 win 16384 (DF) 21:02:47.161591 A > B: . 8577:9113(536) ack 1 win 16384 (DF) 21:02:47.161639 A > B: . 9113:9649(536) ack 1 win 16384 (DF) 21:02:47.161876 B > A: . ack 6969 win 8760 (DF) 21:02:47.162346 A > B: . 9649:10185(536) ack 1 win 16384 (DF) 21:02:47.162439 A > B: . 10185:10721(536) ack 1 win 16384 (DF) 21:02:47.162492 A > B: . 10721:11257(536) ack 1 win 16384 (DF) 21:02:47.163677 B > A: . ack 8041 win 8760 (DF) 21:02:47.164150 A > B: . 11257:11793(536) ack 1 win 16384 (DF) 21:02:47.164241 A > B: . 11793:12329(536) ack 1 win 16384 (DF) 21:02:47.164297 A > B: . 12329:12865(536) ack 1 win 16384 (DF) 21:02:47.167331 B > A: . ack 9113 win 8760 (DF) 21:02:47.167808 A > B: . 12865:13401(536) ack 1 win 16384 (DF) 21:02:47.167859 A > B: . 13401:13937(536) ack 1 win 16384 (DF) 21:02:47.167907 A > B: . 13937:14473(536) ack 1 win 16384 (DF) 21:02:47.169389 B > A: . ack 10185 win 8760 (DF) 21:02:47.169852 A > B: . 14473:15009(536) ack 1 win 16384 (DF) 21:02:47.169983 A > B: . 15009:15545(536) ack 1 win 16384 (DF) 21:02:47.170033 A > B: . 15545:16081(536) ack 1 win 16384 (DF) 21:02:47.170188 B > A: . ack 11257 win 8760 (DF) 21:02:47.170661 A > B: . 16081:16617(536) ack 1 win 16384 (DF) 21:02:47.170711 A > B: . 16617:17153(536) ack 1 win 16384 (DF) 21:02:47.170762 A > B: . 17153:17689(536) ack 1 win 16384 (DF) 21:02:47.171707 B > A: . ack 12329 win 8760 (DF) 21:02:47.172168 A > B: . 17689:18225(536) ack 1 win 16384 (DF) 21:02:47.172297 A > B: . 18225:18761(536) ack 1 win 16384 (DF) 21:02:47.172385 A > B: . 18761:19297(536) ack 1 win 16384 (DF) 21:02:47.174261 B > A: . ack 13401 win 8760 (DF) 21:02:47.174398 B > A: . ack 14473 win 8760 (DF) 21:02:47.174728 A > B: . 19297:19833(536) ack 1 win 16384 (DF) 21:02:47.174777 A > B: . 19833:20369(536) ack 1 win 16384 (DF) 21:02:47.174826 A > B: . 20369:20905(536) ack 1 win 16384 (DF) 21:02:47.175085 A > B: . 20905:21441(536) ack 1 win 16384 (DF) 21:02:47.175182 A > B: . 21441:21977(536) ack 1 win 16384 (DF) 21:02:47.175231 A > B: . 21977:22513(536) ack 1 win 16384 (DF) 21:02:47.179999 B > A: . ack 15545 win 8760 (DF) 21:02:47.180143 B > A: . ack 16617 win 8760 (DF) 21:02:47.180151 B > A: . ack 17689 win 8760 (DF) 21:02:47.180322 B > A: . ack 18761 win 8760 (DF) Lahey PUTFFHERE[Page 9] Internet Draft TCP Problems with Path MTU Discovery December 1998 21:02:48.716195 A > B: . ack 2 win 16384 (DF) In this trace, an ACK is generated for every two segments that arrive. (The segment size is slightly larger in this trace, even though the source hosts are the same, because of the lack of times- tamp options in this trace.) How to detect A tcpdump packet trace of a connection using PMTUD should make this problem obvious. How to fix Several solutions for this problem have been proposed: A simple solution is to ACK every other packet, regardless of size. This has the drawback of generating large numbers of ACKs in the face of lots of very small packets; this shows up with applica- tions like the X Window System. A slightly more complex solution would monitor the size of incoming segments and try to determine what segment size the sender is using. This requires slightly more state in the receiver. 3.3. Name of Problem Determining MSS from PMTU Classification Performance Description The MSS advertised at the start of a connection should be based on the MTU of the interfaces on the system. Some systems use PMTUD determined values to determine the MSS to advertise. This results in an advertised MSS that is smaller than the largest MTU the system can receive. Lahey PUTFFHERE[Page 10] Internet Draft TCP Problems with Path MTU Discovery December 1998 Significance The advertised MSS is an indication to the remote system about the largest TCP segment that can be received [RFC879]. If this value is too small, the remote system will be forced to use a smaller segment size when sending, purely because the local system found a particular PMTU earlier. Given the asymmetric nature of many routes on the Internet [Pax- son97], it seems entirely possible that the return PMTU is dif- ferent from the sending PMTU. Limiting the segment size in this way can reduce performance and frustrate the PMTUD algorithm. Even if the route was symmetric, setting this artificially lowered limit on segment size will make it impossible to probe later to determine if the PMTU has changed. Implications The whole point of PMTUD is to send as large a segment as possible. If long-running connections cannot successfully probe for larger PMTU, then potential performance gains will be impossible to real- ize. This destroys the whole point of PMTUD. Relevant RFCs RFC 1191. [RFC897] provides a complete discussion of MSS calcula- tions and appropriate values. Note that this practice does not violate any of the specifications in these RFCs. Trace file demonstrating it This trace was made using tcpdump running on an intermediate host. Host A initiates two separate consecutive connections, A1 and A2, to host B. Router C is the location of the MTU bottleneck. As usual, TCP options are removed from all non-SYN packets. 22:33:32.305912 A1 > B: S 1523306220:1523306220(0) win 8760 (DF) 22:33:32.306518 B > A1: S 729966260:729966260(0) ack 1523306221 win 16384 22:33:32.310307 A1 > B: . ack 1 win 8760 (DF) 22:33:32.323496 A1 > B: P 1:1461(1460) ack 1 win 8760 (DF) 22:33:32.323569 C > A1: icmp: 129.99.238.5 unreachable - need to frag (mtu 1024) (DF) (ttl 255, id 20666) 22:33:32.783694 A1 > B: . 1:985(984) ack 1 win 8856 (DF) 22:33:32.840817 B > A1: . ack 985 win 16384 22:33:32.845651 A1 > B: . 1461:2445(984) ack 1 win 8856 (DF) 22:33:32.846094 B > A1: . ack 985 win 16384 Lahey PUTFFHERE[Page 11] Internet Draft TCP Problems with Path MTU Discovery December 1998 22:33:33.724392 A1 > B: . 985:1969(984) ack 1 win 8856 (DF) 22:33:33.724893 B > A1: . ack 2445 win 14924 22:33:33.728591 A1 > B: . 2445:2921(476) ack 1 win 8856 (DF) 22:33:33.729161 A1 > B: . ack 1 win 8856 (DF) 22:33:33.840758 B > A1: . ack 2921 win 16384 [...] 22:33:34.238659 A1 > B: F 7301:8193(892) ack 1 win 8856 (DF) 22:33:34.239036 B > A1: . ack 8194 win 15492 22:33:34.239303 B > A1: F 1:1(0) ack 8194 win 16384 22:33:34.242971 A1 > B: . ack 2 win 8856 (DF) 22:33:34.454218 A2 > B: S 1523591299:1523591299(0) win 8856 (DF) 22:33:34.454617 B > A2: S 732408874:732408874(0) ack 1523591300 win 16384 22:33:34.457516 A2 > B: . ack 1 win 8856 (DF) 22:33:34.470683 A2 > B: P 1:985(984) ack 1 win 8856 (DF) 22:33:34.471144 B > A2: . ack 985 win 16384 22:33:34.476554 A2 > B: . 985:1969(984) ack 1 win 8856 (DF) 22:33:34.477580 A2 > B: P 1969:2953(984) ack 1 win 8856 (DF) [...] Notice that the SYN packet for session A2 specifies an MSS of 984. Trace file demonstrating correct behavior As before, this trace was made using tcpdump running on an inter- mediate host. Host A initiates two separate consecutive connec- tions, A1 and A2, to host B. Router C is the location of the MTU bottleneck. As usual, TCP options are removed from all non-SYN packets. 22:36:58.828602 A1 > B: S 3402991286:3402991286(0) win 32768 (DF) 22:36:58.844040 B > A1: S 946999880:946999880(0) ack 3402991287 win 16384 22:36:58.848058 A1 > B: . ack 1 win 32768 (DF) 22:36:58.851514 A1 > B: P 1:1025(1024) ack 1 win 32768 (DF) 22:36:58.851584 C > A1: icmp: 129.99.238.5 unreachable - need to frag (mtu 1024) (DF) 22:36:58.855885 A1 > B: . 1:969(968) ack 1 win 32768 (DF) 22:36:58.856378 A1 > B: . 969:985(16) ack 1 win 32768 (DF) Lahey PUTFFHERE[Page 12] Internet Draft TCP Problems with Path MTU Discovery December 1998 22:36:59.036309 B > A1: . ack 985 win 16384 22:36:59.039255 A1 > B: FP 985:1025(40) ack 1 win 32768 (DF) 22:36:59.039623 B > A1: . ack 1026 win 16344 22:36:59.039828 B > A1: F 1:1(0) ack 1026 win 16384 22:36:59.043037 A1 > B: . ack 2 win 32768 (DF) 22:37:01.436032 A2 > B: S 3404812097:3404812097(0) win 32768 (DF) 22:37:01.436424 B > A2: S 949814769:949814769(0) ack 3404812098 win 16384 22:37:01.440147 A2 > B: . ack 1 win 32768 (DF) 22:37:01.442736 A2 > B: . 1:969(968) ack 1 win 32768 (DF) 22:37:01.442894 A2 > B: P 969:985(16) ack 1 win 32768 (DF) 22:37:01.443283 B > A2: . ack 985 win 16384 22:37:01.446068 A2 > B: P 985:1025(40) ack 1 win 32768 (DF) 22:37:01.446519 B > A2: . ack 1025 win 16384 22:37:01.448465 A2 > B: F 1025:1025(0) ack 1 win 32768 (DF) 22:37:01.448837 B > A2: . ack 1026 win 16384 22:37:01.449007 B > A2: F 1:1(0) ack 1026 win 16384 22:37:01.452201 A2 > B: . ack 2 win 32768 (DF) Note that the same MSS was used for both session A1 and session A2. How to detect This can be detected using a packet trace of two separate connec- tions; the first should invoke PMTUD; the second should start soon enough after the first that the PMTU value does not time out. How to fix The MSS should be determined based on the MTUs of the interfaces on the system, as outlined in [RFC1122] and [RFC1191]. 4. Security Considerations This memo does not discuss any specific security-related TCP imple- mentation problems, except that ICMP black holes are often caused by over-zealous security administrators who block all ICMP messages. It would be far nicer to have all of the black holes fixed rather than fixing all of the TCP implementations. Lahey PUTFFHERE[Page 13] Internet Draft TCP Problems with Path MTU Discovery December 1998 5. Acknowledgements Thanks to Mark Allman and Vern Paxon for generous help reviewing the document, and to Matt Mathis for early suggestions of various mechan- isms that can cause PMTUD black holes. The structure for describing TCP problems, and the early description of that structure is from [Paxson98]. 6. References [RFC2001-bis] M. Allman, V. Paxson, and W. Stevens, "TCP Congestion Control", draft-ietf-tcpimpl-cong-control-03.txt, December 1998. [RFC1122] R. Braden, Editor, "Requirements for Internet Hosts -- Communica- tion Layers," Oct. 1989. [Jacobson89] V. Jacobson, C. Leres, and S. McCanne, tcpdump, available via anonymous ftp to ftp.ee.lbl.gov, Jun. 1989. [RFC1435] S. Knowles, "IESG Advice from Experience with Path MTU Discovery," March 1993. [RFC1191] J. Mogul and S. Deering, "Path MTU discovery," Nov. 1990. [Paxson96] V. Paxson, "End-to-End Routing Behavior in the Internet," IEEE/ACM Transactions on Networking (5), pp.~601-615, Oct. 1997. [Paxson98] V. Paxon, Editor, M. Allman, S. Dawson, W. Fenner, J. Griner, I. Heavens, K. Lahey, J. Semke, and B. Volz, "Known TCP Implementation Problems", draft-ietf-tcpimpl-prob-05.txt, November 1998. [RFC879] J. Postel, "The TCP Maximum Segment Size and Related Topics," November, 1983. [RFC2001] W. Stevens, "TCP Slow Start, Congestion Avoidance, Fast Retransmit, and Fast Recovery Algorithms," Jan. 1997. Lahey PUTFFHERE[Page 14] Internet Draft TCP Problems with Path MTU Discovery December 1998 7. Author's Address Kevin Lahey NASA Ames Research Center/MRJ MS 258-6 Moffett Field, CA 94035 USA Phone: +1 650/604-4334 This draft was created in January 1999. It expires in June 1998. Lahey PUTFFHERE[Page 15]