1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661
|
<!DOCTYPE html>
<html lang="en" class="RFC">
<head>
<meta charset="utf-8">
<meta content="Common,Latin" name="scripts">
<meta content="initial-scale=1.0" name="viewport">
<title>RFC 8899: Packetization Layer Path MTU Discovery for Datagram Transports</title>
<meta content="Godred Fairhurst" name="author">
<meta content="Tom Jones" name="author">
<meta content="Michael Tüxen" name="author">
<meta content="Irene Rüngeler" name="author">
<meta content="Timo Völker" name="author">
<meta content="
This document specifies Datagram Packetization Layer Path MTU Discovery
(DPLPMTUD). This is a robust method for Path MTU Discovery
(PMTUD) for datagram Packetization Layers (PLs).
It allows a PL, or a datagram
application that uses a PL, to discover whether a network path can
support the current size of datagram. This can be used to detect and
reduce the message size when a sender encounters a packet black hole.
It can also probe a network path to discover whether the maximum
packet size can be increased. This provides functionality for datagram
transports that is equivalent to the PLPMTUD
specification for TCP, specified in RFC 4821, which it updates.
It also updates the UDP Usage Guidelines to refer to this method
for use with UDP datagrams and updates SCTP.
The document provides implementation notes for incorporating
Datagram PMTUD into IETF datagram transports or applications that use
datagram transports.
This specification updates RFC 4960, RFC 4821, RFC 6951, RFC 8085, and RFC
8261.
" name="description">
<meta content="xml2rfc 3.0.0" name="generator">
<meta content="UDP" name="keyword">
<meta content="SCTP" name="keyword">
<meta content="Transport" name="keyword">
<meta content="PMTUD" name="keyword">
<meta content="PLPMTUD" name="keyword">
<meta content="8899" name="rfc.number">
<link href="rfc8899.xml" rel="alternate" type="application/rfc+xml">
<link href="#copyright" rel="license">
<style type="text/css">/*
NOTE: Changes at the bottom of this file overrides some earlier settings.
Once the style has stabilized and has been adopted as an official RFC style,
this can be consolidated so that style settings occur only in one place, but
for now the contents of this file consists first of the initial CSS work as
provided to the RFC Formatter (xml2rfc) work, followed by itemized and
commented changes found necssary during the development of the v3
formatters.
*/
/* fonts */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans'); /* Sans-serif */
@import url('https://fonts.googleapis.com/css?family=Noto+Serif'); /* Serif (print) */
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono'); /* Monospace */
@viewport {
zoom: 1.0;
width: extend-to-zoom;
}
@-ms-viewport {
width: extend-to-zoom;
zoom: 1.0;
}
/* general and mobile first */
html {
}
body {
max-width: 90%;
margin: 1.5em auto;
color: #222;
background-color: #fff;
font-size: 14px;
font-family: 'Noto Sans', Arial, Helvetica, sans-serif;
line-height: 1.6;
scroll-behavior: smooth;
}
.ears {
display: none;
}
/* headings */
#title, h1, h2, h3, h4, h5, h6 {
margin: 1em 0 0.5em;
font-weight: bold;
line-height: 1.3;
}
#title {
clear: both;
border-bottom: 1px solid #ddd;
margin: 0 0 0.5em 0;
padding: 1em 0 0.5em;
}
.author {
padding-bottom: 4px;
}
h1 {
font-size: 26px;
margin: 1em 0;
}
h2 {
font-size: 22px;
margin-top: -20px; /* provide offset for in-page anchors */
padding-top: 33px;
}
h3 {
font-size: 18px;
margin-top: -36px; /* provide offset for in-page anchors */
padding-top: 42px;
}
h4 {
font-size: 16px;
margin-top: -36px; /* provide offset for in-page anchors */
padding-top: 42px;
}
h5, h6 {
font-size: 14px;
}
#n-copyright-notice {
border-bottom: 1px solid #ddd;
padding-bottom: 1em;
margin-bottom: 1em;
}
/* general structure */
p {
padding: 0;
margin: 0 0 1em 0;
text-align: left;
}
div, span {
position: relative;
}
div {
margin: 0;
}
.alignRight.art-text {
background-color: #f9f9f9;
border: 1px solid #eee;
border-radius: 3px;
padding: 1em 1em 0;
margin-bottom: 1.5em;
}
.alignRight.art-text pre {
padding: 0;
}
.alignRight {
margin: 1em 0;
}
.alignRight > *:first-child {
border: none;
margin: 0;
float: right;
clear: both;
}
.alignRight > *:nth-child(2) {
clear: both;
display: block;
border: none;
}
svg {
display: block;
}
.alignCenter.art-text {
background-color: #f9f9f9;
border: 1px solid #eee;
border-radius: 3px;
padding: 1em 1em 0;
margin-bottom: 1.5em;
}
.alignCenter.art-text pre {
padding: 0;
}
.alignCenter {
margin: 1em 0;
}
.alignCenter > *:first-child {
border: none;
/* this isn't optimal, but it's an existence proof. PrinceXML doesn't
support flexbox yet.
*/
display: table;
margin: 0 auto;
}
/* lists */
ol, ul {
padding: 0;
margin: 0 0 1em 2em;
}
ol ol, ul ul, ol ul, ul ol {
margin-left: 1em;
}
li {
margin: 0 0 0.25em 0;
}
.ulCompact li {
margin: 0;
}
ul.empty, .ulEmpty {
list-style-type: none;
}
ul.empty li, .ulEmpty li {
margin-top: 0.5em;
}
ul.compact, .ulCompact,
ol.compact, .olCompact {
line-height: 100%;
margin: 0 0 0 2em;
}
/* definition lists */
dl {
}
dl > dt {
float: left;
margin-right: 1em;
}
/*
dl.nohang > dt {
float: none;
}
*/
dl > dd {
margin-bottom: .8em;
min-height: 1.3em;
}
dl.compact > dd, .dlCompact > dd {
margin-bottom: 0em;
}
dl > dd > dl {
margin-top: 0.5em;
margin-bottom: 0em;
}
/* links */
a {
text-decoration: none;
}
a[href] {
color: #22e; /* Arlen: WCAG 2019 */
}
a[href]:hover {
background-color: #f2f2f2;
}
figcaption a[href],
a[href].selfRef {
color: #222;
}
/* XXX probably not this:
a.selfRef:hover {
background-color: transparent;
cursor: default;
} */
/* Figures */
tt, code, pre, code {
background-color: #f9f9f9;
font-family: 'Roboto Mono', monospace;
}
pre {
border: 1px solid #eee;
margin: 0;
padding: 1em;
}
img {
max-width: 100%;
}
figure {
margin: 0;
}
figure blockquote {
margin: 0.8em 0.4em 0.4em;
}
figcaption {
font-style: italic;
margin: 0 0 1em 0;
}
@media screen {
pre {
overflow-x: auto;
max-width: 100%;
max-width: calc(100% - 22px);
}
}
/* aside, blockquote */
aside, blockquote {
margin-left: 0;
padding: 1.2em 2em;
}
blockquote {
background-color: #f9f9f9;
color: #111; /* Arlen: WCAG 2019 */
border: 1px solid #ddd;
border-radius: 3px;
margin: 1em 0;
}
cite {
display: block;
text-align: right;
font-style: italic;
}
/* tables */
table {
width: 100%;
margin: 0 0 1em;
border-collapse: collapse;
border: 1px solid #eee;
}
th, td {
text-align: left;
vertical-align: top;
padding: 0.5em 0.75em;
}
th {
text-align: left;
background-color: #e9e9e9;
}
tr:nth-child(2n+1) > td {
background-color: #f5f5f5;
}
table caption {
font-style: italic;
margin: 0;
padding: 0;
text-align: left;
}
table p {
/* XXX to avoid bottom margin on table row signifiers. If paragraphs should
be allowed within tables more generally, it would be far better to select on a class. */
margin: 0;
}
/* pilcrow */
a.pilcrow {
color: #666; /* Arlen: AHDJ 2019 */
text-decoration: none;
visibility: hidden;
user-select: none;
-ms-user-select: none;
-o-user-select:none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-webkit-touch-callout: none;
}
@media screen {
aside:hover > a.pilcrow,
p:hover > a.pilcrow,
blockquote:hover > a.pilcrow,
div:hover > a.pilcrow,
li:hover > a.pilcrow,
pre:hover > a.pilcrow {
visibility: visible;
}
a.pilcrow:hover {
background-color: transparent;
}
}
/* misc */
hr {
border: 0;
border-top: 1px solid #eee;
}
.bcp14 {
font-variant: small-caps;
}
.role {
font-variant: all-small-caps;
}
/* info block */
#identifiers {
margin: 0;
font-size: 0.9em;
}
#identifiers dt {
width: 3em;
clear: left;
}
#identifiers dd {
float: left;
margin-bottom: 0;
}
#identifiers .authors .author {
display: inline-block;
margin-right: 1.5em;
}
#identifiers .authors .org {
font-style: italic;
}
/* The prepared/rendered info at the very bottom of the page */
.docInfo {
color: #666; /* Arlen: WCAG 2019 */
font-size: 0.9em;
font-style: italic;
margin-top: 2em;
}
.docInfo .prepared {
float: left;
}
.docInfo .prepared {
float: right;
}
/* table of contents */
#toc {
padding: 0.75em 0 2em 0;
margin-bottom: 1em;
}
nav.toc ul {
margin: 0 0.5em 0 0;
padding: 0;
list-style: none;
}
nav.toc li {
line-height: 1.3em;
margin: 0.75em 0;
padding-left: 1.2em;
text-indent: -1.2em;
}
/* references */
.references dt {
text-align: right;
font-weight: bold;
min-width: 7em;
}
.references dd {
margin-left: 8em;
overflow: auto;
}
.refInstance {
margin-bottom: 1.25em;
}
.references .ascii {
margin-bottom: 0.25em;
}
/* index */
.index ul {
margin: 0 0 0 1em;
padding: 0;
list-style: none;
}
.index ul ul {
margin: 0;
}
.index li {
margin: 0;
text-indent: -2em;
padding-left: 2em;
padding-bottom: 5px;
}
.indexIndex {
margin: 0.5em 0 1em;
}
.index a {
font-weight: 700;
}
/* make the index two-column on all but the smallest screens */
@media (min-width: 600px) {
.index ul {
-moz-column-count: 2;
-moz-column-gap: 20px;
}
.index ul ul {
-moz-column-count: 1;
-moz-column-gap: 0;
}
}
/* authors */
address.vcard {
font-style: normal;
margin: 1em 0;
}
address.vcard .nameRole {
font-weight: 700;
margin-left: 0;
}
address.vcard .label {
font-family: "Noto Sans",Arial,Helvetica,sans-serif;
margin: 0.5em 0;
}
address.vcard .type {
display: none;
}
.alternative-contact {
margin: 1.5em 0 1em;
}
hr.addr {
border-top: 1px dashed;
margin: 0;
color: #ddd;
max-width: calc(100% - 16px);
}
/* temporary notes */
.rfcEditorRemove::before {
position: absolute;
top: 0.2em;
right: 0.2em;
padding: 0.2em;
content: "The RFC Editor will remove this note";
color: #9e2a00; /* Arlen: WCAG 2019 */
background-color: #ffd; /* Arlen: WCAG 2019 */
}
.rfcEditorRemove {
position: relative;
padding-top: 1.8em;
background-color: #ffd; /* Arlen: WCAG 2019 */
border-radius: 3px;
}
.cref {
background-color: #ffd; /* Arlen: WCAG 2019 */
padding: 2px 4px;
}
.crefSource {
font-style: italic;
}
/* alternative layout for smaller screens */
@media screen and (max-width: 1023px) {
body {
padding-top: 2em;
}
#title {
padding: 1em 0;
}
h1 {
font-size: 24px;
}
h2 {
font-size: 20px;
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 38px;
}
#identifiers dd {
max-width: 60%;
}
#toc {
position: fixed;
z-index: 2;
top: 0;
right: 0;
padding: 0;
margin: 0;
background-color: inherit;
border-bottom: 1px solid #ccc;
}
#toc h2 {
margin: -1px 0 0 0;
padding: 4px 0 4px 6px;
padding-right: 1em;
min-width: 190px;
font-size: 1.1em;
text-align: right;
background-color: #444;
color: white;
cursor: pointer;
}
#toc h2::before { /* css hamburger */
float: right;
position: relative;
width: 1em;
height: 1px;
left: -164px;
margin: 6px 0 0 0;
background: white none repeat scroll 0 0;
box-shadow: 0 4px 0 0 white, 0 8px 0 0 white;
content: "";
}
#toc nav {
display: none;
padding: 0.5em 1em 1em;
overflow: auto;
height: calc(100vh - 48px);
border-left: 1px solid #ddd;
}
}
/* alternative layout for wide screens */
@media screen and (min-width: 1024px) {
body {
max-width: 724px;
margin: 42px auto;
padding-left: 1.5em;
padding-right: 29em;
}
#toc {
position: fixed;
top: 42px;
right: 42px;
width: 25%;
margin: 0;
padding: 0 1em;
z-index: 1;
}
#toc h2 {
border-top: none;
border-bottom: 1px solid #ddd;
font-size: 1em;
font-weight: normal;
margin: 0;
padding: 0.25em 1em 1em 0;
}
#toc nav {
display: block;
height: calc(90vh - 84px);
bottom: 0;
padding: 0.5em 0 0;
overflow: auto;
}
img { /* future proofing */
max-width: 100%;
height: auto;
}
}
/* pagination */
@media print {
body {
width: 100%;
}
p {
orphans: 3;
widows: 3;
}
#n-copyright-notice {
border-bottom: none;
}
#toc, #n-introduction {
page-break-before: always;
}
#toc {
border-top: none;
padding-top: 0;
}
figure, pre {
page-break-inside: avoid;
}
figure {
overflow: scroll;
}
h1, h2, h3, h4, h5, h6 {
page-break-after: avoid;
}
h2+*, h3+*, h4+*, h5+*, h6+* {
page-break-before: avoid;
}
pre {
white-space: pre-wrap;
word-wrap: break-word;
font-size: 10pt;
}
table {
border: 1px solid #ddd;
}
td {
border-top: 1px solid #ddd;
}
}
/* This is commented out here, as the string-set: doesn't
pass W3C validation currently */
/*
.ears thead .left {
string-set: ears-top-left content();
}
.ears thead .center {
string-set: ears-top-center content();
}
.ears thead .right {
string-set: ears-top-right content();
}
.ears tfoot .left {
string-set: ears-bottom-left content();
}
.ears tfoot .center {
string-set: ears-bottom-center content();
}
.ears tfoot .right {
string-set: ears-bottom-right content();
}
*/
@page :first {
padding-top: 0;
@top-left {
content: normal;
border: none;
}
@top-center {
content: normal;
border: none;
}
@top-right {
content: normal;
border: none;
}
}
@page {
size: A4;
margin-bottom: 45mm;
padding-top: 20px;
/* The follwing is commented out here, but set appropriately by in code, as
the content depends on the document */
/*
@top-left {
content: 'Internet-Draft';
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@top-left {
content: string(ears-top-left);
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@top-center {
content: string(ears-top-center);
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@top-right {
content: string(ears-top-right);
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@bottom-left {
content: string(ears-bottom-left);
vertical-align: top;
border-top: solid 1px #ccc;
}
@bottom-center {
content: string(ears-bottom-center);
vertical-align: top;
border-top: solid 1px #ccc;
}
@bottom-right {
content: '[Page ' counter(page) ']';
vertical-align: top;
border-top: solid 1px #ccc;
}
*/
}
/* Changes introduced to fix issues found during implementation */
/* Make sure links are clickable even if overlapped by following H* */
a {
z-index: 2;
}
/* Separate body from document info even without intervening H1 */
section {
clear: both;
}
/* Top align author divs, to avoid names without organization dropping level with org names */
.author {
vertical-align: top;
}
/* Leave room in document info to show Internet-Draft on one line */
#identifiers dt {
width: 8em;
}
/* Don't waste quite as much whitespace between label and value in doc info */
#identifiers dd {
margin-left: 1em;
}
/* Give floating toc a background color (needed when it's a div inside section */
#toc {
background-color: white;
}
/* Make the collapsed ToC header render white on gray also when it's a link */
@media screen and (max-width: 1023px) {
#toc h2 a,
#toc h2 a:link,
#toc h2 a:focus,
#toc h2 a:hover,
#toc a.toplink,
#toc a.toplink:hover {
color: white;
background-color: #444;
text-decoration: none;
}
}
/* Give the bottom of the ToC some whitespace */
@media screen and (min-width: 1024px) {
#toc {
padding: 0 0 1em 1em;
}
}
/* Style section numbers with more space between number and title */
.section-number {
padding-right: 0.5em;
}
/* prevent monospace from becoming overly large */
tt, code, pre, code {
font-size: 95%;
}
/* Fix the height/width aspect for ascii art*/
pre.sourcecode,
.art-text pre {
line-height: 1.12;
}
/* Add styling for a link in the ToC that points to the top of the document */
a.toplink {
float: right;
margin-right: 0.5em;
}
/* Fix the dl styling to match the RFC 7992 attributes */
dl > dt,
dl.dlParallel > dt {
float: left;
margin-right: 1em;
}
dl.dlNewline > dt {
float: none;
}
/* Provide styling for table cell text alignment */
table td.text-left,
table th.text-left {
text-align: left;
}
table td.text-center,
table th.text-center {
text-align: center;
}
table td.text-right,
table th.text-right {
text-align: right;
}
/* Make the alternative author contact informatio look less like just another
author, and group it closer with the primary author contact information */
.alternative-contact {
margin: 0.5em 0 0.25em 0;
}
address .non-ascii {
margin: 0 0 0 2em;
}
/* With it being possible to set tables with alignment
left, center, and right, { width: 100%; } does not make sense */
table {
width: auto;
}
/* Avoid reference text that sits in a block with very wide left margin,
because of a long floating dt label.*/
.references dd {
overflow: visible;
}
/* Control caption placement */
caption {
caption-side: bottom;
}
/* Limit the width of the author address vcard, so names in right-to-left
script don't end up on the other side of the page. */
address.vcard {
max-width: 30em;
margin-right: auto;
}
/* For address alignment dependent on LTR or RTL scripts */
address div.left {
text-align: left;
}
address div.right {
text-align: right;
}
/* Provide table alignment support. We can't use the alignX classes above
since they do unwanted things with caption and other styling. */
table.right {
margin-left: auto;
margin-right: 0;
}
table.center {
margin-left: auto;
margin-right: auto;
}
table.left {
margin-left: 0;
margin-right: auto;
}
/* Give the table caption label the same styling as the figcaption */
caption a[href] {
color: #222;
}
@media print {
.toplink {
display: none;
}
/* avoid overwriting the top border line with the ToC header */
#toc {
padding-top: 1px;
}
/* Avoid page breaks inside dl and author address entries */
.vcard {
page-break-inside: avoid;
}
}
/* Tweak the bcp14 keyword presentation */
.bcp14 {
font-variant: small-caps;
font-weight: bold;
font-size: 0.9em;
}
/* Tweak the invisible space above H* in order not to overlay links in text above */
h2 {
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 31px;
}
h3 {
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 24px;
}
h4 {
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 24px;
}
/* Float artwork pilcrow to the right */
@media screen {
.artwork a.pilcrow {
display: block;
line-height: 0.7;
margin-top: 0.15em;
}
}
/* Make pilcrows on dd visible */
@media screen {
dd:hover > a.pilcrow {
visibility: visible;
}
}
/* Make the placement of figcaption match that of a table's caption
by removing the figure's added bottom margin */
.alignLeft.art-text,
.alignCenter.art-text,
.alignRight.art-text {
margin-bottom: 0;
}
.alignLeft,
.alignCenter,
.alignRight {
margin: 1em 0 0 0;
}
/* In print, the pilcrow won't show on hover, so prevent it from taking up space,
possibly even requiring a new line */
@media print {
a.pilcrow {
display: none;
}
}
/* Styling for the external metadata */
div#external-metadata {
background-color: #eee;
padding: 0.5em;
margin-bottom: 0.5em;
display: none;
}
div#internal-metadata {
padding: 0.5em; /* to match the external-metadata padding */
}
/* Styling for title RFC Number */
h1#rfcnum {
clear: both;
margin: 0 0 -1em;
padding: 1em 0 0 0;
}
/* Make .olPercent look the same as <ol><li> */
dl.olPercent > dd {
margin-bottom: 0.25em;
min-height: initial;
}
/* Give aside some styling to set it apart */
aside {
border-left: 1px solid #ddd;
margin: 1em 0 1em 2em;
padding: 0.2em 2em;
}
aside > dl,
aside > ol,
aside > ul,
aside > table,
aside > p {
margin-bottom: 0.5em;
}
/* Additional page break settings */
@media print {
figcaption, table caption {
page-break-before: avoid;
}
}
/* Font size adjustments for print */
@media print {
body { font-size: 10pt; line-height: normal; max-width: 96%; }
h1 { font-size: 1.72em; padding-top: 1.5em; } /* 1*1.2*1.2*1.2 */
h2 { font-size: 1.44em; padding-top: 1.5em; } /* 1*1.2*1.2 */
h3 { font-size: 1.2em; padding-top: 1.5em; } /* 1*1.2 */
h4 { font-size: 1em; padding-top: 1.5em; }
h5, h6 { font-size: 1em; margin: initial; padding: 0.5em 0 0.3em; }
}
/* Sourcecode margin in print, when there's no pilcrow */
@media print {
.artwork,
.sourcecode {
margin-bottom: 1em;
}
}
/* Avoid narrow tables forcing too narrow table captions, which may render badly */
table {
min-width: 20em;
}
/* ol type a */
ol.type-a { list-style-type: lower-alpha; }
ol.type-A { list-style-type: upper-alpha; }
ol.type-i { list-style-type: lower-roman; }
ol.type-I { list-style-type: lower-roman; }
/* Apply the print table and row borders in general, on request from the RPC,
and increase the contrast between border and odd row background sligthtly */
table {
border: 1px solid #ddd;
}
td {
border-top: 1px solid #ddd;
}
tr:nth-child(2n+1) > td {
background-color: #f8f8f8;
}
/* Use style rules to govern display of the TOC. */
@media screen and (max-width: 1023px) {
#toc nav { display: none; }
#toc.active nav { display: block; }
}
/* Add support for keepWithNext */
.keepWithNext {
break-after: avoid-page;
break-after: avoid-page;
}
/* Add support for keepWithPrevious */
.keepWithPrevious {
break-before: avoid-page;
}
/* Change the approach to avoiding breaks inside artwork etc. */
figure, pre, table, .artwork, .sourcecode {
break-before: avoid-page;
break-after: auto;
}
/* Avoid breaks between <dt> and <dd> */
dl {
break-before: auto;
break-inside: auto;
}
dt {
break-before: auto;
break-after: avoid-page;
}
dd {
break-before: avoid-page;
break-after: auto;
orphans: 3;
widows: 3
}
span.break, dd.break {
margin-bottom: 0;
min-height: 0;
break-before: auto;
break-inside: auto;
break-after: auto;
}
/* Undo break-before ToC */
@media print {
#toc {
break-before: auto;
}
}
/* Text in compact lists should not get extra bottim margin space,
since that would makes the list not compact */
ul.compact p, .ulCompact p,
ol.compact p, .olCompact p {
margin: 0;
}
/* But the list as a whole needs the extra space at the end */
section ul.compact,
section .ulCompact,
section ol.compact,
section .olCompact {
margin-bottom: 1em; /* same as p not within ul.compact etc. */
}
/* The tt and code background above interferes with for instance table cell
backgrounds. Changed to something a bit more selective. */
tt, code {
background-color: transparent;
}
p tt, p code, li tt, li code {
background-color: #f8f8f8;
}
/* Tweak the pre margin -- 0px doesn't come out well */
pre {
margin-top: 0.5px;
}
/* Tweak the comact list text */
ul.compact, .ulCompact,
ol.compact, .olCompact,
dl.compact, .dlCompact {
line-height: normal;
}
/* Don't add top margin for nested lists */
li > ul, li > ol, li > dl,
dd > ul, dd > ol, dd > dl,
dl > dd > dl {
margin-top: initial;
}
/* Elements that should not be rendered on the same line as a <dt> */
/* This should match the element list in writer.text.TextWriter.render_dl() */
dd > div.artwork:first-child,
dd > aside:first-child,
dd > figure:first-child,
dd > ol:first-child,
dd > div:first-child > pre.sourcecode,
dd > table:first-child,
dd > ul:first-child {
clear: left;
}</style>
<link href="rfc-local.css" rel="stylesheet" type="text/css">
<link href="https://dx.doi.org/10.17487/rfc8899" rel="alternate">
<link href="urn:issn:2070-1721" rel="alternate">
<link href="https://datatracker.ietf.org/doc/draft-ietf-tsvwg-datagram-plpmtud-22" rel="prev">
</head>
<body>
<script src="https://www.rfc-editor.org/js/metadata.min.js"></script>
<table class="ears">
<thead><tr>
<td class="left">RFC 8899</td>
<td class="center">DPLPMTUD</td>
<td class="right">September 2020</td>
</tr></thead>
<tfoot><tr>
<td class="left">Fairhurst, et al.</td>
<td class="center">Standards Track</td>
<td class="right">[Page]</td>
</tr></tfoot>
</table>
<div id="external-metadata" class="document-information"></div>
<div id="internal-metadata" class="document-information">
<dl id="identifiers">
<dt class="label-stream">Stream:</dt>
<dd class="stream">Internet Engineering Task Force (IETF)</dd>
<dt class="label-rfc">RFC:</dt>
<dd class="rfc"><a href="https://www.rfc-editor.org/rfc/rfc8899" class="eref">8899</a></dd>
<dt class="label-updates">Updates:</dt>
<dd class="updates">
<a href="https://www.rfc-editor.org/rfc/rfc4821" class="eref">4821</a>, <a href="https://www.rfc-editor.org/rfc/rfc4960" class="eref">4960</a>, <a href="https://www.rfc-editor.org/rfc/rfc6951" class="eref">6951</a>, <a href="https://www.rfc-editor.org/rfc/rfc8085" class="eref">8085</a>, <a href="https://www.rfc-editor.org/rfc/rfc8261" class="eref">8261</a> </dd>
<dt class="label-category">Category:</dt>
<dd class="category">Standards Track</dd>
<dt class="label-published">Published:</dt>
<dd class="published">
<time datetime="2020-09" class="published">September 2020</time>
</dd>
<dt class="label-issn">ISSN:</dt>
<dd class="issn">2070-1721</dd>
<dt class="label-authors">Authors:</dt>
<dd class="authors">
<div class="author">
<div class="author-name">G. Fairhurst</div>
<div class="org">University of Aberdeen</div>
</div>
<div class="author">
<div class="author-name">T. Jones</div>
<div class="org">University of Aberdeen</div>
</div>
<div class="author">
<div class="author-name">M. Tüxen</div>
<div class="org">Münster University of Applied Sciences</div>
</div>
<div class="author">
<div class="author-name">I. Rüngeler</div>
<div class="org">Münster University of Applied Sciences</div>
</div>
<div class="author">
<div class="author-name">T. Völker</div>
<div class="org">Münster University of Applied Sciences</div>
</div>
</dd>
</dl>
</div>
<h1 id="rfcnum">RFC 8899</h1>
<h1 id="title">Packetization Layer Path MTU Discovery for Datagram Transports</h1>
<section id="section-abstract">
<h2 id="abstract"><a href="#abstract" class="selfRef">Abstract</a></h2>
<p id="section-abstract-1">
This document specifies Datagram Packetization Layer Path MTU Discovery
(DPLPMTUD). This is a robust method for Path MTU Discovery
(PMTUD) for datagram Packetization Layers (PLs).
It allows a PL, or a datagram
application that uses a PL, to discover whether a network path can
support the current size of datagram. This can be used to detect and
reduce the message size when a sender encounters a packet black hole.
It can also probe a network path to discover whether the maximum
packet size can be increased. This provides functionality for datagram
transports that is equivalent to the PLPMTUD
specification for TCP, specified in RFC 4821, which it updates.
It also updates the UDP Usage Guidelines to refer to this method
for use with UDP datagrams and updates SCTP.<a href="#section-abstract-1" class="pilcrow">¶</a></p>
<p id="section-abstract-2">
The document provides implementation notes for incorporating
Datagram PMTUD into IETF datagram transports or applications that use
datagram transports.<a href="#section-abstract-2" class="pilcrow">¶</a></p>
<p id="section-abstract-3">
This specification updates RFC 4960, RFC 4821, RFC 6951, RFC 8085, and RFC
8261.<a href="#section-abstract-3" class="pilcrow">¶</a></p>
</section>
<div id="status-of-memo">
<section id="section-boilerplate.1">
<h2 id="name-status-of-this-memo">
<a href="#name-status-of-this-memo" class="section-name selfRef">Status of This Memo</a>
</h2>
<p id="section-boilerplate.1-1">
This is an Internet Standards Track document.<a href="#section-boilerplate.1-1" class="pilcrow">¶</a></p>
<p id="section-boilerplate.1-2">
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by
the Internet Engineering Steering Group (IESG). Further
information on Internet Standards is available in Section 2 of
RFC 7841.<a href="#section-boilerplate.1-2" class="pilcrow">¶</a></p>
<p id="section-boilerplate.1-3">
Information about the current status of this document, any
errata, and how to provide feedback on it may be obtained at
<span><a href="https://www.rfc-editor.org/info/rfc8899">https://www.rfc-editor.org/info/rfc8899</a></span>.<a href="#section-boilerplate.1-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="copyright">
<section id="section-boilerplate.2">
<h2 id="name-copyright-notice">
<a href="#name-copyright-notice" class="section-name selfRef">Copyright Notice</a>
</h2>
<p id="section-boilerplate.2-1">
Copyright (c) 2020 IETF Trust and the persons identified as the
document authors. All rights reserved.<a href="#section-boilerplate.2-1" class="pilcrow">¶</a></p>
<p id="section-boilerplate.2-2">
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<span><a href="https://trustee.ietf.org/license-info">https://trustee.ietf.org/license-info</a></span>) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with
respect to this document. Code Components extracted from this
document must include Simplified BSD License text as described in
Section 4.e of the Trust Legal Provisions and are provided without
warranty as described in the Simplified BSD License.<a href="#section-boilerplate.2-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="toc">
<section id="section-toc.1">
<a href="#" onclick="scroll(0,0)" class="toplink">▲</a><h2 id="name-table-of-contents">
<a href="#name-table-of-contents" class="section-name selfRef">Table of Contents</a>
</h2>
<nav class="toc"><ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.1">
<p id="section-toc.1-1.1.1"><a href="#section-1" class="xref">1</a>. <a href="#name-introduction" class="xref">Introduction</a><a href="#section-toc.1-1.1.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.1.2.1">
<p id="section-toc.1-1.1.2.1.1" class="keepWithNext"><a href="#section-1.1" class="xref">1.1</a>. <a href="#name-classical-path-mtu-discover" class="xref">Classical Path MTU Discovery</a><a href="#section-toc.1-1.1.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.1.2.2">
<p id="section-toc.1-1.1.2.2.1" class="keepWithNext"><a href="#section-1.2" class="xref">1.2</a>. <a href="#name-packetization-layer-path-mt" class="xref">Packetization Layer Path MTU Discovery</a><a href="#section-toc.1-1.1.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.1.2.3">
<p id="section-toc.1-1.1.2.3.1" class="keepWithNext"><a href="#section-1.3" class="xref">1.3</a>. <a href="#name-path-mtu-discovery-for-data" class="xref">Path MTU Discovery for Datagram Services</a><a href="#section-toc.1-1.1.2.3.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.2">
<p id="section-toc.1-1.2.1"><a href="#section-2" class="xref">2</a>. <a href="#name-terminology" class="xref">Terminology</a><a href="#section-toc.1-1.2.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.3">
<p id="section-toc.1-1.3.1"><a href="#section-3" class="xref">3</a>. <a href="#name-features-required-to-provid" class="xref">Features Required to Provide Datagram PLPMTUD</a><a href="#section-toc.1-1.3.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.4">
<p id="section-toc.1-1.4.1"><a href="#section-4" class="xref">4</a>. <a href="#name-dplpmtud-mechanisms" class="xref">DPLPMTUD Mechanisms</a><a href="#section-toc.1-1.4.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.4.2.1">
<p id="section-toc.1-1.4.2.1.1"><a href="#section-4.1" class="xref">4.1</a>. <a href="#name-plpmtu-probe-packets" class="xref">PLPMTU Probe Packets</a><a href="#section-toc.1-1.4.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.4.2.2">
<p id="section-toc.1-1.4.2.2.1"><a href="#section-4.2" class="xref">4.2</a>. <a href="#name-confirmation-of-probed-pack" class="xref">Confirmation of Probed Packet Size</a><a href="#section-toc.1-1.4.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.4.2.3">
<p id="section-toc.1-1.4.2.3.1"><a href="#section-4.3" class="xref">4.3</a>. <a href="#name-black-hole-detection-and-re" class="xref">Black Hole Detection and Reducing the PLPMTU</a><a href="#section-toc.1-1.4.2.3.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.4.2.4">
<p id="section-toc.1-1.4.2.4.1"><a href="#section-4.4" class="xref">4.4</a>. <a href="#name-the-maximum-packet-size-mps" class="xref">The Maximum Packet Size (MPS)</a><a href="#section-toc.1-1.4.2.4.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.4.2.5">
<p id="section-toc.1-1.4.2.5.1"><a href="#section-4.5" class="xref">4.5</a>. <a href="#name-disabling-the-effect-of-pmt" class="xref">Disabling the Effect of PMTUD</a><a href="#section-toc.1-1.4.2.5.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.4.2.6">
<p id="section-toc.1-1.4.2.6.1"><a href="#section-4.6" class="xref">4.6</a>. <a href="#name-response-to-ptb-messages" class="xref">Response to PTB Messages</a><a href="#section-toc.1-1.4.2.6.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.4.2.6.2.1">
<p id="section-toc.1-1.4.2.6.2.1.1"><a href="#section-4.6.1" class="xref">4.6.1</a>. <a href="#name-validation-of-ptb-messages" class="xref">Validation of PTB Messages</a><a href="#section-toc.1-1.4.2.6.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.4.2.6.2.2">
<p id="section-toc.1-1.4.2.6.2.2.1"><a href="#section-4.6.2" class="xref">4.6.2</a>. <a href="#name-use-of-ptb-messages" class="xref">Use of PTB Messages</a><a href="#section-toc.1-1.4.2.6.2.2.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5">
<p id="section-toc.1-1.5.1"><a href="#section-5" class="xref">5</a>. <a href="#name-datagram-packetization-laye" class="xref">Datagram Packetization Layer PMTUD</a><a href="#section-toc.1-1.5.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.1">
<p id="section-toc.1-1.5.2.1.1"><a href="#section-5.1" class="xref">5.1</a>. <a href="#name-dplpmtud-components" class="xref">DPLPMTUD Components</a><a href="#section-toc.1-1.5.2.1.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.1.2.1">
<p id="section-toc.1-1.5.2.1.2.1.1"><a href="#section-5.1.1" class="xref">5.1.1</a>. <a href="#name-timers" class="xref">Timers</a><a href="#section-toc.1-1.5.2.1.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.1.2.2">
<p id="section-toc.1-1.5.2.1.2.2.1"><a href="#section-5.1.2" class="xref">5.1.2</a>. <a href="#name-constants" class="xref">Constants</a><a href="#section-toc.1-1.5.2.1.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.1.2.3">
<p id="section-toc.1-1.5.2.1.2.3.1"><a href="#section-5.1.3" class="xref">5.1.3</a>. <a href="#name-variables" class="xref">Variables</a><a href="#section-toc.1-1.5.2.1.2.3.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.1.2.4">
<p id="section-toc.1-1.5.2.1.2.4.1"><a href="#section-5.1.4" class="xref">5.1.4</a>. <a href="#name-overview-of-dplpmtud-phases" class="xref">Overview of DPLPMTUD Phases</a><a href="#section-toc.1-1.5.2.1.2.4.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.2">
<p id="section-toc.1-1.5.2.2.1"><a href="#section-5.2" class="xref">5.2</a>. <a href="#name-state-machine" class="xref">State Machine</a><a href="#section-toc.1-1.5.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.3">
<p id="section-toc.1-1.5.2.3.1"><a href="#section-5.3" class="xref">5.3</a>. <a href="#name-search-to-increase-the-plpm" class="xref">Search to Increase the PLPMTU</a><a href="#section-toc.1-1.5.2.3.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.3.2.1">
<p id="section-toc.1-1.5.2.3.2.1.1"><a href="#section-5.3.1" class="xref">5.3.1</a>. <a href="#name-probing-for-a-larger-plpmtu" class="xref">Probing for a Larger PLPMTU</a><a href="#section-toc.1-1.5.2.3.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.3.2.2">
<p id="section-toc.1-1.5.2.3.2.2.1"><a href="#section-5.3.2" class="xref">5.3.2</a>. <a href="#name-selection-of-probe-sizes" class="xref">Selection of Probe Sizes</a><a href="#section-toc.1-1.5.2.3.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.3.2.3">
<p id="section-toc.1-1.5.2.3.2.3.1"><a href="#section-5.3.3" class="xref">5.3.3</a>. <a href="#name-resilience-to-inconsistent-" class="xref">Resilience to Inconsistent Path Information</a><a href="#section-toc.1-1.5.2.3.2.3.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.5.2.4">
<p id="section-toc.1-1.5.2.4.1"><a href="#section-5.4" class="xref">5.4</a>. <a href="#name-robustness-to-inconsistent-" class="xref">Robustness to Inconsistent Paths</a><a href="#section-toc.1-1.5.2.4.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.6">
<p id="section-toc.1-1.6.1"><a href="#section-6" class="xref">6</a>. <a href="#name-specification-of-protocol-s" class="xref">Specification of Protocol-Specific Methods</a><a href="#section-toc.1-1.6.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.1">
<p id="section-toc.1-1.6.2.1.1"><a href="#section-6.1" class="xref">6.1</a>. <a href="#name-application-support-for-dpl" class="xref">Application Support for DPLPMTUD with UDP or UDP-Lite</a><a href="#section-toc.1-1.6.2.1.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.1.2.1">
<p id="section-toc.1-1.6.2.1.2.1.1"><a href="#section-6.1.1" class="xref">6.1.1</a>. <a href="#name-application-request" class="xref">Application Request</a><a href="#section-toc.1-1.6.2.1.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.1.2.2">
<p id="section-toc.1-1.6.2.1.2.2.1"><a href="#section-6.1.2" class="xref">6.1.2</a>. <a href="#name-application-response" class="xref">Application Response</a><a href="#section-toc.1-1.6.2.1.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.1.2.3">
<p id="section-toc.1-1.6.2.1.2.3.1"><a href="#section-6.1.3" class="xref">6.1.3</a>. <a href="#name-sending-application-probe-p" class="xref">Sending Application Probe Packets</a><a href="#section-toc.1-1.6.2.1.2.3.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.1.2.4">
<p id="section-toc.1-1.6.2.1.2.4.1"><a href="#section-6.1.4" class="xref">6.1.4</a>. <a href="#name-initial-connectivity" class="xref">Initial Connectivity</a><a href="#section-toc.1-1.6.2.1.2.4.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.1.2.5">
<p id="section-toc.1-1.6.2.1.2.5.1"><a href="#section-6.1.5" class="xref">6.1.5</a>. <a href="#name-validating-the-path" class="xref">Validating the Path</a><a href="#section-toc.1-1.6.2.1.2.5.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.1.2.6">
<p id="section-toc.1-1.6.2.1.2.6.1"><a href="#section-6.1.6" class="xref">6.1.6</a>. <a href="#name-handling-of-ptb-messages" class="xref">Handling of PTB Messages</a><a href="#section-toc.1-1.6.2.1.2.6.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.2">
<p id="section-toc.1-1.6.2.2.1"><a href="#section-6.2" class="xref">6.2</a>. <a href="#name-dplpmtud-for-sctp" class="xref">DPLPMTUD for SCTP</a><a href="#section-toc.1-1.6.2.2.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.2.2.1">
<p id="section-toc.1-1.6.2.2.2.1.1"><a href="#section-6.2.1" class="xref">6.2.1</a>. <a href="#name-sctp-ipv4-and-sctp-ipv6" class="xref">SCTP/IPv4 and SCTP/IPv6</a><a href="#section-toc.1-1.6.2.2.2.1.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.2.2.1.2.1">
<p id="section-toc.1-1.6.2.2.2.1.2.1.1"><a href="#section-6.2.1.1" class="xref">6.2.1.1</a>. <a href="#name-initial-connectivity-2" class="xref">Initial Connectivity</a><a href="#section-toc.1-1.6.2.2.2.1.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.2.2.1.2.2">
<p id="section-toc.1-1.6.2.2.2.1.2.2.1"><a href="#section-6.2.1.2" class="xref">6.2.1.2</a>. <a href="#name-sending-sctp-probe-packets" class="xref">Sending SCTP Probe Packets</a><a href="#section-toc.1-1.6.2.2.2.1.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.2.2.1.2.3">
<p id="section-toc.1-1.6.2.2.2.1.2.3.1"><a href="#section-6.2.1.3" class="xref">6.2.1.3</a>. <a href="#name-validating-the-path-with-sc" class="xref">Validating the Path with SCTP</a><a href="#section-toc.1-1.6.2.2.2.1.2.3.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.2.2.1.2.4">
<p id="section-toc.1-1.6.2.2.2.1.2.4.1"><a href="#section-6.2.1.4" class="xref">6.2.1.4</a>. <a href="#name-ptb-message-handling-by-sct" class="xref">PTB Message Handling by SCTP</a><a href="#section-toc.1-1.6.2.2.2.1.2.4.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.2.2.2">
<p id="section-toc.1-1.6.2.2.2.2.1"><a href="#section-6.2.2" class="xref">6.2.2</a>. <a href="#name-dplpmtud-for-sctp-udp" class="xref">DPLPMTUD for SCTP/UDP</a><a href="#section-toc.1-1.6.2.2.2.2.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.2.2.2.2.1">
<p id="section-toc.1-1.6.2.2.2.2.2.1.1"><a href="#section-6.2.2.1" class="xref">6.2.2.1</a>. <a href="#name-initial-connectivity-3" class="xref">Initial Connectivity</a><a href="#section-toc.1-1.6.2.2.2.2.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.2.2.2.2.2">
<p id="section-toc.1-1.6.2.2.2.2.2.2.1"><a href="#section-6.2.2.2" class="xref">6.2.2.2</a>. <a href="#name-sending-sctp-udp-probe-pack" class="xref">Sending SCTP/UDP Probe Packets</a><a href="#section-toc.1-1.6.2.2.2.2.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.2.2.2.2.3">
<p id="section-toc.1-1.6.2.2.2.2.2.3.1"><a href="#section-6.2.2.3" class="xref">6.2.2.3</a>. <a href="#name-validating-the-path-with-sct" class="xref">Validating the Path with SCTP/UDP</a><a href="#section-toc.1-1.6.2.2.2.2.2.3.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.2.2.2.2.4">
<p id="section-toc.1-1.6.2.2.2.2.2.4.1"><a href="#section-6.2.2.4" class="xref">6.2.2.4</a>. <a href="#name-handling-of-ptb-messages-by" class="xref">Handling of PTB Messages by SCTP/UDP</a><a href="#section-toc.1-1.6.2.2.2.2.2.4.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.2.2.3">
<p id="section-toc.1-1.6.2.2.2.3.1"><a href="#section-6.2.3" class="xref">6.2.3</a>. <a href="#name-dplpmtud-for-sctp-dtls" class="xref">DPLPMTUD for SCTP/DTLS</a><a href="#section-toc.1-1.6.2.2.2.3.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.2.2.3.2.1">
<p id="section-toc.1-1.6.2.2.2.3.2.1.1"><a href="#section-6.2.3.1" class="xref">6.2.3.1</a>. <a href="#name-initial-connectivity-4" class="xref">Initial Connectivity</a><a href="#section-toc.1-1.6.2.2.2.3.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.2.2.3.2.2">
<p id="section-toc.1-1.6.2.2.2.3.2.2.1"><a href="#section-6.2.3.2" class="xref">6.2.3.2</a>. <a href="#name-sending-sctp-dtls-probe-pac" class="xref">Sending SCTP/DTLS Probe Packets</a><a href="#section-toc.1-1.6.2.2.2.3.2.2.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.2.2.3.2.3">
<p id="section-toc.1-1.6.2.2.2.3.2.3.1"><a href="#section-6.2.3.3" class="xref">6.2.3.3</a>. <a href="#name-validating-the-path-with-sctp" class="xref">Validating the Path with SCTP/DTLS</a><a href="#section-toc.1-1.6.2.2.2.3.2.3.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.2.2.3.2.4">
<p id="section-toc.1-1.6.2.2.2.3.2.4.1"><a href="#section-6.2.3.4" class="xref">6.2.3.4</a>. <a href="#name-handling-of-ptb-messages-by-" class="xref">Handling of PTB Messages by SCTP/DTLS</a><a href="#section-toc.1-1.6.2.2.2.3.2.4.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.6.2.3">
<p id="section-toc.1-1.6.2.3.1"><a href="#section-6.3" class="xref">6.3</a>. <a href="#name-dplpmtud-for-quic" class="xref">DPLPMTUD for QUIC</a><a href="#section-toc.1-1.6.2.3.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.7">
<p id="section-toc.1-1.7.1"><a href="#section-7" class="xref">7</a>. <a href="#name-iana-considerations" class="xref">IANA Considerations</a><a href="#section-toc.1-1.7.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.8">
<p id="section-toc.1-1.8.1"><a href="#section-8" class="xref">8</a>. <a href="#name-security-considerations" class="xref">Security Considerations</a><a href="#section-toc.1-1.8.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.9">
<p id="section-toc.1-1.9.1"><a href="#section-9" class="xref">9</a>. <a href="#name-references" class="xref">References</a><a href="#section-toc.1-1.9.1" class="pilcrow">¶</a></p>
<ul class="ulEmpty compact toc">
<li class="ulEmpty compact toc" id="section-toc.1-1.9.2.1">
<p id="section-toc.1-1.9.2.1.1"><a href="#section-9.1" class="xref">9.1</a>. <a href="#name-normative-references" class="xref">Normative References</a><a href="#section-toc.1-1.9.2.1.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.9.2.2">
<p id="section-toc.1-1.9.2.2.1"><a href="#section-9.2" class="xref">9.2</a>. <a href="#name-informative-references" class="xref">Informative References</a><a href="#section-toc.1-1.9.2.2.1" class="pilcrow">¶</a></p>
</li>
</ul>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.10">
<p id="section-toc.1-1.10.1"><a href="#section-appendix.a" class="xref"></a><a href="#name-acknowledgments" class="xref">Acknowledgments</a><a href="#section-toc.1-1.10.1" class="pilcrow">¶</a></p>
</li>
<li class="ulEmpty compact toc" id="section-toc.1-1.11">
<p id="section-toc.1-1.11.1"><a href="#section-appendix.b" class="xref"></a><a href="#name-authors-addresses" class="xref">Authors' Addresses</a><a href="#section-toc.1-1.11.1" class="pilcrow">¶</a></p>
</li>
</ul>
</nav>
</section>
</div>
<section id="section-1">
<h2 id="name-introduction">
<a href="#section-1" class="section-number selfRef">1. </a><a href="#name-introduction" class="section-name selfRef">Introduction</a>
</h2>
<p id="section-1-1">The IETF has specified datagram transport using UDP,
Stream Control Transmission Protocol (SCTP), and
Datagram Congestion Control Protocol (DCCP),
as well as protocols layered on top of these transports (e.g., SCTP/UDP,
DCCP/UDP, QUIC/UDP) and direct datagram transport over the IP network
layer. This document describes a robust method for Path MTU Discovery
(PMTUD) that can be used with these transport protocols (or the
applications that use their transport service) to discover an
appropriate size of packet to use across an Internet path.<a href="#section-1-1" class="pilcrow">¶</a></p>
<div id="Classic-PMTUD">
<section id="section-1.1">
<h3 id="name-classical-path-mtu-discover">
<a href="#section-1.1" class="section-number selfRef">1.1. </a><a href="#name-classical-path-mtu-discover" class="section-name selfRef">Classical Path MTU Discovery</a>
</h3>
<p id="section-1.1-1">Classical Path Maximum Transmission Unit Discovery (PMTUD) can be
used with any transport that is able to process ICMP Packet Too Big
(PTB) messages (e.g., <span>[<a href="#RFC1191" class="xref">RFC1191</a>]</span> and <span>[<a href="#RFC8201" class="xref">RFC8201</a>]</span>). In this document, the term PTB message is
applied to both IPv4 ICMP Unreachable messages (Type 3) that carry the
error Fragmentation Needed (Type 3, Code 4) <span>[<a href="#RFC0792" class="xref">RFC0792</a>]</span> and ICMPv6 Packet Too Big messages (Type 2)
<span>[<a href="#RFC4443" class="xref">RFC4443</a>]</span>. When a sender receives a PTB message,
it reduces the effective MTU to the value reported as the link MTU in
the PTB message. Classical PMTUD specifies a method of periodically increasing
the packet size in an attempt to discover an increase in the
supported PMTU.
The packets sent with a size larger than the current effective PMTU
are known as probe packets.<a href="#section-1.1-1" class="pilcrow">¶</a></p>
<p id="section-1.1-2">Packets not intended as probe packets are either fragmented to the
current effective PMTU, or the attempt to send fails with an error
code. Applications can be provided with a primitive to let them
read the Maximum Packet Size (MPS), which is derived from the current effective
PMTU.<a href="#section-1.1-2" class="pilcrow">¶</a></p>
<p id="section-1.1-3">Classical PMTUD is subject to protocol failures. One failure arises
when traffic using a packet size larger than the actual PMTU is
black-holed (all datagrams larger than the actual PMTU are discarded).
This could arise when the PTB messages are not sent back to the
sender for some reason (for example, see <span>[<a href="#RFC2923" class="xref">RFC2923</a>]</span>).<a href="#section-1.1-3" class="pilcrow">¶</a></p>
<p id="section-1.1-4">Examples of where PTB messages are not delivered include the following:<a href="#section-1.1-4" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-1.1-5.1">The generation of ICMP messages is usually rate limited. This
could result in no PTB messages being generated to the sender (see
<span><a href="https://www.rfc-editor.org/rfc/rfc4443#section-2.4" class="relref">Section 2.4</a> of [<a href="#RFC4443" class="xref">RFC4443</a>]</span>).<a href="#section-1.1-5.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-1.1-5.2">ICMP messages can be filtered by middleboxes, including
firewalls <span>[<a href="#RFC4890" class="xref">RFC4890</a>]</span>. A firewall
could be configured with a policy to block incoming ICMP messages,
which would prevent reception of PTB messages by a sending
endpoint behind this firewall.<a href="#section-1.1-5.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-1.1-5.3">When the router issuing the ICMP message drops a tunneled
packet, the resulting ICMP message is directed to the tunnel
ingress. This tunnel endpoint is responsible for forwarding the
ICMP message, processing the quoted packet within the
payload field to remove the effect of the tunnel and returning a
correctly formatted ICMP message to the sender <span>[<a href="#I-D.ietf-intarea-tunnels" class="xref">TUNNELS</a>]</span>. Failure to do this
prevents the PTB message from reaching the original sender.<a href="#section-1.1-5.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-1.1-5.4">Asymmetry in forwarding can result in there being no return
route to the original sender, which would prevent an ICMP message
from being delivered to the sender. This issue can also arise when
either policy-based or Equal-Cost Multipath (ECMP) routing
is used or when a middlebox acts as an application load balancer.
An example of which is an ECMP router choosing a path toward the server
based on the bytes in the IP payload. In this case, if a packet
sent by the server encounters a problem after the ECMP router, then
the ECMP router needs to direct any resulting ICMP message toward
the original sender.<a href="#section-1.1-5.4" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-1.1-5.5">There are additional cases where the next-hop destination fails
to receive a packet because of its size. This could be due to
misconfiguration of the layer 2 path between nodes, for instance
the MTU configured in a layer 2 switch, or misconfiguration of the
Maximum Receive Unit (MRU). If a packet is dropped by the link,
this will not cause a PTB message to be sent to the original
sender.<a href="#section-1.1-5.5" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-1.1-6">Another failure could result if a node that is not on the network
path sends a PTB message that attempts to force a sender to change the
effective PMTU <span>[<a href="#RFC8201" class="xref">RFC8201</a>]</span>. A sender can protect
itself from reacting to such messages by utilizing the quoted packet
within a PTB message payload to validate that the received PTB message
was generated in response to a packet that had actually originated
from the sender. However, there are situations where a sender would be
unable to provide this validation. Examples where the validation of the
PTB message is not possible include the following:<a href="#section-1.1-6" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-1.1-7.1">
<p id="section-1.1-7.1.1">When a router issuing the ICMP message implements RFC 792 <span>[<a href="#RFC0792" class="xref">RFC0792</a>]</span>, it is only required to include the first
64 bits of the IP payload of the packet within the quoted payload.
There could be insufficient bytes remaining for the sender to
interpret the quoted transport information.<a href="#section-1.1-7.1.1" class="pilcrow">¶</a></p>
<p id="section-1.1-7.1.2"> Note: The
recommendation in RFC 1812 <span>[<a href="#RFC1812" class="xref">RFC1812</a>]</span> is that
IPv4 routers return a quoted packet with as much of the original
datagram as possible without the length of the ICMP datagram
exceeding 576 bytes. IPv6 routers include as much of the invoking
packet as possible without the ICMPv6 packet exceeding 1280 bytes
<span>[<a href="#RFC4443" class="xref">RFC4443</a>]</span>.<a href="#section-1.1-7.1.2" class="pilcrow">¶</a></p>
</li>
<li class="normal" id="section-1.1-7.2">The use of tunnels and/or encryption can reduce the size of the quoted
packet returned to the original source address, increasing the
risk that there could be insufficient bytes remaining for the
sender to interpret the quoted transport information.<a href="#section-1.1-7.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-1.1-7.3">Even when the PTB message includes sufficient bytes of the
quoted packet, the network layer could lack sufficient context to
validate the message because validation depends on information
about the active transport flows at an endpoint node (e.g., the
socket/address pairs being used and other protocol header
information).<a href="#section-1.1-7.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-1.1-7.4">When a packet is encapsulated/tunneled over an encrypted
transport, the tunnel/encapsulation ingress might have
insufficient context, or computational power, to reconstruct the
transport header that would be needed to perform validation.<a href="#section-1.1-7.4" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-1.1-7.5"> When an ICMP message is generated by a router in a network
segment that has inserted a header into a packet, the quoted packet
could contain additional protocol header information that was not
included in the original sent packet and that the PL sender does
not process or may not know how to process. This could disrupt the
ability of the sender to validate this PTB message.<a href="#section-1.1-7.5" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-1.1-7.6"> A Network Address Translation (NAT) device that translates a
packet header ought to also translate ICMP messages and update
the ICMP-quoted packet <span>[<a href="#RFC5508" class="xref">RFC5508</a>]</span> in
that message. If this is not correctly translated,
then the sender would not be able to associate the message
with the PL that originated the packet, and hence this
ICMP message cannot be validated.<a href="#section-1.1-7.6" class="pilcrow">¶</a>
</li>
</ul>
</section>
</div>
<section id="section-1.2">
<h3 id="name-packetization-layer-path-mt">
<a href="#section-1.2" class="section-number selfRef">1.2. </a><a href="#name-packetization-layer-path-mt" class="section-name selfRef">Packetization Layer Path MTU Discovery</a>
</h3>
<p id="section-1.2-1">The term Packetization Layer (PL) has been introduced to describe
the layer that is responsible for placing data blocks into the payload
of IP packets and selecting an appropriate MPS. This function is often
performed by a transport protocol (e.g., DCCP, RTP, SCTP, QUIC)
but can also be performed by other encapsulation methods working
above the transport layer.<a href="#section-1.2-1" class="pilcrow">¶</a></p>
<p id="section-1.2-2">In contrast to PMTUD, Packetization Layer Path MTU Discovery
(PLPMTUD) <span>[<a href="#RFC4821" class="xref">RFC4821</a>]</span> introduces a method
that does not rely upon reception
and validation of PTB messages. It is therefore more robust than
Classical PMTUD. This has become the recommended approach for
implementing discovery of the PMTU <span>[<a href="#BCP145" class="xref">BCP145</a>]</span>.<a href="#section-1.2-2" class="pilcrow">¶</a></p>
<p id="section-1.2-3">This document updates <span>[<a href="#RFC4821" class="xref">RFC4821</a>]</span> to specify the PLPMTUD method for
datagram PLs and also updates <span>[<a href="#BCP145" class="xref">BCP145</a>]</span> to refer to the method
specified in this document for use
with UDP datagrams instead of the method in <span>[<a href="#RFC4821" class="xref">RFC4821</a>]</span>.<a href="#section-1.2-3" class="pilcrow">¶</a></p>
<p id="section-1.2-4">It uses a general strategy in which the PL sends probe packets to
search for the largest size of unfragmented datagram that can be sent
over a network path. Probe packets are sent to explore using a larger
packet size. If a probe packet is successfully delivered (as determined
by the PL), then the PLPMTU is raised to the size of the successful
probe. If a black hole is detected (e.g., where packets of size PLPMTU
are consistently not received), the method reduces the PLPMTU.<a href="#section-1.2-4" class="pilcrow">¶</a></p>
<p id="section-1.2-5">Datagram PLPMTUD introduces flexibility in implementation.
At one extreme, it can be configured to only perform
black hole detection and recovery with increased robustness compared to
Classical PMTUD. At the other extreme, all PTB processing can
be disabled, and PLPMTUD replaces Classical PMTUD.<a href="#section-1.2-5" class="pilcrow">¶</a></p>
<p id="section-1.2-6">PLPMTUD can also include additional consistency checks without
increasing the risk that data is lost when probing to discover the
Path MTU. For example, information available at the PL, or higher
layers, enables received PTB messages to be validated before being
utilized.<a href="#section-1.2-6" class="pilcrow">¶</a></p>
</section>
<section id="section-1.3">
<h3 id="name-path-mtu-discovery-for-data">
<a href="#section-1.3" class="section-number selfRef">1.3. </a><a href="#name-path-mtu-discovery-for-data" class="section-name selfRef">Path MTU Discovery for Datagram Services</a>
</h3>
<p id="section-1.3-1"><a href="#Spec" class="xref">Section 5</a> of this document presents a set of
algorithms for datagram protocols to discover the largest size of
unfragmented datagram that can be sent over a network path. The method
relies upon features of the PL described in <a href="#Requirements" class="xref">Section 3</a> and applies to transport protocols
operating over IPv4 and IPv6. It does not require cooperation from the
lower layers, although it can utilize PTB messages when these received
messages are made available to the PL.<a href="#section-1.3-1" class="pilcrow">¶</a></p>
<p id="section-1.3-2">The message size guidelines in Section
<a href="https://www.rfc-editor.org/rfc/rfc8085#section-3.2" class="relref">3.2</a>
of the UDP Usage Guidelines <span>[<a href="#BCP145" class="xref">BCP145</a>]</span> state that "an application <span class="bcp14">SHOULD</span>
either use the Path MTU information provided by the IP layer or
implement Path MTU Discovery (PMTUD)" but do not provide a mechanism
for discovering the largest size of unfragmented datagram that can be
used on a network path. The present document updates RFC 8085 to
specify this method in place of PLPMTUD <span>[<a href="#RFC4821" class="xref">RFC4821</a>]</span>
and provides a mechanism for sharing the discovered largest size as the
MPS (see <a href="#mps" class="xref">Section 4.4</a>).<a href="#section-1.3-2" class="pilcrow">¶</a></p>
<p id="section-1.3-3"><span><a href="https://www.rfc-editor.org/rfc/rfc4821#section-10.2" class="relref">Section 10.2</a> of [<a href="#RFC4821" class="xref">RFC4821</a>]</span> recommended a PLPMTUD
probing method for the Stream Control Transport Protocol (SCTP). SCTP
utilizes probe packets consisting of a minimal-sized HEARTBEAT chunk
bundled with a PAD chunk as defined in <span>[<a href="#RFC4820" class="xref">RFC4820</a>]</span>.
However, RFC 4821 did not provide a complete specification. The present
document replaces that description by providing a complete
specification.<a href="#section-1.3-3" class="pilcrow">¶</a></p>
<p id="section-1.3-4">The Datagram Congestion Control Protocol (DCCP) <span>[<a href="#RFC4340" class="xref">RFC4340</a>]</span> requires implementations to support Classical
PMTUD and states that a DCCP sender "<span class="bcp14">MUST</span> maintain the MPS allowed for
each active DCCP session". It also defines the current congestion
control MPS (CCMPS) supported by a network path. This recommends use
of PMTUD and suggests use of control packets (DCCP-Sync) as path
probe packets because they do not risk application data loss. The
method defined in this specification can be used with DCCP.<a href="#section-1.3-4" class="pilcrow">¶</a></p>
<p id="section-1.3-5"><a href="#dplpmtud-mechanisms" class="xref">Section 4</a> and <a href="#Spec" class="xref">Section 5</a> define the protocol mechanisms and specification
for Datagram Packetization Layer Path MTU Discovery (DPLPMTUD).<a href="#section-1.3-5" class="pilcrow">¶</a></p>
<p id="section-1.3-6"><a href="#protocol_specific_methods" class="xref">Section 6</a> specifies the
method for datagram transports and provides information to enable the
implementation of PLPMTUD with other datagram transports and
applications that use datagram transports.<a href="#section-1.3-6" class="pilcrow">¶</a></p>
<p id="section-1.3-7"><a href="#protocol_specific_methods" class="xref">Section 6</a>
also provides recommendations for SCTP endpoints,
updating <span>[<a href="#RFC4960" class="xref">RFC4960</a>]</span>, <span>[<a href="#RFC6951" class="xref">RFC6951</a>]</span>, and <span>[<a href="#RFC8261" class="xref">RFC8261</a>]</span> to use the
method specified in this document instead of the method in <span>[<a href="#RFC4821" class="xref">RFC4821</a>]</span>.<a href="#section-1.3-7" class="pilcrow">¶</a></p>
</section>
</section>
<section id="section-2">
<h2 id="name-terminology">
<a href="#section-2" class="section-number selfRef">2. </a><a href="#name-terminology" class="section-name selfRef">Terminology</a>
</h2>
<p id="section-2-1">
The key words "<span class="bcp14">MUST</span>", "<span class="bcp14">MUST NOT</span>", "<span class="bcp14">REQUIRED</span>", "<span class="bcp14">SHALL</span>", "<span class="bcp14">SHALL NOT</span>", "<span class="bcp14">SHOULD</span>", "<span class="bcp14">SHOULD NOT</span>", "<span class="bcp14">RECOMMENDED</span>", "<span class="bcp14">NOT RECOMMENDED</span>",
"<span class="bcp14">MAY</span>", and "<span class="bcp14">OPTIONAL</span>" in this document are to be interpreted as
described in BCP 14 <span>[<a href="#RFC2119" class="xref">RFC2119</a>]</span> <span>[<a href="#RFC8174" class="xref">RFC8174</a>]</span>
when, and only when, they appear in all capitals, as shown here.<a href="#section-2-1" class="pilcrow">¶</a></p>
<p id="section-2-2">The following terminology is defined. Relevant terms are directly
copied from <span>[<a href="#RFC4821" class="xref">RFC4821</a>]</span>, and the definitions in <span>[<a href="#RFC1122" class="xref">RFC1122</a>]</span> apply.<a href="#section-2-2" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-2-3">
<dt id="section-2-3.1">Acknowledged PL:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.2"> A PL that includes a mechanism that can confirm successful
delivery of datagrams to the remote PL endpoint (e.g., SCTP).
Typically, the PL receiver returns acknowledgments corresponding to
the received datagrams, which can be utilized to detect black-holing
of packets (c.f., Unacknowledged PL).<a href="#section-2-3.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.3">Actual PMTU:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.4">The actual PMTU is the PMTU of a network path between a sender
PL and a destination PL, which the DPLPMTUD algorithm seeks to
determine.<a href="#section-2-3.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.5">Black Hole:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.6">
<p id="section-2-3.6.1">A black hole is encountered when a sender is unaware that
packets are not being delivered to the destination endpoint. Two
types of black hole are relevant to DPLPMTUD:<a href="#section-2-3.6.1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-2-3.6.2.1">Packets encounter a packet black hole when packets are not
delivered to the destination endpoint (e.g., when the sender
transmits packets of a particular size with a previously known
effective PMTU, and they are discarded by the network).<a href="#section-2-3.6.2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-2-3.6.2.2">
An ICMP black hole is encountered when the sender is unaware
that packets are not delivered to the destination endpoint
because PTB messages are not received by the originating PL
sender.<a href="#section-2-3.6.2.2" class="pilcrow">¶</a>
</li>
</ul>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.7">Classical Path MTU Discovery:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.8">Classical PMTUD is a process described in <span>[<a href="#RFC1191" class="xref">RFC1191</a>]</span> and <span>[<a href="#RFC8201" class="xref">RFC8201</a>]</span> in which nodes
rely on PTB messages to learn the largest size of unfragmented
packet that can be used across a network path.<a href="#section-2-3.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.9">Datagram:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.10">A datagram is a transport-layer protocol data unit, transmitted
in the payload of an IP packet.<a href="#section-2-3.10" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.11">DPLPMTUD:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.12">Datagram Packetization Layer Path MTU Discovery (DPLPMTUD),
PLPMTUD performed using a datagram transport protocol.<a href="#section-2-3.12" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.13">Effective PMTU:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.14">The effective PMTU is the current estimated value for PMTU that is
used by a PMTUD. This is equivalent to the PLPMTU derived by PLPMTUD
plus the size of any headers added below the PL, including the IP
layer headers.<a href="#section-2-3.14" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.15">EMTU_S:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.16">The effective MTU for sending (EMTU_S) is defined in <span>[<a href="#RFC1122" class="xref">RFC1122</a>]</span> as "the maximum IP datagram size that may be
sent, for a particular combination of IP source and destination
addresses...".<a href="#section-2-3.16" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.17">EMTU_R:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.18">The effective MTU for receiving (EMTU_R) is designated in <span>[<a href="#RFC1122" class="xref">RFC1122</a>]</span> as "the largest datagram size that can be
reassembled".<a href="#section-2-3.18" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.19">Link:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.20">A link is a communication facility or medium over which nodes can
communicate at the link layer, i.e., a layer below the IP layer.
Examples are Ethernet LANs and Internet (or higher) layer
tunnels.<a href="#section-2-3.20" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.21">Link MTU:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.22">
<p id="section-2-3.22.1">The link Maximum Transmission Unit (MTU) is the size in bytes of
the largest IP packet, including the IP header and payload, that can
be transmitted over a link. Note that this could more properly be
called the IP MTU, to be consistent with how other standards
organizations use the acronym. This includes the IP header but
excludes link layer headers and other framing that is not part of IP
or the IP payload. Other standards organizations generally define
the link MTU to include the link layer headers. This specification
continues the requirement in <span>[<a href="#RFC4821" class="xref">RFC4821</a>]</span>
that states,
"All links <span class="bcp14">MUST</span> enforce their MTU: links that might
non-deterministically deliver packets that are larger than their rated
MTU <span class="bcp14">MUST</span> consistently discard such packets."<a href="#section-2-3.22.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.23">MAX_PLPMTU:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.24">The MAX_PLPMTU is the largest size of PLPMTU that DPLPMTUD will
attempt to use (see the constants defined in <a href="#Constants" class="xref">Section 5.1.2</a>).<a href="#section-2-3.24" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.25">MIN_PLPMTU:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.26">The MIN_PLPMTU is the smallest size of PLPMTU that DPLPMTUD will
attempt to use (see the constants defined in <a href="#Constants" class="xref">Section 5.1.2</a>).<a href="#section-2-3.26" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.27">MPS:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.28">The Maximum Packet Size (MPS) is the largest size of
application data block that can be sent across a network path by a PL
using a single datagram (see <a href="#mps" class="xref">Section 4.4</a>).<a href="#section-2-3.28" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.29">MSL:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.30">The Maximum Segment Lifetime (MSL) is the maximum delay a packet is
expected to experience across a path, taken as 2 minutes <span>[<a href="#BCP145" class="xref">BCP145</a>]</span>.<a href="#section-2-3.30" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.31">Packet:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.32">A packet is the IP header(s) and any extension headers/options
plus the IP payload.<a href="#section-2-3.32" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.33">Packetization Layer (PL):</dt>
<dd style="margin-left: 1.5em" id="section-2-3.34">The PL is a layer of the network stack that places data into
packets and performs transport protocol functions. Examples of a PL
include TCP, SCTP, SCTP over UDP, SCTP over DTLS, or QUIC.<a href="#section-2-3.34" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.35">Path:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.36">The path is the set of links and routers traversed by a packet
between a source node and a destination node by a particular
flow.<a href="#section-2-3.36" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.37">Path MTU (PMTU):</dt>
<dd style="margin-left: 1.5em" id="section-2-3.38">The Path MTU (PMTU) is the minimum of the link MTU of all the
links forming a network path between a source node and a destination
node, as used by PMTUD.<a href="#section-2-3.38" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.39">PTB:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.40"> In this document, the term PTB message is applied to both IPv4
ICMP Unreachable messages (Type 3) that carry the error Fragmentation
Needed (Type 3, Code 4) <span>[<a href="#RFC0792" class="xref">RFC0792</a>]</span> and ICMPv6
Packet Too Big messages (Type 2) <span>[<a href="#RFC4443" class="xref">RFC4443</a>]</span>.<a href="#section-2-3.40" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.41">PTB_SIZE:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.42">The PTB_SIZE is a value reported in a validated PTB message that
indicates next-hop link MTU of a router along the path.<a href="#section-2-3.42" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.43">PL_PTB_SIZE:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.44">The size reported in a validated PTB message, reduced by the size
of all headers added by layers below the PL.<a href="#section-2-3.44" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.45">PLPMTU:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.46">The Packetization Layer PMTU is an estimate of the largest size
of PL datagram that can be sent by a path, controlled by PLPMTUD.<a href="#section-2-3.46" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.47">PLPMTUD:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.48">Packetization Layer Path MTU Discovery (PLPMTUD), the method
described in this document for datagram PLs, which is an extension
to Classical PMTU Discovery.<a href="#section-2-3.48" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.49">Probe packet:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.50">A probe packet is a datagram sent with a purposely chosen size
(typically the current PLPMTU or larger) to detect if packets of
this size can be successfully sent end-to-end across the network
path.<a href="#section-2-3.50" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-2-3.51">Unacknowledged PL:</dt>
<dd style="margin-left: 1.5em" id="section-2-3.52">A PL that does not itself provide a mechanism to confirm delivery
of datagrams to the remote PL endpoint (e.g., UDP), and therefore
requires DPLPMTUD to provide a mechanism to detect black-holing of
packets (c.f., Acknowledged PL).<a href="#section-2-3.52" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
</section>
<div id="Requirements">
<section id="section-3">
<h2 id="name-features-required-to-provid">
<a href="#section-3" class="section-number selfRef">3. </a><a href="#name-features-required-to-provid" class="section-name selfRef">Features Required to Provide Datagram PLPMTUD</a>
</h2>
<p id="section-3-1">The principles expressed in <span>[<a href="#RFC4821" class="xref">RFC4821</a>]</span> apply to
the use of the technique with any PL.
TCP PLPMTUD has been defined using standard TCP protocol mechanisms.
Unlike TCP, a datagram PL requires additional mechanisms and
considerations to implement PLPMTUD.<a href="#section-3-1" class="pilcrow">¶</a></p>
<p id="section-3-2">The requirements for datagram PLPMTUD are:<a href="#section-3-2" class="pilcrow">¶</a></p>
<ol start="1" type="1" class="normal type-1" id="section-3-3">
<li id="section-3-3.1"> Managing the PLPMTU: For datagram PLs, the PLPMTU is managed by
DPLPMTUD. A PL <span class="bcp14">MUST NOT</span> send a datagram (other than a probe packet)
with a size at the PL that is larger than the current
PLPMTU.<a href="#section-3-3.1" class="pilcrow">¶</a>
</li>
<li id="section-3-3.2"> Probe packets: The network interface below the PL is <span class="bcp14">REQUIRED</span> to
provide a way to transmit a probe packet that is larger than the
PLPMTU. In IPv4, a probe packet <span class="bcp14">MUST</span> be sent with the Don't
Fragment (DF) bit set in the IP header and without network layer
endpoint fragmentation. In IPv6, a probe packet is always sent
without source fragmentation (as specified in
<span><a href="https://www.rfc-editor.org/rfc/rfc8201#section-5.4" class="relref">Section 5.4</a> of [<a href="#RFC8201" class="xref">RFC8201</a>]</span>).<a href="#section-3-3.2" class="pilcrow">¶</a>
</li>
<li id="section-3-3.3">Reception feedback: The destination PL endpoint is <span class="bcp14">REQUIRED</span> to
provide a feedback method that indicates to the DPLPMTUD sender when
a probe packet has been received by the destination PL endpoint.
<a href="#protocol_specific_methods" class="xref">Section 6</a> provides examples of
how a PL can provide this acknowledgment of received probe packets.<a href="#section-3-3.3" class="pilcrow">¶</a>
</li>
<li id="section-3-3.4">Probe loss recovery: It is <span class="bcp14">RECOMMENDED</span> to use probe packets that
do not carry any user data that would require retransmission if lost.
Most datagram transports permit this. If a probe packet contains user
data requiring retransmission in case of loss, the PL (or layers
above) is <span class="bcp14">REQUIRED</span> to arrange any retransmission and/or repair of any
resulting loss. The PL is <span class="bcp14">REQUIRED</span> to be robust in the case where
probe packets are lost due to other reasons (including link
transmission error, congestion).<a href="#section-3-3.4" class="pilcrow">¶</a>
</li>
<li id="section-3-3.5">PMTU parameters: A DPLPMTUD sender is <span class="bcp14">RECOMMENDED</span> to utilize
information about the maximum size of packet that can be transmitted
by the sender on the local link (e.g., the local link MTU). A PL
sender <span class="bcp14">MAY</span> utilize similar information about the maximum size of
network-layer packet that a receiver can accept when this is supplied
(note this could be less than EMTU_R). This avoids implementations
trying to send probe packets that cannot be transferred by the local
link. Too high of a value could reduce the efficiency of the search
algorithm. Some applications also have a maximum transport protocol
data unit (PDU) size, in which case there is no benefit from probing
for a size larger than this (unless a transport allows multiplexing
multiple applications' PDUs into the same datagram).<a href="#section-3-3.5" class="pilcrow">¶</a>
</li>
<li id="section-3-3.6">Processing PTB messages: A DPLPMTUD sender <span class="bcp14">MAY</span> optionally utilize
PTB messages received from the network layer to help identify when a
network path does not support the current size of probe packet. Any
received PTB message <span class="bcp14">MUST</span> be validated before it is used to update
the PLPMTU discovery information <span>[<a href="#RFC8201" class="xref">RFC8201</a>]</span>.
This validation confirms that the PTB message was sent in response to
a packet originated by the sender and needs to be performed before
the PLPMTU discovery method reacts to the PTB message. A PTB message
<span class="bcp14">MUST NOT</span> be used to increase the PLPMTU <span>[<a href="#RFC8201" class="xref">RFC8201</a>]</span>
but could trigger a probe to test for a larger PLPMTU.
A valid PTB_SIZE is converted to a PL_PTB_SIZE before it is to be
used in the DPLPMTUD state machine. A PL_PTB_SIZE that is greater
than that currently probed <span class="bcp14">SHOULD</span> be ignored. (This PTB message ought
to be discarded without further processing but could be utilized as
an input that enables a resilience mode).<a href="#section-3-3.6" class="pilcrow">¶</a>
</li>
<li id="section-3-3.7">Probing and congestion control: A PL <span class="bcp14">MAY</span> use a congestion
controller to decide when to send a probe packet. If transmission of
probe packets is limited by the congestion controller, this could
result in transmission of probe packets being delayed or suspended
during congestion. When the transmission of probe packets is not
controlled by the congestion controller, the interval between probe
packets <span class="bcp14">MUST</span> be at least one RTT.
Loss of a probe packet <span class="bcp14">SHOULD NOT</span> be treated as an indication of
congestion and <span class="bcp14">SHOULD NOT</span> trigger a congestion control reaction <span>[<a href="#RFC4821" class="xref">RFC4821</a>]</span>
because this could result in unnecessary reduction of the sending rate.
An update to the PLPMTU (or MPS) <span class="bcp14">MUST NOT</span> increase the congestion
window measured in bytes <span>[<a href="#RFC4821" class="xref">RFC4821</a>]</span>. Therefore,
an increase in the packet size does not cause an increase in the data
rate in bytes per second.
A PL that maintains the congestion window in terms of a limit to
the number of outstanding fixed-size packets <span class="bcp14">SHOULD</span> adapt this limit
to compensate for the size of the actual packets.
The transmission of probe packets can interact with the operation
of a PL that performs burst mitigation or pacing, and the PL could need
transmission of probe packets to be regulated by these methods.<a href="#section-3-3.7" class="pilcrow">¶</a>
</li>
<li id="section-3-3.8">Probing and flow control: Flow control at the PL concerns the
end-to-end flow of data using the PL service. Flow control <span class="bcp14">SHOULD NOT</span> apply to DPLPMTU when probe packets use a design that does not
carry user data to the remote application.<a href="#section-3-3.8" class="pilcrow">¶</a>
</li>
<li id="section-3-3.9">Shared PLPMTU state: The PMTU value
calculated from the PLPMTU <span class="bcp14">MAY</span> also be stored with the
corresponding entry associated with the destination in the IP
layer cache and used by other PL instances. The specification of
PLPMTUD <span>[<a href="#RFC4821" class="xref">RFC4821</a>]</span> states, "If PLPMTUD updates
the MTU for a particular path, all Packetization Layer sessions that
share the path representation (as described in Section
<a href="https://www.rfc-editor.org/rfc/rfc4821#section-5.2" class="relref">5.2</a>)
<span class="bcp14">SHOULD</span> be notified to make use of the new
MTU". Such methods <span class="bcp14">MUST</span> be robust to the wide variety of underlying
network forwarding behaviors.
<span><a href="https://www.rfc-editor.org/rfc/rfc8201#section-5.2" class="relref">Section 5.2</a> of [<a href="#RFC8201" class="xref">RFC8201</a>]</span>
provides guidance on the caching of PMTU
information and also the relation to IPv6 flow labels.<a href="#section-3-3.9" class="pilcrow">¶</a>
</li>
</ol>
<p id="section-3-4">In addition, the following principles are stated for design of a
DPLPMTUD method:<a href="#section-3-4" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-3-5.1">A PL <span class="bcp14">MAY</span> be designed to segment data blocks larger than the MPS
into multiple datagrams. However, not all datagram PLs support
segmentation of data blocks. It is <span class="bcp14">RECOMMENDED</span> that methods avoid
forcing an application to use an arbitrary small MPS for transmission
while the method is searching for the currently supported PLPMTU. A
reduced MPS can adversely impact the performance of an
application.<a href="#section-3-5.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-3-5.2"> To assist applications in choosing a suitable data block size, the
PL is <span class="bcp14">RECOMMENDED</span> to provide a primitive that
returns the MPS derived from the PLPMTU to the
higher layer using the PL. The value of the MPS can change following
a change in the path or loss of probe packets.<a href="#section-3-5.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-3-5.3">Path validation: It is <span class="bcp14">RECOMMENDED</span> that methods are robust to
path changes that could have occurred since the path characteristics
were last confirmed and to the possibility of inconsistent path
information being received.<a href="#section-3-5.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-3-5.4">Datagram reordering: A method is <span class="bcp14">REQUIRED</span> to be robust to the
possibility that a flow encounters reordering or that the traffic
(including probe packets) is divided over more than one network
path.<a href="#section-3-5.4" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-3-5.5">Datagram delay and duplication: The feedback
mechanism is <span class="bcp14">REQUIRED</span> to be robust to the possibility that packets
could be significantly delayed or duplicated along a network path.<a href="#section-3-5.5" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-3-5.6">When to probe: It is <span class="bcp14">RECOMMENDED</span> that methods determine whether
the path has changed since it last measured the path. This can help
determine when to probe the path again.<a href="#section-3-5.6" class="pilcrow">¶</a>
</li>
</ul>
</section>
</div>
<div id="dplpmtud-mechanisms">
<section id="section-4">
<h2 id="name-dplpmtud-mechanisms">
<a href="#section-4" class="section-number selfRef">4. </a><a href="#name-dplpmtud-mechanisms" class="section-name selfRef">DPLPMTUD Mechanisms</a>
</h2>
<p id="section-4-1">This section lists the protocol mechanisms used in this
specification.<a href="#section-4-1" class="pilcrow">¶</a></p>
<div id="Probe">
<section id="section-4.1">
<h3 id="name-plpmtu-probe-packets">
<a href="#section-4.1" class="section-number selfRef">4.1. </a><a href="#name-plpmtu-probe-packets" class="section-name selfRef">PLPMTU Probe Packets</a>
</h3>
<p id="section-4.1-1">The DPLPMTUD method relies upon the PL sender being able to generate
probe packets with a specific size. TCP is able to generate these probe
packets by choosing to appropriately segment data being sent <span>[<a href="#RFC4821" class="xref">RFC4821</a>]</span>. In contrast, a datagram PL that constructs a
probe packet has to either request an application to send a data block
that is larger than that generated by an application, or to utilize
padding functions to extend a datagram beyond the size of the
application data block. Protocols that permit exchange of control
messages (without an application data block) can generate a probe
packet by extending a control message with padding data. The total size
of a probe packet includes all headers and padding added to the payload
data being sent (e.g., including protocol option fields,
security-related fields such as an Authenticated Encryption with
Associated Data (AEAD) tag, and TLS record layer padding).<a href="#section-4.1-1" class="pilcrow">¶</a></p>
<p id="section-4.1-2">A receiver is <span class="bcp14">REQUIRED</span> to be able to distinguish an in-band data
block from any added padding. This is needed to ensure that any added
padding is not passed on to an application at the receiver.<a href="#section-4.1-2" class="pilcrow">¶</a></p>
<p id="section-4.1-3">This results in three possible ways that a sender can create a
probe packet:<a href="#section-4.1-3" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-4.1-4">
<dt id="section-4.1-4.1">Probing using padding data:</dt>
<dd style="margin-left: 1.5em" id="section-4.1-4.2">A probe packet that contains only control information together
with any padding, which is needed to inflate to the size
of the probe packet. Since these probe packets do not
carry an application-supplied data block, they do not typically
require retransmission, although they do still consume network
capacity and incur endpoint processing.<a href="#section-4.1-4.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-4.1-4.3">Probing using application data and padding data:</dt>
<dd style="margin-left: 1.5em" id="section-4.1-4.4">A probe packet that contains a data block supplied by an
application that is combined with padding to inflate the length of
the datagram to the size of the probe packet.<a href="#section-4.1-4.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-4.1-4.5">Probing using application data:</dt>
<dd style="margin-left: 1.5em" id="section-4.1-4.6">A probe packet that contains a data block supplied by an
application that matches the size of the probe packet.
This method requests the application to issue a data block of the
desired probe size.<a href="#section-4.1-4.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<p id="section-4.1-5">A PL that uses a probe packet carrying application data and that needs
protection from the loss of this probe packet could perform
transport-layer retransmission/repair of the data block (e.g., by
retransmitting after loss is detected or by duplicating the data block
in a datagram without the padding data). This retransmitted data block
might possibly need to be sent using a smaller PLPMTU, which could
force the PL to use a smaller packet size to traverse the end-to-end
path. (This could utilize endpoint network-layer fragmentation or a PL
that can resegment the data block into multiple datagrams).<a href="#section-4.1-5" class="pilcrow">¶</a></p>
<p id="section-4.1-6">DPLPMTUD <span class="bcp14">MAY</span> choose to use only one of these methods to simplify
the implementation.<a href="#section-4.1-6" class="pilcrow">¶</a></p>
<p id="section-4.1-7">Probe messages sent by a PL <span class="bcp14">MUST</span> contain enough information to
uniquely identify the probe within the Maximum Segment Lifetime (e.g.,
including a unique identifier from the PL or the DPLPMTUD
implementation), while being robust to reordering and replay of probe
response and PTB messages.<a href="#section-4.1-7" class="pilcrow">¶</a></p>
</section>
</div>
<div id="Valid">
<section id="section-4.2">
<h3 id="name-confirmation-of-probed-pack">
<a href="#section-4.2" class="section-number selfRef">4.2. </a><a href="#name-confirmation-of-probed-pack" class="section-name selfRef">Confirmation of Probed Packet Size</a>
</h3>
<p id="section-4.2-1">The PL needs a method to determine (confirm) when probe packets
have been successfully received end-to-end across a network path.<a href="#section-4.2-1" class="pilcrow">¶</a></p>
<p id="section-4.2-2">Transport protocols can include end-to-end methods that detect and
report reception of specific datagrams that they send (e.g., DCCP,
SCTP, and QUIC provide keep-alive/heartbeat features). When supported,
this mechanism <span class="bcp14">MAY</span> also be used by DPLPMTUD to acknowledge reception of
a probe packet.<a href="#section-4.2-2" class="pilcrow">¶</a></p>
<p id="section-4.2-3">A PL that does not acknowledge data reception (e.g., UDP and
UDP-Lite) is unable itself to detect when the packets that it sends
are discarded because their size is greater than the actual PMTU.
These PLs need to rely on an application protocol to detect
this loss.<a href="#section-4.2-3" class="pilcrow">¶</a></p>
<p id="section-4.2-4"><a href="#protocol_specific_methods" class="xref">Section 6</a> specifies this
function for a set of IETF-specified protocols.<a href="#section-4.2-4" class="pilcrow">¶</a></p>
</section>
</div>
<div id="mechanism-bhd">
<section id="section-4.3">
<h3 id="name-black-hole-detection-and-re">
<a href="#section-4.3" class="section-number selfRef">4.3. </a><a href="#name-black-hole-detection-and-re" class="section-name selfRef">Black Hole Detection and Reducing the PLPMTU</a>
</h3>
<p id="section-4.3-1"> The description that follows uses the set of constants defined in
<a href="#Constants" class="xref">Section 5.1.2</a> and variables defined in <a href="#Variables" class="xref">Section 5.1.3</a>.<a href="#section-4.3-1" class="pilcrow">¶</a></p>
<p id="section-4.3-2">Black hole detection is
triggered by an indication that the network path could be unable to
support the current PLPMTU size.<a href="#section-4.3-2" class="pilcrow">¶</a></p>
<p id="section-4.3-3">There are three indicators that can be used to detect black holes:<a href="#section-4.3-3" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-4.3-4.1">A validated PTB message can be received that indicates a PL_PTB_SIZE
less than the current PLPMTU. A DPLPMTUD method <span class="bcp14">MUST NOT</span> rely solely on
this method.<a href="#section-4.3-4.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-4.3-4.2">A PL can use the DPLPMTUD probing mechanism to periodically
generate probe packets of the size of the current PLPMTU (e.g.,
using the CONFIRMATION_TIMER, <a href="#Timers" class="xref">Section 5.1.1</a>). A
timer tracks whether acknowledgments are received. Successive loss
of probes is an indication that the current path no longer
supports the PLPMTU (e.g., when the number of probe packets sent
without receiving an acknowledgment, PROBE_COUNT, becomes greater
than MAX_PROBES).<a href="#section-4.3-4.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-4.3-4.3">A PL can utilize an event that indicates the network path no
longer sustains the sender's PLPMTU size. This could use a
mechanism implemented within the PL to detect excessive loss of
data sent with a specific packet size and then conclude that this
excessive loss could be a result of an invalid PLPMTU (as in
PLPMTUD for TCP <span>[<a href="#RFC4821" class="xref">RFC4821</a>]</span>).<a href="#section-4.3-4.3" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-4.3-5">The three methods can result in different transmission patterns for
packet probes and are expected to result in different responsiveness
following a change in the actual PMTU.<a href="#section-4.3-5" class="pilcrow">¶</a></p>
<p id="section-4.3-6">A PL <span class="bcp14">MAY</span> inhibit sending probe packets when no application data has
been sent since the previous probe packet. A PL that resumes sending
user data <span class="bcp14">MAY</span> continue PLPMTU discovery for each path. This allows it
to use an up-to-date PLPMTU. However, this could result in additional
packets being sent.<a href="#section-4.3-6" class="pilcrow">¶</a></p>
<p id="section-4.3-7">When the method detects that the current PLPMTU is not supported,
DPLPMTUD sets a lower PLPMTU and a lower MPS. The PL then
confirms that the new PLPMTU can be successfully used across the path.
A probe packet could need to be smaller than the size of the data
block generated by the application.<a href="#section-4.3-7" class="pilcrow">¶</a></p>
</section>
</div>
<div id="mps">
<section id="section-4.4">
<h3 id="name-the-maximum-packet-size-mps">
<a href="#section-4.4" class="section-number selfRef">4.4. </a><a href="#name-the-maximum-packet-size-mps" class="section-name selfRef">The Maximum Packet Size (MPS)</a>
</h3>
<p id="section-4.4-1"> The result of probing determines a usable PLPMTU, which is used to
set the MPS used by the application. The MPS is smaller than the
PLPMTU because it is reduced by the size of PL headers (including the
overhead of security-related fields such as an AEAD tag and TLS record
layer padding). The relationship between the MPS and the PLPMTUD is
illustrated in <a href="#fig-mps-relationship" class="xref">Figure 1</a>.<a href="#section-4.4-1" class="pilcrow">¶</a></p>
<span id="name-relationship-between-mps-an"></span><div id="fig-mps-relationship">
<figure id="figure-1">
<div id="section-4.4-2.1">
<div class="artwork art-svg alignLeft" id="section-4.4-2.1.1">
<svg xmlns="http://www.w3.org/2000/svg" class="diagram" version="1.1" viewBox="0 0 560.0 169.0">
<g transform="translate(8,16)">
<path d="M 144,16 L 168,16" fill="none" stroke="black"></path>
<path d="M 216,16 L 256,16" fill="none" stroke="black"></path>
<path d="M 16,64 L 264,64" fill="none" stroke="black"></path>
<path d="M 16,96 L 264,96" fill="none" stroke="black"></path>
<path d="M 104,128 L 144,128" fill="none" stroke="black"></path>
<path d="M 216,128 L 256,128" fill="none" stroke="black"></path>
<path d="M 16,144 L 96,144" fill="none" stroke="black"></path>
<path d="M 152,144 L 264,144" fill="none" stroke="black"></path>
<path d="M 16,64 L 16,96" fill="none" stroke="black"></path>
<path d="M 72,32 L 72,48" fill="none" stroke="black"></path>
<path d="M 144,16 L 144,48" fill="none" stroke="black"></path>
<path d="M 256,16 L 256,48" fill="none" stroke="black"></path>
<path d="M 264,64 L 264,96" fill="none" stroke="black"></path>
<polygon points="24.000000,144.000000 12.000000,138.399994 12.000000,149.600006" transform="rotate(180.000000, 16.000000, 144.000000)" fill="black"></polygon>
<path d="M 72,48 L 72,56" fill="none" stroke="black"></path>
<polygon points="88.000000,48.000000 76.000000,42.400002 76.000000,53.599998" transform="rotate(90.000000, 72.000000, 48.000000)" fill="black"></polygon>
<polygon points="112.000000,128.000000 100.000000,122.400002 100.000000,133.600006" transform="rotate(180.000000, 104.000000, 128.000000)" fill="black"></polygon>
<path d="M 144,48 L 144,56" fill="none" stroke="black"></path>
<polygon points="160.000000,48.000000 148.000000,42.400002 148.000000,53.599998" transform="rotate(90.000000, 144.000000, 48.000000)" fill="black"></polygon>
<path d="M 256,48 L 256,56" fill="none" stroke="black"></path>
<polygon points="272.000000,48.000000 260.000000,42.400002 260.000000,53.599998" transform="rotate(90.000000, 256.000000, 48.000000)" fill="black"></polygon>
<polygon points="264.000000,128.000000 252.000000,122.400002 252.000000,133.600006" transform="rotate(0.000000, 256.000000, 128.000000)" fill="black"></polygon>
<polygon points="272.000000,144.000000 260.000000,138.399994 260.000000,149.600006" transform="rotate(0.000000, 264.000000, 144.000000)" fill="black"></polygon>
<circle cx="72" cy="80" r="6" fill="black" stroke="black"></circle>
<circle cx="80" cy="80" r="6" fill="black" stroke="black"></circle>
<text text-anchor="middle" font-family="monospace" x="200" y="132" fill="black" font-size="1em">U</text>
<text text-anchor="middle" font-family="monospace" x="112" y="148" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="128" y="148" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="184" y="20" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="160" y="84" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="192" y="84" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="192" y="132" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="168" y="132" fill="black" font-size="1em">L</text>
<text text-anchor="middle" font-family="monospace" x="16" y="4" fill="black" font-size="1em">y</text>
<text text-anchor="middle" font-family="monospace" x="32" y="4" fill="black" font-size="1em">a</text>
<text text-anchor="middle" font-family="monospace" x="40" y="20" fill="black" font-size="1em">d</text>
<text text-anchor="middle" font-family="monospace" x="40" y="84" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="232" y="84" fill="black" font-size="1em">a</text>
<text text-anchor="middle" font-family="monospace" x="176" y="132" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="80" y="4" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="24" y="20" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="152" y="84" fill="black" font-size="1em">p</text>
<text text-anchor="middle" font-family="monospace" x="184" y="84" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="168" y="84" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="136" y="148" fill="black" font-size="1em">U</text>
<text text-anchor="middle" font-family="monospace" x="56" y="4" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="96" y="4" fill="black" font-size="1em">a</text>
<text text-anchor="middle" font-family="monospace" x="48" y="20" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="112" y="84" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="56" y="84" fill="black" font-size="1em">|</text>
<text text-anchor="middle" font-family="monospace" x="160" y="132" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="184" y="132" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="40" y="4" fill="black" font-size="1em">d</text>
<text text-anchor="middle" font-family="monospace" x="88" y="4" fill="black" font-size="1em">n</text>
<text text-anchor="middle" font-family="monospace" x="56" y="20" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="64" y="20" fill="black" font-size="1em">s</text>
<text text-anchor="middle" font-family="monospace" x="208" y="84" fill="black" font-size="1em">l</text>
<text text-anchor="middle" font-family="monospace" x="224" y="84" fill="black" font-size="1em">d</text>
<text text-anchor="middle" font-family="monospace" x="248" y="84" fill="black" font-size="1em">a</text>
<text text-anchor="middle" font-family="monospace" x="64" y="4" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="32" y="84" fill="black" font-size="1em">I</text>
<text text-anchor="middle" font-family="monospace" x="96" y="84" fill="black" font-size="1em">|</text>
<text text-anchor="middle" font-family="monospace" x="176" y="84" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="120" y="84" fill="black" font-size="1em">L</text>
<text text-anchor="middle" font-family="monospace" x="200" y="84" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="8" y="4" fill="black" font-size="1em">n</text>
<text text-anchor="middle" font-family="monospace" x="48" y="4" fill="black" font-size="1em">d</text>
<text text-anchor="middle" font-family="monospace" x="32" y="20" fill="black" font-size="1em">a</text>
<text text-anchor="middle" font-family="monospace" x="192" y="20" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="200" y="20" fill="black" font-size="1em">S</text>
<text text-anchor="middle" font-family="monospace" x="136" y="84" fill="black" font-size="1em">|</text>
<text text-anchor="middle" font-family="monospace" x="240" y="84" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="120" y="148" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="0" y="4" fill="black" font-size="1em">A</text>
<text text-anchor="middle" font-family="monospace" x="72" y="4" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="104" y="4" fill="black" font-size="1em">l</text>
<text text-anchor="middle" font-family="monospace" x="16" y="20" fill="black" font-size="1em">h</text>
</g>
</svg><a href="#section-4.4-2.1.1" class="pilcrow">¶</a>
</div>
</div>
<figcaption><a href="#figure-1" class="selfRef">Figure 1</a>:
<a href="#name-relationship-between-mps-an" class="selfRef">Relationship between MPS and PLPMTU</a>
</figcaption></figure>
</div>
<p id="section-4.4-3">A PL is unable to send a packet (other than a probe packet) with a
size larger than the current PLPMTU at the network layer. To avoid this,
a PL <span class="bcp14">MAY</span> be designed to segment data blocks larger than the MPS into
multiple datagrams.<a href="#section-4.4-3" class="pilcrow">¶</a></p>
<p id="section-4.4-4"> DPLPMTUD seeks to avoid IP fragmentation. An attempt to send a data
block larger than the MPS will therefore fail if a PL is unable to
segment data. To determine the largest data block that can be sent, a
PL <span class="bcp14">SHOULD</span> provide applications with a primitive that returns the MPS,
derived from the current PLPMTU.<a href="#section-4.4-4" class="pilcrow">¶</a></p>
<p id="section-4.4-5"> If DPLPMTUD results in a change to the MPS, the application needs
to adapt to the new MPS. A particular case can arise when packets have
been sent with a size less than the MPS and the PLPMTU was subsequently
reduced. If these packets are lost, the PL <span class="bcp14">MAY</span> segment the data using
the new MPS. If a PL is unable to resegment a previously sent datagram
(e.g., <span>[<a href="#RFC4960" class="xref">RFC4960</a>]</span>), then the sender either discards
the datagram or could perform retransmission using network-layer
fragmentation to form multiple IP packets not larger than the PLPMTU.
For IPv4, the use of endpoint fragmentation by the sender is preferred
over clearing the DF bit in the IPv4 header. Operational experience
reveals that IP fragmentation can reduce the reliability of Internet
communication <span>[<a href="#RFC8900" class="xref">RFC8900</a>]</span>,
which may reduce the probability of successful retransmission.<a href="#section-4.4-5" class="pilcrow">¶</a></p>
</section>
</div>
<div id="outgoingpmtu">
<section id="section-4.5">
<h3 id="name-disabling-the-effect-of-pmt">
<a href="#section-4.5" class="section-number selfRef">4.5. </a><a href="#name-disabling-the-effect-of-pmt" class="section-name selfRef">Disabling the Effect of PMTUD</a>
</h3>
<p id="section-4.5-1">A PL implementing this specification <span class="bcp14">MUST</span> suspend network layer
processing of outgoing packets that enforces a PMTU <span>[<a href="#RFC1191" class="xref">RFC1191</a>]</span><span>[<a href="#RFC8201" class="xref">RFC8201</a>]</span> for each flow
utilizing DPLPMTUD and instead use DPLPMTUD to control the size of
packets that are sent by a flow. This removes the need for the
network layer to drop or to fragment sent packets that have a size
greater than the PMTU.<a href="#section-4.5-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="mechanism-ptb">
<section id="section-4.6">
<h3 id="name-response-to-ptb-messages">
<a href="#section-4.6" class="section-number selfRef">4.6. </a><a href="#name-response-to-ptb-messages" class="section-name selfRef">Response to PTB Messages</a>
</h3>
<p id="section-4.6-1">This method requires the DPLPMTUD sender to validate any received
PTB message before using the PTB information. The response to a PTB
message depends on the PL_PTB_SIZE calculated from the PTB_SIZE in the
PTB message, the state of the PLPMTUD state machine, and the IP
protocol being used.<a href="#section-4.6-1" class="pilcrow">¶</a></p>
<p id="section-4.6-2"><a href="#PTB" class="xref">Section 4.6.1</a> describes validation for both IPv4
ICMP Unreachable messages (Type 3) and ICMPv6 Packet Too Big messages,
both of which are referred to as PTB messages in this document.<a href="#section-4.6-2" class="pilcrow">¶</a></p>
<div id="PTB">
<section id="section-4.6.1">
<h4 id="name-validation-of-ptb-messages">
<a href="#section-4.6.1" class="section-number selfRef">4.6.1. </a><a href="#name-validation-of-ptb-messages" class="section-name selfRef">Validation of PTB Messages</a>
</h4>
<p id="section-4.6.1-1">This section specifies utilization and validation of PTB messages.<a href="#section-4.6.1-1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-4.6.1-2.1">A simple implementation <span class="bcp14">MAY</span> ignore received PTB messages, and
in this case, the PLPMTU is not updated when a PTB message is
received.<a href="#section-4.6.1-2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-4.6.1-2.2">A PL that supports PTB messages <span class="bcp14">MUST</span> validate these messages
before they are further processed.<a href="#section-4.6.1-2.2" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-4.6.1-3">A PL that receives a PTB message from a router or middlebox
performs ICMP validation (see
<span><a href="https://www.rfc-editor.org/rfc/rfc8201#section-4" class="relref">Section 4</a> of [<a href="#RFC8201" class="xref">RFC8201</a>]</span> and
<span><a href="https://www.rfc-editor.org/rfc/rfc8085#section-5.2" class="relref">Section 5.2</a> of [<a href="#BCP145" class="xref">BCP145</a>]</span>).
Because DPLPMTUD operates at the PL, the
PL needs to check that each received PTB message is received in
response to a packet transmitted by the endpoint PL performing
DPLPMTUD.<a href="#section-4.6.1-3" class="pilcrow">¶</a></p>
<p id="section-4.6.1-4">The PL <span class="bcp14">MUST</span> check the protocol information in the quoted packet
carried in an ICMP PTB message payload to validate the message
originated from the sending node. This validation includes
determining that the combination of the IP addresses, the protocol, the
source port, and destination port match those returned in the
quoted packet -- this is also necessary for the PTB message to be
passed to the corresponding PL.<a href="#section-4.6.1-4" class="pilcrow">¶</a></p>
<p id="section-4.6.1-5">The validation <span class="bcp14">SHOULD</span> utilize information that is not simple
for an off-path attacker to determine <span>[<a href="#BCP145" class="xref">BCP145</a>]</span>. For example, it could check the value of a
protocol header field known only to the two PL endpoints. A datagram
application that uses well-known source and destination ports ought
to also rely on other information to complete this validation.<a href="#section-4.6.1-5" class="pilcrow">¶</a></p>
<p id="section-4.6.1-6">These checks are intended to provide protection from packets that
originate from a node that is not on the network path. A PTB message
that does not complete the validation <span class="bcp14">MUST NOT</span> be further utilized by
the DPLPMTUD method, as discussed in the Security Considerations
section (<a href="#Security" class="xref">Section 8</a>).<a href="#section-4.6.1-6" class="pilcrow">¶</a></p>
<p id="section-4.6.1-7"><a href="#validPTB_SIZE" class="xref">Section 4.6.2</a> describes this processing of
PTB messages.<a href="#section-4.6.1-7" class="pilcrow">¶</a></p>
</section>
</div>
<div id="validPTB_SIZE">
<section id="section-4.6.2">
<h4 id="name-use-of-ptb-messages">
<a href="#section-4.6.2" class="section-number selfRef">4.6.2. </a><a href="#name-use-of-ptb-messages" class="section-name selfRef">Use of PTB Messages</a>
</h4>
<p id="section-4.6.2-1">PTB messages that have been validated <span class="bcp14">MAY</span> be utilized by the
DPLPMTUD algorithm but <span class="bcp14">MUST NOT</span> be used directly to set the PLPMTU.<a href="#section-4.6.2-1" class="pilcrow">¶</a></p>
<p id="section-4.6.2-2">Before using the size reported in the PTB message, it must first be
converted to a PL_PTB_SIZE. The PL_PTB_SIZE is smaller than the
PTB_SIZE because it is reduced by headers below the PL, including any
IP options or extensions added to the PL packet.<a href="#section-4.6.2-2" class="pilcrow">¶</a></p>
<p id="section-4.6.2-3">A method that utilizes these PTB messages can improve the speed at
which the algorithm detects an appropriate PLPMTU by triggering an
immediate probe for the PL_PTB_SIZE (resulting in a network-layer
packet of size PTB_SIZE), compared to one that relies solely on
probing using a timer-based search algorithm.<a href="#section-4.6.2-3" class="pilcrow">¶</a></p>
<p id="section-4.6.2-4">A set of checks are intended to provide protection from a router
that reports an unexpected PTB_SIZE. The PL also needs to check that
the indicated PL_PTB_SIZE is less than the size used by probe packets
and at least the minimum size accepted.<a href="#section-4.6.2-4" class="pilcrow">¶</a></p>
<p id="section-4.6.2-5"> This section provides a summary of how PTB messages can be
utilized, using the set of constants defined in <a href="#Constants" class="xref">Section 5.1.2</a>.
This processing depends on the PL_PTB_SIZE and the current value of a set of variables:<a href="#section-4.6.2-5" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlNewline" id="section-4.6.2-6">
<dt id="section-4.6.2-6.1">PL_PTB_SIZE < MIN_PLPMTU</dt>
<dd style="margin-left: 1.5em" id="section-4.6.2-6.2">
<ul class="normal">
<li class="normal" id="section-4.6.2-6.2.1.1">Invalid PL_PTB_SIZE, see <a href="#PTB" class="xref">Section 4.6.1</a>.<a href="#section-4.6.2-6.2.1.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-4.6.2-6.2.1.2">PTB message ought to be discarded without further
processing (i.e., PLPMTU is not modified).<a href="#section-4.6.2-6.2.1.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-4.6.2-6.2.1.3">The information could be utilized as an input that
triggers the enabling of a resilience mode (see <a href="#Resilience" class="xref">Section 5.3.3</a>).<a href="#section-4.6.2-6.2.1.3" class="pilcrow">¶</a>
</li>
</ul>
</dd>
<dd class="break"></dd>
<dt id="section-4.6.2-6.3">MIN_PLPMTU < PL_PTB_SIZE < BASE_PLPMTU</dt>
<dd style="margin-left: 1.5em" id="section-4.6.2-6.4">
<ul class="normal">
<li class="normal" id="section-4.6.2-6.4.1.1">A robust PL <span class="bcp14">MAY</span> enter an error state (see <a href="#States" class="xref">Section 5.2</a>) for an IPv4 path when the PL_PTB_SIZE
reported in the PTB message is larger than or equal to 68
bytes <span>[<a href="#RFC0791" class="xref">RFC0791</a>]</span> and when this is less
than the BASE_PLPMTU.<a href="#section-4.6.2-6.4.1.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-4.6.2-6.4.1.2">A robust PL <span class="bcp14">MAY</span> enter an error state (see <a href="#States" class="xref">Section 5.2</a>) for an IPv6 path when the PL_PTB_SIZE
reported in the PTB message is larger than or equal to 1280
bytes <span>[<a href="#RFC8200" class="xref">RFC8200</a>]</span> and when this is less
than the BASE_PLPMTU.<a href="#section-4.6.2-6.4.1.2" class="pilcrow">¶</a>
</li>
</ul>
</dd>
<dd class="break"></dd>
<dt id="section-4.6.2-6.5">BASE_PLPMTU <= PL_PTB_SIZE < PLPMTU</dt>
<dd style="margin-left: 1.5em" id="section-4.6.2-6.6">
<ul class="normal">
<li class="normal" id="section-4.6.2-6.6.1.1">This could be an indication of a black hole. The PLPMTU
<span class="bcp14">SHOULD</span> be set to BASE_PLPMTU (the PLPMTU is reduced to the
BASE_PLPMTU to avoid unnecessary packet loss when a black hole
is encountered).<a href="#section-4.6.2-6.6.1.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-4.6.2-6.6.1.2"> The PL ought to start a search to quickly discover the
new PLPMTU. The PL_PTB_SIZE reported in the PTB message can be
used to initialize a search algorithm.<a href="#section-4.6.2-6.6.1.2" class="pilcrow">¶</a>
</li>
</ul>
</dd>
<dd class="break"></dd>
<dt id="section-4.6.2-6.7">PLPMTU < PL_PTB_SIZE < PROBED_SIZE</dt>
<dd style="margin-left: 1.5em" id="section-4.6.2-6.8">
<ul class="normal">
<li class="normal" id="section-4.6.2-6.8.1.1">The PLPMTU continues to be valid, but the size of a
packet used to search (PROBED_SIZE) was larger than the
actual PMTU.<a href="#section-4.6.2-6.8.1.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-4.6.2-6.8.1.2">The PLPMTU is not updated.<a href="#section-4.6.2-6.8.1.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-4.6.2-6.8.1.3">The PL can use the reported PL_PTB_SIZE from the PTB
message as the next search point when it resumes the search
algorithm.<a href="#section-4.6.2-6.8.1.3" class="pilcrow">¶</a>
</li>
</ul>
</dd>
<dd class="break"></dd>
<dt id="section-4.6.2-6.9">PL_PTB_SIZE >= PROBED_SIZE</dt>
<dd style="margin-left: 1.5em" id="section-4.6.2-6.10">
<ul class="normal">
<li class="normal" id="section-4.6.2-6.10.1.1">Inconsistent network signal.<a href="#section-4.6.2-6.10.1.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-4.6.2-6.10.1.2">PTB message ought to be discarded without further
processing (i.e., PLPMTU is not modified).<a href="#section-4.6.2-6.10.1.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-4.6.2-6.10.1.3">The information could be utilized as an input to trigger
the enabling of a resilience mode.<a href="#section-4.6.2-6.10.1.3" class="pilcrow">¶</a>
</li>
</ul>
</dd>
<dd class="break"></dd>
</dl>
</section>
</div>
</section>
</div>
</section>
</div>
<div id="Spec">
<section id="section-5">
<h2 id="name-datagram-packetization-laye">
<a href="#section-5" class="section-number selfRef">5. </a><a href="#name-datagram-packetization-laye" class="section-name selfRef">Datagram Packetization Layer PMTUD</a>
</h2>
<p id="section-5-1">This section specifies Datagram PLPMTUD (DPLPMTUD). The method can be
introduced at various points (as indicated with * in <a href="#fig-plpmtudimplement" class="xref">Figure 2</a>)
in the IP protocol stack to discover the PLPMTU so that an application
can utilize an appropriate MPS for the current network path.<a href="#section-5-1" class="pilcrow">¶</a></p>
<p id="section-5-2">DPLPMTUD <span class="bcp14">SHOULD</span> only be performed at one layer between a pair of
endpoints. Therefore, an upper PL or application should avoid using
DPLPMTUD when this is already enabled in a lower layer. A PL <span class="bcp14">MUST</span> adjust
the MPS indicated by DPLPMTUD to account for any additional overhead
introduced by the PL.<a href="#section-5-2" class="pilcrow">¶</a></p>
<span id="name-examples-where-dplpmtud-can"></span><div id="fig-plpmtudimplement">
<figure id="figure-2">
<div id="section-5-3.1">
<div class="artwork art-svg alignLeft" id="section-5-3.1.1">
<svg xmlns="http://www.w3.org/2000/svg" class="diagram" version="1.1" viewBox="0 0 600.0 281.0">
<g transform="translate(8,16)">
<path d="M 0,0 L 184,0" fill="none" stroke="black"></path>
<path d="M 0,32 L 48,32" fill="none" stroke="black"></path>
<path d="M 48,32 L 152,32" fill="none" stroke="black"></path>
<path d="M 152,32 L 184,32" fill="none" stroke="black"></path>
<path d="M 16,64 L 48,64" fill="none" stroke="black"></path>
<path d="M 48,64 L 72,64" fill="none" stroke="black"></path>
<path d="M 128,64 L 152,64" fill="none" stroke="black"></path>
<path d="M 152,64 L 176,64" fill="none" stroke="black"></path>
<path d="M 16,96 L 48,96" fill="none" stroke="black"></path>
<path d="M 48,96 L 72,96" fill="none" stroke="black"></path>
<path d="M 128,96 L 144,96" fill="none" stroke="black"></path>
<path d="M 144,96 L 160,96" fill="none" stroke="black"></path>
<path d="M 160,96 L 176,96" fill="none" stroke="black"></path>
<path d="M 48,128 L 80,128" fill="none" stroke="black"></path>
<path d="M 104,128 L 144,128" fill="none" stroke="black"></path>
<path d="M 64,160 L 80,160" fill="none" stroke="black"></path>
<path d="M 80,160 L 104,160" fill="none" stroke="black"></path>
<path d="M 104,160 L 120,160" fill="none" stroke="black"></path>
<path d="M 64,192 L 96,192" fill="none" stroke="black"></path>
<path d="M 96,192 L 120,192" fill="none" stroke="black"></path>
<path d="M 0,224 L 96,224" fill="none" stroke="black"></path>
<path d="M 96,224 L 160,224" fill="none" stroke="black"></path>
<path d="M 160,224 L 184,224" fill="none" stroke="black"></path>
<path d="M 0,256 L 184,256" fill="none" stroke="black"></path>
<path d="M 0,0 L 0,32" fill="none" stroke="black"></path>
<path d="M 0,224 L 0,256" fill="none" stroke="black"></path>
<path d="M 16,64 L 16,96" fill="none" stroke="black"></path>
<path d="M 48,32 L 48,64" fill="none" stroke="black"></path>
<path d="M 48,96 L 48,128" fill="none" stroke="black"></path>
<path d="M 64,160 L 64,192" fill="none" stroke="black"></path>
<path d="M 72,64 L 72,96" fill="none" stroke="black"></path>
<path d="M 80,128 L 80,160" fill="none" stroke="black"></path>
<path d="M 96,192 L 96,224" fill="none" stroke="black"></path>
<path d="M 104,128 L 104,160" fill="none" stroke="black"></path>
<path d="M 120,160 L 120,192" fill="none" stroke="black"></path>
<path d="M 128,64 L 128,96" fill="none" stroke="black"></path>
<path d="M 144,96 L 144,128" fill="none" stroke="black"></path>
<path d="M 152,32 L 152,64" fill="none" stroke="black"></path>
<path d="M 160,96 L 160,224" fill="none" stroke="black"></path>
<path d="M 176,64 L 176,96" fill="none" stroke="black"></path>
<path d="M 184,0 L 184,32" fill="none" stroke="black"></path>
<path d="M 184,224 L 184,256" fill="none" stroke="black"></path>
<text text-anchor="middle" font-family="monospace" x="88" y="180" fill="black" font-size="1em">D</text>
<text text-anchor="middle" font-family="monospace" x="136" y="244" fill="black" font-size="1em">a</text>
<text text-anchor="middle" font-family="monospace" x="128" y="20" fill="black" font-size="1em">n</text>
<text text-anchor="middle" font-family="monospace" x="136" y="20" fill="black" font-size="1em">*</text>
<text text-anchor="middle" font-family="monospace" x="40" y="84" fill="black" font-size="1em">U</text>
<text text-anchor="middle" font-family="monospace" x="64" y="244" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="88" y="244" fill="black" font-size="1em">I</text>
<text text-anchor="middle" font-family="monospace" x="112" y="244" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="144" y="244" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="56" y="20" fill="black" font-size="1em">p</text>
<text text-anchor="middle" font-family="monospace" x="120" y="20" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="160" y="84" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="152" y="244" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="48" y="84" fill="black" font-size="1em">I</text>
<text text-anchor="middle" font-family="monospace" x="168" y="84" fill="black" font-size="1em">*</text>
<text text-anchor="middle" font-family="monospace" x="104" y="244" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="32" y="84" fill="black" font-size="1em">Q</text>
<text text-anchor="middle" font-family="monospace" x="64" y="84" fill="black" font-size="1em">*</text>
<text text-anchor="middle" font-family="monospace" x="32" y="244" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="56" y="244" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="72" y="20" fill="black" font-size="1em">l</text>
<text text-anchor="middle" font-family="monospace" x="96" y="20" fill="black" font-size="1em">a</text>
<text text-anchor="middle" font-family="monospace" x="104" y="20" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="48" y="20" fill="black" font-size="1em">A</text>
<text text-anchor="middle" font-family="monospace" x="48" y="244" fill="black" font-size="1em">w</text>
<text text-anchor="middle" font-family="monospace" x="96" y="244" fill="black" font-size="1em">n</text>
<text text-anchor="middle" font-family="monospace" x="96" y="180" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="40" y="244" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="64" y="20" fill="black" font-size="1em">p</text>
<text text-anchor="middle" font-family="monospace" x="88" y="20" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="80" y="180" fill="black" font-size="1em">U</text>
<text text-anchor="middle" font-family="monospace" x="152" y="84" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="72" y="244" fill="black" font-size="1em">k</text>
<text text-anchor="middle" font-family="monospace" x="112" y="20" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="56" y="84" fill="black" font-size="1em">C</text>
<text text-anchor="middle" font-family="monospace" x="144" y="84" fill="black" font-size="1em">C</text>
<text text-anchor="middle" font-family="monospace" x="120" y="244" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="128" y="244" fill="black" font-size="1em">f</text>
<text text-anchor="middle" font-family="monospace" x="80" y="20" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="136" y="84" fill="black" font-size="1em">S</text>
<text text-anchor="middle" font-family="monospace" x="24" y="244" fill="black" font-size="1em">N</text>
</g>
</svg><a href="#section-5-3.1.1" class="pilcrow">¶</a>
</div>
</div>
<figcaption><a href="#figure-2" class="selfRef">Figure 2</a>:
<a href="#name-examples-where-dplpmtud-can" class="selfRef">Examples Where DPLPMTUD Can Be Implemented</a>
</figcaption></figure>
</div>
<p id="section-5-4">The central idea of DPLPMTUD is probing by a sender. Probe packets
are sent to find the maximum size of user message that can be
completely transferred across the network path from the sender to the
destination.<a href="#section-5-4" class="pilcrow">¶</a></p>
<p id="section-5-5">The following sections identify the components needed for
implementation, provide an overview of the phases of operation, and
specify the state machine and search algorithm.<a href="#section-5-5" class="pilcrow">¶</a></p>
<div id="dplpmtud-components">
<section id="section-5.1">
<h3 id="name-dplpmtud-components">
<a href="#section-5.1" class="section-number selfRef">5.1. </a><a href="#name-dplpmtud-components" class="section-name selfRef">DPLPMTUD Components</a>
</h3>
<p id="section-5.1-1">This section describes the timers, constants, and variables of
DPLPMTUD.<a href="#section-5.1-1" class="pilcrow">¶</a></p>
<div id="Timers">
<section id="section-5.1.1">
<h4 id="name-timers">
<a href="#section-5.1.1" class="section-number selfRef">5.1.1. </a><a href="#name-timers" class="section-name selfRef">Timers</a>
</h4>
<p id="section-5.1.1-1">The method utilizes up to three timers:<a href="#section-5.1.1-1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-5.1.1-2">
<dt id="section-5.1.1-2.1">PROBE_TIMER:</dt>
<dd style="margin-left: 1.5em" id="section-5.1.1-2.2">
<p id="section-5.1.1-2.2.1">The PROBE_TIMER is configured to expire after a period
longer than the maximum time to receive an acknowledgment to a
probe packet. This value <span class="bcp14">MUST NOT</span> be smaller than 1 second
and <span class="bcp14">SHOULD</span> be larger than 15 seconds. Guidance on the selection of
the timer value is provided in Section
<a href="https://www.rfc-editor.org/rfc/rfc8085#section-3.1.1" class="relref">3.1.1</a>
of the UDP Usage Guidelines <span>[<a href="#BCP145" class="xref">BCP145</a>]</span>.<a href="#section-5.1.1-2.2.1" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt id="section-5.1.1-2.3">PMTU_RAISE_TIMER:</dt>
<dd style="margin-left: 1.5em" id="section-5.1.1-2.4">
<p id="section-5.1.1-2.4.1">The PMTU_RAISE_TIMER is configured to the period a sender
will continue to use the current PLPMTU, after which it
reenters the Search Phase. This timer has a period of 600
seconds, as recommended by PLPMTUD <span>[<a href="#RFC4821" class="xref">RFC4821</a>]</span>.<a href="#section-5.1.1-2.4.1" class="pilcrow">¶</a></p>
<p id="section-5.1.1-2.4.2">DPLPMTUD <span class="bcp14">MAY</span> inhibit sending probe packets when no
application data has been sent since the previous probe
packet. A PL preferring to use an up-to-date PMTU once user
data is sent again can choose to continue PMTU discovery for
each path. However, this will result in sending additional
packets.<a href="#section-5.1.1-2.4.2" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt id="section-5.1.1-2.5">CONFIRMATION_TIMER:</dt>
<dd style="margin-left: 1.5em" id="section-5.1.1-2.6">
<p id="section-5.1.1-2.6.1">When an acknowledged PL is used, this timer <span class="bcp14">MUST NOT</span> be
used. For other PLs, the CONFIRMATION_TIMER is configured to
the period a PL sender waits before confirming the current
PLPMTU is still supported. This is less than the
PMTU_RAISE_TIMER and used to decrease the PLPMTU (e.g., when a
black hole is encountered). Confirmation needs to be frequent
enough when data is flowing that the sending PL does not black
hole extensive amounts of traffic. Guidance on selection of
the timer value are provided in Section
<a href="https://www.rfc-editor.org/rfc/rfc8085#section-3.1.1" class="relref">3.1.1</a>
of the UDP Usage Guidelines <span>[<a href="#BCP145" class="xref">BCP145</a>]</span>.<a href="#section-5.1.1-2.6.1" class="pilcrow">¶</a></p>
<p id="section-5.1.1-2.6.2">DPLPMTUD <span class="bcp14">MAY</span> inhibit sending probe packets when no
application data has been sent since the previous probe
packet. A PL preferring to use an up-to-date PMTU once user
data is sent again, can choose to continue PMTU discovery for
each path. However, this could result in sending additional
packets.<a href="#section-5.1.1-2.6.2" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
</dl>
<p id="section-5.1.1-3">DPLPMTUD specifies various timers; however, an implementation could
choose to realize these timer functions using a single timer.<a href="#section-5.1.1-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="Constants">
<section id="section-5.1.2">
<h4 id="name-constants">
<a href="#section-5.1.2" class="section-number selfRef">5.1.2. </a><a href="#name-constants" class="section-name selfRef">Constants</a>
</h4>
<p id="section-5.1.2-1">The following constants are defined:<a href="#section-5.1.2-1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-5.1.2-2">
<dt id="section-5.1.2-2.1">MAX_PROBES:</dt>
<dd style="margin-left: 1.5em" id="section-5.1.2-2.2">The MAX_PROBES is the maximum value of the PROBE_COUNT
counter (see <a href="#Variables" class="xref">Section 5.1.3</a>). MAX_PROBES represents
the limit for the number of consecutive probe attempts of any
size. Search algorithms benefit from a MAX_PROBES value greater
than 1 because this can provide robustness to isolated packet
loss. The default value of MAX_PROBES is 3.<a href="#section-5.1.2-2.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-5.1.2-2.3">MIN_PLPMTU:</dt>
<dd style="margin-left: 1.5em" id="section-5.1.2-2.4">The MIN_PLPMTU is the smallest size of PLPMTU that DPLPMTUD
will attempt to use. An endpoint could need to configure the
MIN_PLPMTU to provide space for extension headers and other
encapsulations at layers below the PL. This value can be
interface and path dependent. For IPv6, this size is greater
than or equal to the size at the PL that results in an 1280-byte
IPv6 packet, as specified in <span>[<a href="#RFC8200" class="xref">RFC8200</a>]</span>. For
IPv4, this size is greater than or equal to the size at the PL
that results in an 68-byte IPv4 packet. Note: An IPv4 router is
required to be able to forward a datagram of 68 bytes without
further fragmentation. This is the combined size of an IPv4
header and the minimum fragment size of 8 bytes. In addition,
receivers are required to be able to reassemble fragmented
datagrams at least up to 576 bytes, as stated in
<span><a href="https://www.rfc-editor.org/rfc/rfc1122#section-3.3.3" class="relref">Section 3.3.3</a> of [<a href="#RFC1122" class="xref">RFC1122</a>]</span>.<a href="#section-5.1.2-2.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-5.1.2-2.5">MAX_PLPMTU:</dt>
<dd style="margin-left: 1.5em" id="section-5.1.2-2.6">The MAX_PLPMTU is the largest size of PLPMTU. This has to be
less than or equal to the maximum size of the PL packet that can
be sent on the outgoing interface (constrained by the local
interface MTU). When known, this also ought to be less than the
maximum size of PL packet that can be received by the remote
endpoint (constrained by EMTU_R). It can be limited by the design
or configuration of the PL being used. An application, or PL,
<span class="bcp14">MAY</span> choose a smaller MAX_PLPMTU when there is no need to send
packets larger than a specific size.<a href="#section-5.1.2-2.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-5.1.2-2.7">BASE_PLPMTU:</dt>
<dd style="margin-left: 1.5em" id="section-5.1.2-2.8">The BASE_PLPMTU is a configured size expected to work for
most paths. The size is equal to or larger than the MIN_PLPMTU
and smaller than the MAX_PLPMTU. For most PLs, a suitable
BASE_PLPMTU will be larger than 1200 bytes. When using IPv4,
there is no currently equivalent size specified, and a default
BASE_PLPMTU of 1200 bytes is <span class="bcp14">RECOMMENDED</span>.<a href="#section-5.1.2-2.8" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
</section>
</div>
<div id="Variables">
<section id="section-5.1.3">
<h4 id="name-variables">
<a href="#section-5.1.3" class="section-number selfRef">5.1.3. </a><a href="#name-variables" class="section-name selfRef">Variables</a>
</h4>
<p id="section-5.1.3-1">This method utilizes a set of variables:<a href="#section-5.1.3-1" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-5.1.3-2">
<dt id="section-5.1.3-2.1">PROBED_SIZE:</dt>
<dd style="margin-left: 1.5em" id="section-5.1.3-2.2">The PROBED_SIZE is the size of the current probe packet as
determined at the PL. This is a tentative value for the PLPMTU,
which is awaiting confirmation by an acknowledgment.<a href="#section-5.1.3-2.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-5.1.3-2.3">PROBE_COUNT:</dt>
<dd style="margin-left: 1.5em" id="section-5.1.3-2.4">The PROBE_COUNT is a count of the number of successive
unsuccessful probe packets that have been sent. Each time a probe
packet is acknowledged, the value is set to zero. (Some probe
loss is expected while searching, therefore loss of a single
probe is not an indication of a PMTU problem.)<a href="#section-5.1.3-2.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<p id="section-5.1.3-3"><a href="#fig-mps" class="xref">Figure 3</a> illustrates the relationship between the packet
size constants and variables at a point of time when the DPLPMTUD
algorithm performs path probing to increase the size of the PLPMTU.
A probe packet has been sent of size PROBED_SIZE. Once this is
acknowledged, the PLPMTU will raise to PROBED_SIZE, allowing the
DPLPMTUD algorithm to further increase PROBED_SIZE toward sending a probe
with the size of the actual PMTU.<a href="#section-5.1.3-3" class="pilcrow">¶</a></p>
<span id="name-relationships-between-packe"></span><div id="fig-mps">
<figure id="figure-3">
<div id="section-5.1.3-4.1">
<div class="artwork art-svg alignLeft" id="section-5.1.3-4.1.1">
<svg xmlns="http://www.w3.org/2000/svg" class="diagram" version="1.1" viewBox="0 0 696.0 137.0">
<g transform="translate(8,16)">
<path d="M 56,16 L 408,16" fill="none" stroke="black"></path>
<path d="M 176,32 L 176,48" fill="none" stroke="black"></path>
<path d="M 248,32 L 248,96" fill="none" stroke="black"></path>
<path d="M 296,32 L 296,64" fill="none" stroke="black"></path>
<path d="M 176,24 L 176,32" fill="none" stroke="black"></path>
<path d="M 248,24 L 248,32" fill="none" stroke="black"></path>
<path d="M 296,24 L 296,32" fill="none" stroke="black"></path>
<polygon points="64.000000,16.000000 52.000000,10.400000 52.000000,21.600000" transform="rotate(180.000000, 56.000000, 16.000000)" fill="black"></polygon>
<polygon points="184.000000,48.000000 172.000000,42.400002 172.000000,53.599998" transform="rotate(90.000000, 176.000000, 48.000000)" fill="black"></polygon>
<polygon points="256.000000,96.000000 244.000000,90.400002 244.000000,101.599998" transform="rotate(90.000000, 248.000000, 96.000000)" fill="black"></polygon>
<polygon points="304.000000,64.000000 292.000000,58.400002 292.000000,69.599998" transform="rotate(90.000000, 296.000000, 64.000000)" fill="black"></polygon>
<polygon points="416.000000,16.000000 404.000000,10.400000 404.000000,21.600000" transform="rotate(0.000000, 408.000000, 16.000000)" fill="black"></polygon>
<text text-anchor="middle" font-family="monospace" x="400" y="4" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="416" y="4" fill="black" font-size="1em">L</text>
<text text-anchor="middle" font-family="monospace" x="192" y="68" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="288" y="84" fill="black" font-size="1em">O</text>
<text text-anchor="middle" font-family="monospace" x="352" y="84" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="232" y="116" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="272" y="116" fill="black" font-size="1em">U</text>
<text text-anchor="middle" font-family="monospace" x="56" y="4" fill="black" font-size="1em">N</text>
<text text-anchor="middle" font-family="monospace" x="80" y="4" fill="black" font-size="1em">L</text>
<text text-anchor="middle" font-family="monospace" x="320" y="84" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="336" y="84" fill="black" font-size="1em">I</text>
<text text-anchor="middle" font-family="monospace" x="344" y="84" fill="black" font-size="1em">Z</text>
<text text-anchor="middle" font-family="monospace" x="88" y="4" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="96" y="4" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="392" y="4" fill="black" font-size="1em">X</text>
<text text-anchor="middle" font-family="monospace" x="424" y="4" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="448" y="4" fill="black" font-size="1em">U</text>
<text text-anchor="middle" font-family="monospace" x="152" y="68" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="304" y="84" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="64" y="4" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="384" y="4" fill="black" font-size="1em">A</text>
<text text-anchor="middle" font-family="monospace" x="128" y="68" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="312" y="84" fill="black" font-size="1em">D</text>
<text text-anchor="middle" font-family="monospace" x="240" y="116" fill="black" font-size="1em">L</text>
<text text-anchor="middle" font-family="monospace" x="264" y="116" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="72" y="4" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="104" y="4" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="432" y="4" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="144" y="68" fill="black" font-size="1em">S</text>
<text text-anchor="middle" font-family="monospace" x="184" y="68" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="200" y="68" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="296" y="84" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="248" y="116" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="40" y="4" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="48" y="4" fill="black" font-size="1em">I</text>
<text text-anchor="middle" font-family="monospace" x="160" y="68" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="328" y="84" fill="black" font-size="1em">S</text>
<text text-anchor="middle" font-family="monospace" x="112" y="4" fill="black" font-size="1em">U</text>
<text text-anchor="middle" font-family="monospace" x="440" y="4" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="136" y="68" fill="black" font-size="1em">A</text>
<text text-anchor="middle" font-family="monospace" x="208" y="68" fill="black" font-size="1em">U</text>
<text text-anchor="middle" font-family="monospace" x="280" y="84" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="256" y="116" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="376" y="4" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="408" y="4" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="168" y="68" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="176" y="68" fill="black" font-size="1em">L</text>
<text text-anchor="middle" font-family="monospace" x="272" y="84" fill="black" font-size="1em">P</text>
</g>
</svg><a href="#section-5.1.3-4.1.1" class="pilcrow">¶</a>
</div>
</div>
<figcaption><a href="#figure-3" class="selfRef">Figure 3</a>:
<a href="#name-relationships-between-packe" class="selfRef">Relationships between Packet Size Constants and Variables</a>
</figcaption></figure>
</div>
</section>
</div>
<div id="phases">
<section id="section-5.1.4">
<h4 id="name-overview-of-dplpmtud-phases">
<a href="#section-5.1.4" class="section-number selfRef">5.1.4. </a><a href="#name-overview-of-dplpmtud-phases" class="section-name selfRef">Overview of DPLPMTUD Phases</a>
</h4>
<p id="section-5.1.4-1">This section provides a high-level, informative view of the
DPLPMTUD method, by describing the movement of the method through
several phases of operation. More detail is available in the state
machine, <a href="#States" class="xref">Section 5.2</a>.<a href="#section-5.1.4-1" class="pilcrow">¶</a></p>
<span id="name-dplpmtud-phases"></span><div id="fig-phases">
<figure id="figure-4">
<div id="section-5.1.4-2.1">
<div class="artwork art-svg alignLeft" id="section-5.1.4-2.1.1">
<svg xmlns="http://www.w3.org/2000/svg" class="diagram" version="1.1" viewBox="0 0 670.0 377.0">
<g transform="translate(8,16)">
<path d="M 160,0 L 216,0" fill="none" stroke="black"></path>
<path d="M 88,16 L 152,16" fill="none" stroke="black"></path>
<path d="M 224,16 L 360,16" fill="none" stroke="black"></path>
<path d="M 160,32 L 216,32" fill="none" stroke="black"></path>
<path d="M 328,80 L 392,80" fill="none" stroke="black"></path>
<path d="M 328,112 L 392,112" fill="none" stroke="black"></path>
<path d="M 152,160 L 224,160" fill="none" stroke="black"></path>
<path d="M 232,176 L 360,176" fill="none" stroke="black"></path>
<path d="M 152,192 L 224,192" fill="none" stroke="black"></path>
<path d="M 120,320 L 264,320" fill="none" stroke="black"></path>
<path d="M 88,336 L 112,336" fill="none" stroke="black"></path>
<path d="M 120,352 L 264,352" fill="none" stroke="black"></path>
<path d="M 88,16 L 88,336" fill="none" stroke="black"></path>
<path d="M 120,320 L 120,352" fill="none" stroke="black"></path>
<path d="M 152,160 L 152,192" fill="none" stroke="black"></path>
<path d="M 160,0 L 160,32" fill="none" stroke="black"></path>
<path d="M 176,208 L 176,304" fill="none" stroke="black"></path>
<path d="M 184,48 L 184,144" fill="none" stroke="black"></path>
<path d="M 200,208 L 200,304" fill="none" stroke="black"></path>
<path d="M 216,0 L 216,32" fill="none" stroke="black"></path>
<path d="M 224,160 L 224,192" fill="none" stroke="black"></path>
<path d="M 264,320 L 264,352" fill="none" stroke="black"></path>
<path d="M 328,80 L 328,112" fill="none" stroke="black"></path>
<path d="M 360,16 L 360,64" fill="none" stroke="black"></path>
<path d="M 360,128 L 360,176" fill="none" stroke="black"></path>
<path d="M 392,80 L 392,112" fill="none" stroke="black"></path>
<path d="M 176,304 L 176,312" fill="none" stroke="black"></path>
<path d="M 184,40 L 184,48" fill="none" stroke="black"></path>
<path d="M 200,200 L 200,208" fill="none" stroke="black"></path>
<path d="M 360,120 L 360,128" fill="none" stroke="black"></path>
<polygon points="160.000000,16.000000 148.000000,10.400000 148.000000,21.600000" transform="rotate(0.000000, 152.000000, 16.000000)" fill="black"></polygon>
<path d="M 176,200 L 176,208" fill="none" stroke="black"></path>
<polygon points="192.000000,208.000000 180.000000,202.399994 180.000000,213.600006" transform="rotate(270.000000, 176.000000, 208.000000)" fill="black"></polygon>
<path d="M 184,144 L 184,152" fill="none" stroke="black"></path>
<polygon points="200.000000,144.000000 188.000000,138.399994 188.000000,149.600006" transform="rotate(90.000000, 184.000000, 144.000000)" fill="black"></polygon>
<path d="M 200,304 L 200,312" fill="none" stroke="black"></path>
<polygon points="216.000000,304.000000 204.000000,298.399994 204.000000,309.600006" transform="rotate(90.000000, 200.000000, 304.000000)" fill="black"></polygon>
<polygon points="240.000000,176.000000 228.000000,170.399994 228.000000,181.600006" transform="rotate(180.000000, 232.000000, 176.000000)" fill="black"></polygon>
<path d="M 360,64 L 360,72" fill="none" stroke="black"></path>
<polygon points="376.000000,64.000000 364.000000,58.400002 364.000000,69.599998" transform="rotate(90.000000, 360.000000, 64.000000)" fill="black"></polygon>
<text text-anchor="middle" font-family="monospace" x="272" y="100" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="456" y="148" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="376" y="164" fill="black" font-size="1em">a</text>
<text text-anchor="middle" font-family="monospace" x="168" y="180" fill="black" font-size="1em">S</text>
<text text-anchor="middle" font-family="monospace" x="232" y="244" fill="black" font-size="1em">a</text>
<text text-anchor="middle" font-family="monospace" x="216" y="276" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="152" y="340" fill="black" font-size="1em">a</text>
<text text-anchor="middle" font-family="monospace" x="240" y="84" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="192" y="180" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="440" y="20" fill="black" font-size="1em">v</text>
<text text-anchor="middle" font-family="monospace" x="280" y="260" fill="black" font-size="1em">m</text>
<text text-anchor="middle" font-family="monospace" x="272" y="84" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="256" y="100" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="248" y="116" fill="black" font-size="1em">m</text>
<text text-anchor="middle" font-family="monospace" x="424" y="132" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="464" y="52" fill="black" font-size="1em">n</text>
<text text-anchor="middle" font-family="monospace" x="392" y="148" fill="black" font-size="1em">n</text>
<text text-anchor="middle" font-family="monospace" x="384" y="52" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="448" y="148" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="224" y="276" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="376" y="36" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="296" y="100" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="16" y="180" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="256" y="276" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="48" y="164" fill="black" font-size="1em">H</text>
<text text-anchor="middle" font-family="monospace" x="480" y="164" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="192" y="340" fill="black" font-size="1em">C</text>
<text text-anchor="middle" font-family="monospace" x="392" y="52" fill="black" font-size="1em">n</text>
<text text-anchor="middle" font-family="monospace" x="400" y="148" fill="black" font-size="1em">n</text>
<text text-anchor="middle" font-family="monospace" x="232" y="340" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="480" y="36" fill="black" font-size="1em">U</text>
<text text-anchor="middle" font-family="monospace" x="344" y="100" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="464" y="148" fill="black" font-size="1em">y</text>
<text text-anchor="middle" font-family="monospace" x="448" y="164" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="256" y="260" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="312" y="100" fill="black" font-size="1em">U</text>
<text text-anchor="middle" font-family="monospace" x="264" y="84" fill="black" font-size="1em">v</text>
<text text-anchor="middle" font-family="monospace" x="8" y="180" fill="black" font-size="1em">d</text>
<text text-anchor="middle" font-family="monospace" x="176" y="340" fill="black" font-size="1em">h</text>
<text text-anchor="middle" font-family="monospace" x="376" y="20" fill="black" font-size="1em">C</text>
<text text-anchor="middle" font-family="monospace" x="256" y="84" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="368" y="100" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="432" y="132" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="8" y="164" fill="black" font-size="1em">l</text>
<text text-anchor="middle" font-family="monospace" x="416" y="164" fill="black" font-size="1em">A</text>
<text text-anchor="middle" font-family="monospace" x="440" y="164" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="184" y="180" fill="black" font-size="1em">a</text>
<text text-anchor="middle" font-family="monospace" x="200" y="180" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="280" y="276" fill="black" font-size="1em">d</text>
<text text-anchor="middle" font-family="monospace" x="160" y="260" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="248" y="260" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="392" y="20" fill="black" font-size="1em">n</text>
<text text-anchor="middle" font-family="monospace" x="288" y="84" fill="black" font-size="1em">y</text>
<text text-anchor="middle" font-family="monospace" x="392" y="132" fill="black" font-size="1em">n</text>
<text text-anchor="middle" font-family="monospace" x="136" y="260" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="112" y="276" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="416" y="20" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="248" y="100" fill="black" font-size="1em">S</text>
<text text-anchor="middle" font-family="monospace" x="224" y="244" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="152" y="276" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="176" y="20" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="488" y="52" fill="black" font-size="1em">a</text>
<text text-anchor="middle" font-family="monospace" x="216" y="100" fill="black" font-size="1em">d</text>
<text text-anchor="middle" font-family="monospace" x="384" y="132" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="464" y="164" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="488" y="164" fill="black" font-size="1em">U</text>
<text text-anchor="middle" font-family="monospace" x="408" y="180" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="216" y="244" fill="black" font-size="1em">S</text>
<text text-anchor="middle" font-family="monospace" x="400" y="36" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="384" y="148" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="384" y="180" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="160" y="276" fill="black" font-size="1em">d</text>
<text text-anchor="middle" font-family="monospace" x="224" y="340" fill="black" font-size="1em">l</text>
<text text-anchor="middle" font-family="monospace" x="408" y="20" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="416" y="36" fill="black" font-size="1em">S</text>
<text text-anchor="middle" font-family="monospace" x="408" y="52" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="128" y="276" fill="black" font-size="1em">p</text>
<text text-anchor="middle" font-family="monospace" x="408" y="164" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="208" y="180" fill="black" font-size="1em">h</text>
<text text-anchor="middle" font-family="monospace" x="360" y="100" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="400" y="20" fill="black" font-size="1em">n</text>
<text text-anchor="middle" font-family="monospace" x="480" y="52" fill="black" font-size="1em">f</text>
<text text-anchor="middle" font-family="monospace" x="352" y="100" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="264" y="276" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="160" y="340" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="280" y="84" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="456" y="36" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="520" y="52" fill="black" font-size="1em">d</text>
<text text-anchor="middle" font-family="monospace" x="216" y="84" fill="black" font-size="1em">n</text>
<text text-anchor="middle" font-family="monospace" x="264" y="100" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="200" y="116" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="448" y="132" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="408" y="148" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="64" y="164" fill="black" font-size="1em">l</text>
<text text-anchor="middle" font-family="monospace" x="272" y="276" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="400" y="180" fill="black" font-size="1em">f</text>
<text text-anchor="middle" font-family="monospace" x="144" y="244" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="448" y="52" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="448" y="20" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="280" y="100" fill="black" font-size="1em">L</text>
<text text-anchor="middle" font-family="monospace" x="32" y="164" fill="black" font-size="1em">k</text>
<text text-anchor="middle" font-family="monospace" x="456" y="164" fill="black" font-size="1em">L</text>
<text text-anchor="middle" font-family="monospace" x="128" y="260" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="176" y="180" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="240" y="244" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="464" y="36" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="232" y="84" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="416" y="148" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="48" y="180" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="16" y="164" fill="black" font-size="1em">a</text>
<text text-anchor="middle" font-family="monospace" x="64" y="180" fill="black" font-size="1em">d</text>
<text text-anchor="middle" font-family="monospace" x="424" y="36" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="72" y="164" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="472" y="164" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="208" y="100" fill="black" font-size="1em">n</text>
<text text-anchor="middle" font-family="monospace" x="424" y="164" fill="black" font-size="1em">S</text>
<text text-anchor="middle" font-family="monospace" x="136" y="340" fill="black" font-size="1em">S</text>
<text text-anchor="middle" font-family="monospace" x="496" y="52" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="240" y="100" fill="black" font-size="1em">A</text>
<text text-anchor="middle" font-family="monospace" x="40" y="180" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="432" y="180" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="136" y="244" fill="black" font-size="1em">a</text>
<text text-anchor="middle" font-family="monospace" x="136" y="276" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="200" y="84" fill="black" font-size="1em">C</text>
<text text-anchor="middle" font-family="monospace" x="232" y="116" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="256" y="116" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="408" y="132" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="416" y="132" fill="black" font-size="1em">s</text>
<text text-anchor="middle" font-family="monospace" x="376" y="148" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="248" y="244" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="144" y="260" fill="black" font-size="1em">m</text>
<text text-anchor="middle" font-family="monospace" x="144" y="276" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="224" y="84" fill="black" font-size="1em">n</text>
<text text-anchor="middle" font-family="monospace" x="216" y="116" fill="black" font-size="1em">n</text>
<text text-anchor="middle" font-family="monospace" x="224" y="116" fill="black" font-size="1em">f</text>
<text text-anchor="middle" font-family="monospace" x="216" y="260" fill="black" font-size="1em">a</text>
<text text-anchor="middle" font-family="monospace" x="376" y="52" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="0" y="164" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="256" y="244" fill="black" font-size="1em">h</text>
<text text-anchor="middle" font-family="monospace" x="264" y="260" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="432" y="20" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="240" y="340" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="248" y="340" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="432" y="36" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="288" y="100" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="416" y="180" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="128" y="244" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="400" y="52" fill="black" font-size="1em">f</text>
<text text-anchor="middle" font-family="monospace" x="456" y="52" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="384" y="164" fill="black" font-size="1em">n</text>
<text text-anchor="middle" font-family="monospace" x="384" y="20" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="408" y="36" fill="black" font-size="1em">A</text>
<text text-anchor="middle" font-family="monospace" x="472" y="36" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="432" y="148" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="440" y="180" fill="black" font-size="1em">d</text>
<text text-anchor="middle" font-family="monospace" x="248" y="276" fill="black" font-size="1em">l</text>
<text text-anchor="middle" font-family="monospace" x="504" y="52" fill="black" font-size="1em">l</text>
<text text-anchor="middle" font-family="monospace" x="304" y="100" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="448" y="36" fill="black" font-size="1em">L</text>
<text text-anchor="middle" font-family="monospace" x="432" y="164" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="168" y="340" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="184" y="20" fill="black" font-size="1em">a</text>
<text text-anchor="middle" font-family="monospace" x="200" y="20" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="456" y="20" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="424" y="52" fill="black" font-size="1em">m</text>
<text text-anchor="middle" font-family="monospace" x="512" y="52" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="208" y="84" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="248" y="84" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="424" y="180" fill="black" font-size="1em">m</text>
<text text-anchor="middle" font-family="monospace" x="120" y="276" fill="black" font-size="1em">x</text>
<text text-anchor="middle" font-family="monospace" x="264" y="116" fill="black" font-size="1em">d</text>
<text text-anchor="middle" font-family="monospace" x="424" y="148" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="56" y="164" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="56" y="180" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="152" y="244" fill="black" font-size="1em">s</text>
<text text-anchor="middle" font-family="monospace" x="208" y="340" fill="black" font-size="1em">m</text>
<text text-anchor="middle" font-family="monospace" x="424" y="20" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="232" y="260" fill="black" font-size="1em">g</text>
<text text-anchor="middle" font-family="monospace" x="200" y="340" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="392" y="164" fill="black" font-size="1em">d</text>
<text text-anchor="middle" font-family="monospace" x="232" y="276" fill="black" font-size="1em">m</text>
<text text-anchor="middle" font-family="monospace" x="440" y="36" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="432" y="52" fill="black" font-size="1em">a</text>
<text text-anchor="middle" font-family="monospace" x="240" y="116" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="24" y="164" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="224" y="260" fill="black" font-size="1em">l</text>
<text text-anchor="middle" font-family="monospace" x="240" y="260" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="144" y="340" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="400" y="132" fill="black" font-size="1em">s</text>
<text text-anchor="middle" font-family="monospace" x="272" y="260" fill="black" font-size="1em">h</text>
<text text-anchor="middle" font-family="monospace" x="416" y="52" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="376" y="100" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="240" y="276" fill="black" font-size="1em">p</text>
<text text-anchor="middle" font-family="monospace" x="440" y="52" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="208" y="116" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="392" y="180" fill="black" font-size="1em">n</text>
<text text-anchor="middle" font-family="monospace" x="192" y="20" fill="black" font-size="1em">s</text>
<text text-anchor="middle" font-family="monospace" x="200" y="100" fill="black" font-size="1em">a</text>
<text text-anchor="middle" font-family="monospace" x="376" y="132" fill="black" font-size="1em">C</text>
<text text-anchor="middle" font-family="monospace" x="440" y="132" fill="black" font-size="1em">n</text>
<text text-anchor="middle" font-family="monospace" x="440" y="148" fill="black" font-size="1em">v</text>
<text text-anchor="middle" font-family="monospace" x="24" y="180" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="32" y="180" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="376" y="180" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="152" y="260" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="464" y="20" fill="black" font-size="1em">y</text>
<text text-anchor="middle" font-family="monospace" x="384" y="36" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="232" y="100" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="160" y="244" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="216" y="340" fill="black" font-size="1em">p</text>
</g>
</svg><a href="#section-5.1.4-2.1.1" class="pilcrow">¶</a>
</div>
</div>
<figcaption><a href="#figure-4" class="selfRef">Figure 4</a>:
<a href="#name-dplpmtud-phases" class="selfRef">DPLPMTUD Phases</a>
</figcaption></figure>
</div>
<span class="break"></span><dl class="dlParallel" id="section-5.1.4-3">
<dt id="section-5.1.4-3.1">Base:</dt>
<dd style="margin-left: 1.5em" id="section-5.1.4-3.2">
<p id="section-5.1.4-3.2.1">The Base Phase confirms connectivity to the remote peer
using packets of the BASE_PLPMTU. The confirmation of
connectivity is implicit for a connection-oriented PL (where it
can be performed in a PL connection handshake). A
connectionless PL sends a probe packet and uses acknowledgment
of this probe packet to confirm that the remote peer is
reachable.<a href="#section-5.1.4-3.2.1" class="pilcrow">¶</a></p>
<p id="section-5.1.4-3.2.2">The sender also confirms that BASE_PLPMTU is supported across
the network path. This may be achieved by using a PL mechanism
(e.g., using a handshake packet of size BASE_PLPMTU) or by
sending a probe packet of size BASE_PLPMTU and confirming that
this is received.<a href="#section-5.1.4-3.2.2" class="pilcrow">¶</a></p>
<p id="section-5.1.4-3.2.3">A probe packet of size BASE_PLPMTU can be sent immediately
on the initial entry to the Base Phase (following a
connectivity check). A PL that does not wish to support a path
with a PLPMTU less than BASE_PLPMTU can simplify the phase into
a single step by performing the connectivity checks with a
probe of the BASE_PLPMTU size.<a href="#section-5.1.4-3.2.3" class="pilcrow">¶</a></p>
<p id="section-5.1.4-3.2.4">Once confirmed, DPLPMTUD enters the Search Phase. If the
Base Phase fails to confirm the BASE_PLPMTU, DPLPMTUD enters
the Error Phase.<a href="#section-5.1.4-3.2.4" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt id="section-5.1.4-3.3">Search:</dt>
<dd style="margin-left: 1.5em" id="section-5.1.4-3.4">
<p id="section-5.1.4-3.4.1">The Search Phase utilizes a search algorithm to send probe
packets to seek to increase the PLPMTU. The algorithm
concludes when it has found a suitable PLPMTU by entering the
Search Complete Phase.<a href="#section-5.1.4-3.4.1" class="pilcrow">¶</a></p>
<p id="section-5.1.4-3.4.2">A PL could respond to PTB messages using the PTB to advance
or terminate the search, see <a href="#mechanism-ptb" class="xref">Section 4.6</a>.<a href="#section-5.1.4-3.4.2" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt id="section-5.1.4-3.5">Search Complete:</dt>
<dd style="margin-left: 1.5em" id="section-5.1.4-3.6">
<p id="section-5.1.4-3.6.1">The Search Complete Phase is entered when the PLPMTU is
supported across the network path. A PL can use a
CONFIRMATION_TIMER to periodically repeat a probe packet for
the current PLPMTU size. If the sender is unable to confirm
reachability (e.g., if the CONFIRMATION_TIMER expires) or the
PL signals a lack of reachability, a black hole has been
detected and DPLPMTUD enters the Base Phase.<a href="#section-5.1.4-3.6.1" class="pilcrow">¶</a></p>
<p id="section-5.1.4-3.6.2">The PMTU_RAISE_TIMER is used to periodically resume the
Search Phase to discover if the PLPMTU can be raised. Black
hole detection causes the sender to enter the Base Phase.<a href="#section-5.1.4-3.6.2" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt id="section-5.1.4-3.7">Error:</dt>
<dd style="margin-left: 1.5em" id="section-5.1.4-3.8">
<p id="section-5.1.4-3.8.1">The Error Phase is entered when there is conflicting or
invalid PLPMTU information for the path (e.g., a failure to
support the BASE_PLPMTU) that causes DPLPMTUD to be unable to
progress, and the PLPMTU is lowered.<a href="#section-5.1.4-3.8.1" class="pilcrow">¶</a></p>
<p id="section-5.1.4-3.8.2">DPLPMTUD remains in the Error Phase until a consistent view
of the path can be discovered and it has also been confirmed
that the path supports the BASE_PLPMTU (or DPLPMTUD is
suspended).<a href="#section-5.1.4-3.8.2" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
</dl>
<p id="section-5.1.4-4"> A method that only reduces the PLPMTU to a suitable size would be
sufficient to ensure reliable operation but can be very inefficient
when the actual PMTU changes or when the method (for whatever reason)
makes a suboptimal choice for the PLPMTU.<a href="#section-5.1.4-4" class="pilcrow">¶</a></p>
<p id="section-5.1.4-5">A full implementation of DPLPMTUD provides an algorithm enabling
the DPLPMTUD sender to increase the PLPMTU following a change in the
characteristics of the path, such as when a link is reconfigured
with a larger MTU, or when there is a change in the set of links
traversed by an end-to-end flow (e.g., after a routing or path
failover decision).<a href="#section-5.1.4-5" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="States">
<section id="section-5.2">
<h3 id="name-state-machine">
<a href="#section-5.2" class="section-number selfRef">5.2. </a><a href="#name-state-machine" class="section-name selfRef">State Machine</a>
</h3>
<p id="section-5.2-1">A state machine for DPLPMTUD is depicted in <a href="#fig-states" class="xref">Figure 5</a>. If multipath or multihoming is supported,
a state machine is needed for each path.<a href="#section-5.2-1" class="pilcrow">¶</a></p>
<p id="section-5.2-2">Note: Not all changes are shown to simplify the
diagram.<a href="#section-5.2-2" class="pilcrow">¶</a></p>
<span id="name-state-machine-for-datagram-"></span><div id="fig-states">
<figure id="figure-5">
<div id="section-5.2-3.1">
<div class="artwork art-svg alignLeft" id="section-5.2-3.1.1">
<svg xmlns="http://www.w3.org/2000/svg" class="diagram" version="1.1" viewBox="0 0 700.0 633.0">
<g transform="translate(8,16)">
<path d="M 0,64 L 128,64" fill="none" stroke="black"></path>
<path d="M 416,64 L 544,64" fill="none" stroke="black"></path>
<path d="M 0,96 L 128,96" fill="none" stroke="black"></path>
<path d="M 416,96 L 544,96" fill="none" stroke="black"></path>
<path d="M 64,144 L 232,144" fill="none" stroke="black"></path>
<path d="M 312,144 L 440,144" fill="none" stroke="black"></path>
<path d="M 208,192 L 336,192" fill="none" stroke="black"></path>
<path d="M 344,208 L 512,208" fill="none" stroke="black"></path>
<path d="M 208,224 L 336,224" fill="none" stroke="black"></path>
<path d="M 64,272 L 232,272" fill="none" stroke="black"></path>
<path d="M 312,272 L 480,272" fill="none" stroke="black"></path>
<path d="M 248,288 L 288,288" fill="none" stroke="black"></path>
<path d="M 104,368 L 440,368" fill="none" stroke="black"></path>
<path d="M 0,416 L 128,416" fill="none" stroke="black"></path>
<path d="M 416,416 L 544,416" fill="none" stroke="black"></path>
<path d="M 0,448 L 128,448" fill="none" stroke="black"></path>
<path d="M 416,448 L 544,448" fill="none" stroke="black"></path>
<path d="M 104,496 L 440,496" fill="none" stroke="black"></path>
<path d="M 24,544 L 64,544" fill="none" stroke="black"></path>
<path d="M 480,544 L 520,544" fill="none" stroke="black"></path>
<path d="M 0,64 L 0,96" fill="none" stroke="black"></path>
<path d="M 0,416 L 0,448" fill="none" stroke="black"></path>
<path d="M 24,0 L 24,48" fill="none" stroke="black"></path>
<path d="M 24,464 L 24,544" fill="none" stroke="black"></path>
<path d="M 64,112 L 64,144" fill="none" stroke="black"></path>
<path d="M 64,272 L 64,400" fill="none" stroke="black"></path>
<path d="M 64,464 L 64,544" fill="none" stroke="black"></path>
<path d="M 104,0 L 104,48" fill="none" stroke="black"></path>
<path d="M 104,368 L 104,400" fill="none" stroke="black"></path>
<path d="M 104,464 L 104,496" fill="none" stroke="black"></path>
<path d="M 128,64 L 128,96" fill="none" stroke="black"></path>
<path d="M 128,416 L 128,448" fill="none" stroke="black"></path>
<path d="M 208,192 L 208,224" fill="none" stroke="black"></path>
<path d="M 232,144 L 232,176" fill="none" stroke="black"></path>
<path d="M 232,240 L 232,272" fill="none" stroke="black"></path>
<path d="M 248,240 L 248,288" fill="none" stroke="black"></path>
<path d="M 288,240 L 288,288" fill="none" stroke="black"></path>
<path d="M 312,144 L 312,176" fill="none" stroke="black"></path>
<path d="M 312,240 L 312,272" fill="none" stroke="black"></path>
<path d="M 336,192 L 336,224" fill="none" stroke="black"></path>
<path d="M 416,64 L 416,96" fill="none" stroke="black"></path>
<path d="M 416,416 L 416,448" fill="none" stroke="black"></path>
<path d="M 440,112 L 440,144" fill="none" stroke="black"></path>
<path d="M 440,368 L 440,400" fill="none" stroke="black"></path>
<path d="M 440,464 L 440,496" fill="none" stroke="black"></path>
<path d="M 480,272 L 480,400" fill="none" stroke="black"></path>
<path d="M 480,464 L 480,544" fill="none" stroke="black"></path>
<path d="M 520,112 L 520,208" fill="none" stroke="black"></path>
<path d="M 520,208 L 520,400" fill="none" stroke="black"></path>
<path d="M 520,464 L 520,544" fill="none" stroke="black"></path>
<path d="M 544,64 L 544,96" fill="none" stroke="black"></path>
<path d="M 544,416 L 544,448" fill="none" stroke="black"></path>
<path d="M 24,456 L 24,464" fill="none" stroke="black"></path>
<path d="M 64,104 L 64,112" fill="none" stroke="black"></path>
<path d="M 64,400 L 64,408" fill="none" stroke="black"></path>
<path d="M 104,400 L 104,408" fill="none" stroke="black"></path>
<path d="M 248,232 L 248,240" fill="none" stroke="black"></path>
<path d="M 312,176 L 312,184" fill="none" stroke="black"></path>
<path d="M 440,456 L 440,464" fill="none" stroke="black"></path>
<path d="M 480,400 L 480,408" fill="none" stroke="black"></path>
<path d="M 480,456 L 480,464" fill="none" stroke="black"></path>
<path d="M 520,104 L 520,112" fill="none" stroke="black"></path>
<path d="M 24,48 L 24,56" fill="none" stroke="black"></path>
<polygon points="40.000000,48.000000 28.000000,42.400002 28.000000,53.599998" transform="rotate(90.000000, 24.000000, 48.000000)" fill="black"></polygon>
<path d="M 64,456 L 64,464" fill="none" stroke="black"></path>
<polygon points="80.000000,464.000000 68.000000,458.399994 68.000000,469.600006" transform="rotate(270.000000, 64.000000, 464.000000)" fill="black"></polygon>
<path d="M 104,48 L 104,56" fill="none" stroke="black"></path>
<polygon points="120.000000,48.000000 108.000000,42.400002 108.000000,53.599998" transform="rotate(90.000000, 104.000000, 48.000000)" fill="black"></polygon>
<path d="M 104,456 L 104,464" fill="none" stroke="black"></path>
<polygon points="120.000000,464.000000 108.000000,458.399994 108.000000,469.600006" transform="rotate(270.000000, 104.000000, 464.000000)" fill="black"></polygon>
<path d="M 232,176 L 232,184" fill="none" stroke="black"></path>
<polygon points="248.000000,176.000000 236.000000,170.399994 236.000000,181.600006" transform="rotate(90.000000, 232.000000, 176.000000)" fill="black"></polygon>
<path d="M 232,232 L 232,240" fill="none" stroke="black"></path>
<polygon points="248.000000,240.000000 236.000000,234.399994 236.000000,245.600006" transform="rotate(270.000000, 232.000000, 240.000000)" fill="black"></polygon>
<path d="M 288,232 L 288,240" fill="none" stroke="black"></path>
<polygon points="304.000000,240.000000 292.000000,234.399994 292.000000,245.600006" transform="rotate(270.000000, 288.000000, 240.000000)" fill="black"></polygon>
<path d="M 312,232 L 312,240" fill="none" stroke="black"></path>
<polygon points="328.000000,240.000000 316.000000,234.399994 316.000000,245.600006" transform="rotate(270.000000, 312.000000, 240.000000)" fill="black"></polygon>
<path d="M 440,104 L 440,112" fill="none" stroke="black"></path>
<polygon points="456.000000,112.000000 444.000000,106.400002 444.000000,117.599998" transform="rotate(270.000000, 440.000000, 112.000000)" fill="black"></polygon>
<path d="M 440,400 L 440,408" fill="none" stroke="black"></path>
<polygon points="456.000000,400.000000 444.000000,394.399994 444.000000,405.600006" transform="rotate(90.000000, 440.000000, 400.000000)" fill="black"></polygon>
<polygon points="520.000000,208.000000 508.000000,202.399994 508.000000,213.600006" transform="rotate(0.000000, 512.000000, 208.000000)" fill="black"></polygon>
<path d="M 520,400 L 520,408" fill="none" stroke="black"></path>
<polygon points="536.000000,400.000000 524.000000,394.399994 524.000000,405.600006" transform="rotate(90.000000, 520.000000, 400.000000)" fill="black"></polygon>
<path d="M 520,456 L 520,464" fill="none" stroke="black"></path>
<polygon points="536.000000,464.000000 524.000000,458.399994 524.000000,469.600006" transform="rotate(270.000000, 520.000000, 464.000000)" fill="black"></polygon>
<text text-anchor="middle" font-family="monospace" x="88" y="132" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="312" y="132" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="328" y="324" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="232" y="356" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="328" y="516" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="288" y="548" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="48" y="580" fill="black" font-size="1em">C</text>
<text text-anchor="middle" font-family="monospace" x="480" y="436" fill="black" font-size="1em">C</text>
<text text-anchor="middle" font-family="monospace" x="136" y="532" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="192" y="532" fill="black" font-size="1em">x</text>
<text text-anchor="middle" font-family="monospace" x="288" y="532" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="128" y="116" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="232" y="132" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="400" y="260" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="304" y="548" fill="black" font-size="1em">=</text>
<text text-anchor="middle" font-family="monospace" x="280" y="612" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="376" y="532" fill="black" font-size="1em">X</text>
<text text-anchor="middle" font-family="monospace" x="400" y="180" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="360" y="260" fill="black" font-size="1em">k</text>
<text text-anchor="middle" font-family="monospace" x="152" y="580" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="424" y="116" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="264" y="308" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="408" y="580" fill="black" font-size="1em">N</text>
<text text-anchor="middle" font-family="monospace" x="96" y="596" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="200" y="20" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="472" y="84" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="384" y="116" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="216" y="260" fill="black" font-size="1em">d</text>
<text text-anchor="middle" font-family="monospace" x="208" y="308" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="16" y="436" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="296" y="532" fill="black" font-size="1em">C</text>
<text text-anchor="middle" font-family="monospace" x="280" y="116" fill="black" font-size="1em">U</text>
<text text-anchor="middle" font-family="monospace" x="248" y="308" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="528" y="612" fill="black" font-size="1em">I</text>
<text text-anchor="middle" font-family="monospace" x="520" y="596" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="272" y="100" fill="black" font-size="1em">O</text>
<text text-anchor="middle" font-family="monospace" x="312" y="100" fill="black" font-size="1em">I</text>
<text text-anchor="middle" font-family="monospace" x="416" y="116" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="352" y="132" fill="black" font-size="1em">A</text>
<text text-anchor="middle" font-family="monospace" x="424" y="180" fill="black" font-size="1em">L</text>
<text text-anchor="middle" font-family="monospace" x="488" y="180" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="176" y="580" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="296" y="132" fill="black" font-size="1em">I</text>
<text text-anchor="middle" font-family="monospace" x="168" y="260" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="120" y="116" fill="black" font-size="1em">d</text>
<text text-anchor="middle" font-family="monospace" x="224" y="308" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="248" y="324" fill="black" font-size="1em">N</text>
<text text-anchor="middle" font-family="monospace" x="256" y="324" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="64" y="436" fill="black" font-size="1em">C</text>
<text text-anchor="middle" font-family="monospace" x="512" y="436" fill="black" font-size="1em">G</text>
<text text-anchor="middle" font-family="monospace" x="400" y="596" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="104" y="116" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="192" y="132" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="72" y="260" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="200" y="260" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="128" y="564" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="536" y="580" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="416" y="612" fill="black" font-size="1em">I</text>
<text text-anchor="middle" font-family="monospace" x="112" y="436" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="456" y="532" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="360" y="548" fill="black" font-size="1em">U</text>
<text text-anchor="middle" font-family="monospace" x="104" y="260" fill="black" font-size="1em">k</text>
<text text-anchor="middle" font-family="monospace" x="344" y="324" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="304" y="356" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="440" y="564" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="488" y="580" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="232" y="36" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="256" y="100" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="40" y="580" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="448" y="532" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="232" y="20" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="288" y="100" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="136" y="132" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="344" y="132" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="288" y="212" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="80" y="436" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="344" y="532" fill="black" font-size="1em">=</text>
<text text-anchor="middle" font-family="monospace" x="360" y="132" fill="black" font-size="1em">S</text>
<text text-anchor="middle" font-family="monospace" x="416" y="596" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="368" y="100" fill="black" font-size="1em">p</text>
<text text-anchor="middle" font-family="monospace" x="96" y="580" fill="black" font-size="1em"><</text>
<text text-anchor="middle" font-family="monospace" x="472" y="580" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="56" y="20" fill="black" font-size="1em">a</text>
<text text-anchor="middle" font-family="monospace" x="384" y="132" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="400" y="132" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="112" y="532" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="328" y="548" fill="black" font-size="1em">L</text>
<text text-anchor="middle" font-family="monospace" x="160" y="116" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="80" y="260" fill="black" font-size="1em">l</text>
<text text-anchor="middle" font-family="monospace" x="456" y="436" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="208" y="532" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="392" y="580" fill="black" font-size="1em">O</text>
<text text-anchor="middle" font-family="monospace" x="168" y="564" fill="black" font-size="1em">p</text>
<text text-anchor="middle" font-family="monospace" x="216" y="36" fill="black" font-size="1em">v</text>
<text text-anchor="middle" font-family="monospace" x="240" y="132" fill="black" font-size="1em">L</text>
<text text-anchor="middle" font-family="monospace" x="280" y="308" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="272" y="532" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="344" y="548" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="488" y="84" fill="black" font-size="1em">O</text>
<text text-anchor="middle" font-family="monospace" x="464" y="436" fill="black" font-size="1em">A</text>
<text text-anchor="middle" font-family="monospace" x="408" y="564" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="264" y="116" fill="black" font-size="1em">C</text>
<text text-anchor="middle" font-family="monospace" x="48" y="436" fill="black" font-size="1em">H</text>
<text text-anchor="middle" font-family="monospace" x="72" y="436" fill="black" font-size="1em">O</text>
<text text-anchor="middle" font-family="monospace" x="120" y="436" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="88" y="532" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="152" y="532" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="320" y="516" fill="black" font-size="1em">k</text>
<text text-anchor="middle" font-family="monospace" x="136" y="564" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="184" y="324" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="320" y="548" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="432" y="564" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="400" y="612" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="168" y="132" fill="black" font-size="1em">y</text>
<text text-anchor="middle" font-family="monospace" x="144" y="20" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="208" y="36" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="88" y="116" fill="black" font-size="1em">L</text>
<text text-anchor="middle" font-family="monospace" x="224" y="116" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="264" y="212" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="448" y="436" fill="black" font-size="1em">S</text>
<text text-anchor="middle" font-family="monospace" x="424" y="196" fill="black" font-size="1em">a</text>
<text text-anchor="middle" font-family="monospace" x="288" y="356" fill="black" font-size="1em">I</text>
<text text-anchor="middle" font-family="monospace" x="280" y="100" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="104" y="564" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="544" y="564" fill="black" font-size="1em">:</text>
<text text-anchor="middle" font-family="monospace" x="136" y="116" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="432" y="532" fill="black" font-size="1em">S</text>
<text text-anchor="middle" font-family="monospace" x="424" y="612" fill="black" font-size="1em">Z</text>
<text text-anchor="middle" font-family="monospace" x="352" y="100" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="368" y="132" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="368" y="580" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="144" y="596" fill="black" font-size="1em">a</text>
<text text-anchor="middle" font-family="monospace" x="528" y="596" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="144" y="132" fill="black" font-size="1em">v</text>
<text text-anchor="middle" font-family="monospace" x="96" y="532" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="264" y="532" fill="black" font-size="1em">O</text>
<text text-anchor="middle" font-family="monospace" x="32" y="564" fill="black" font-size="1em">I</text>
<text text-anchor="middle" font-family="monospace" x="512" y="580" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="176" y="36" fill="black" font-size="1em">n</text>
<text text-anchor="middle" font-family="monospace" x="392" y="100" fill="black" font-size="1em">y</text>
<text text-anchor="middle" font-family="monospace" x="304" y="132" fill="black" font-size="1em">Z</text>
<text text-anchor="middle" font-family="monospace" x="160" y="564" fill="black" font-size="1em">x</text>
<text text-anchor="middle" font-family="monospace" x="480" y="580" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="328" y="260" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="312" y="308" fill="black" font-size="1em">p</text>
<text text-anchor="middle" font-family="monospace" x="184" y="516" fill="black" font-size="1em">X</text>
<text text-anchor="middle" font-family="monospace" x="264" y="548" fill="black" font-size="1em">S</text>
<text text-anchor="middle" font-family="monospace" x="112" y="564" fill="black" font-size="1em">I</text>
<text text-anchor="middle" font-family="monospace" x="160" y="580" fill="black" font-size="1em">O</text>
<text text-anchor="middle" font-family="monospace" x="248" y="116" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="336" y="356" fill="black" font-size="1em">x</text>
<text text-anchor="middle" font-family="monospace" x="184" y="580" fill="black" font-size="1em">S</text>
<text text-anchor="middle" font-family="monospace" x="160" y="596" fill="black" font-size="1em">k</text>
<text text-anchor="middle" font-family="monospace" x="376" y="116" fill="black" font-size="1em">O</text>
<text text-anchor="middle" font-family="monospace" x="176" y="324" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="248" y="356" fill="black" font-size="1em">I</text>
<text text-anchor="middle" font-family="monospace" x="200" y="132" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="296" y="308" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="288" y="324" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="352" y="356" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="176" y="516" fill="black" font-size="1em">A</text>
<text text-anchor="middle" font-family="monospace" x="456" y="596" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="240" y="36" fill="black" font-size="1em">y</text>
<text text-anchor="middle" font-family="monospace" x="384" y="100" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="144" y="116" fill="black" font-size="1em">a</text>
<text text-anchor="middle" font-family="monospace" x="392" y="532" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="440" y="180" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="128" y="532" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="0" y="564" fill="black" font-size="1em">C</text>
<text text-anchor="middle" font-family="monospace" x="144" y="580" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="272" y="212" fill="black" font-size="1em">A</text>
<text text-anchor="middle" font-family="monospace" x="200" y="532" fill="black" font-size="1em">p</text>
<text text-anchor="middle" font-family="monospace" x="360" y="532" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="368" y="532" fill="black" font-size="1em">A</text>
<text text-anchor="middle" font-family="monospace" x="520" y="564" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="192" y="324" fill="black" font-size="1em">O</text>
<text text-anchor="middle" font-family="monospace" x="304" y="324" fill="black" font-size="1em">X</text>
<text text-anchor="middle" font-family="monospace" x="104" y="436" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="168" y="516" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="200" y="516" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="184" y="548" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="152" y="564" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="312" y="612" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="288" y="132" fill="black" font-size="1em">S</text>
<text text-anchor="middle" font-family="monospace" x="304" y="308" fill="black" font-size="1em">x</text>
<text text-anchor="middle" font-family="monospace" x="240" y="516" fill="black" font-size="1em">U</text>
<text text-anchor="middle" font-family="monospace" x="120" y="20" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="40" y="436" fill="black" font-size="1em">C</text>
<text text-anchor="middle" font-family="monospace" x="256" y="516" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="336" y="308" fill="black" font-size="1em">y</text>
<text text-anchor="middle" font-family="monospace" x="456" y="580" fill="black" font-size="1em">A</text>
<text text-anchor="middle" font-family="monospace" x="176" y="596" fill="black" font-size="1em">d</text>
<text text-anchor="middle" font-family="monospace" x="432" y="260" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="248" y="548" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="72" y="564" fill="black" font-size="1em">I</text>
<text text-anchor="middle" font-family="monospace" x="456" y="196" fill="black" font-size="1em">d</text>
<text text-anchor="middle" font-family="monospace" x="448" y="260" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="264" y="100" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="344" y="116" fill="black" font-size="1em">X</text>
<text text-anchor="middle" font-family="monospace" x="152" y="132" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="352" y="260" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="416" y="260" fill="black" font-size="1em">d</text>
<text text-anchor="middle" font-family="monospace" x="144" y="532" fill="black" font-size="1em">I</text>
<text text-anchor="middle" font-family="monospace" x="16" y="564" fill="black" font-size="1em">N</text>
<text text-anchor="middle" font-family="monospace" x="472" y="596" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="240" y="20" fill="black" font-size="1em">s</text>
<text text-anchor="middle" font-family="monospace" x="208" y="260" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="232" y="516" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="40" y="20" fill="black" font-size="1em">S</text>
<text text-anchor="middle" font-family="monospace" x="80" y="84" fill="black" font-size="1em">L</text>
<text text-anchor="middle" font-family="monospace" x="424" y="132" fill="black" font-size="1em">U</text>
<text text-anchor="middle" font-family="monospace" x="16" y="580" fill="black" font-size="1em">O</text>
<text text-anchor="middle" font-family="monospace" x="328" y="132" fill="black" font-size="1em"><</text>
<text text-anchor="middle" font-family="monospace" x="88" y="436" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="168" y="548" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="176" y="548" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="256" y="548" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="8" y="564" fill="black" font-size="1em">O</text>
<text text-anchor="middle" font-family="monospace" x="448" y="580" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="392" y="116" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="224" y="356" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="48" y="564" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="168" y="580" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="208" y="132" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="496" y="580" fill="black" font-size="1em">O</text>
<text text-anchor="middle" font-family="monospace" x="104" y="596" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="472" y="612" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="160" y="36" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="280" y="356" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="464" y="564" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="504" y="564" fill="black" font-size="1em">x</text>
<text text-anchor="middle" font-family="monospace" x="416" y="580" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="304" y="532" fill="black" font-size="1em">O</text>
<text text-anchor="middle" font-family="monospace" x="64" y="84" fill="black" font-size="1em">A</text>
<text text-anchor="middle" font-family="monospace" x="304" y="100" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="104" y="132" fill="black" font-size="1em">n</text>
<text text-anchor="middle" font-family="monospace" x="448" y="180" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="344" y="308" fill="black" font-size="1em">:</text>
<text text-anchor="middle" font-family="monospace" x="240" y="324" fill="black" font-size="1em">U</text>
<text text-anchor="middle" font-family="monospace" x="256" y="356" fill="black" font-size="1em">S</text>
<text text-anchor="middle" font-family="monospace" x="128" y="132" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="208" y="324" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="328" y="116" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="272" y="356" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="184" y="532" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="128" y="596" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="208" y="20" fill="black" font-size="1em">s</text>
<text text-anchor="middle" font-family="monospace" x="216" y="324" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="368" y="356" fill="black" font-size="1em">y</text>
<text text-anchor="middle" font-family="monospace" x="64" y="20" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="192" y="20" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="272" y="116" fill="black" font-size="1em">O</text>
<text text-anchor="middle" font-family="monospace" x="216" y="516" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="504" y="612" fill="black" font-size="1em">D</text>
<text text-anchor="middle" font-family="monospace" x="352" y="116" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="456" y="260" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="392" y="260" fill="black" font-size="1em">l</text>
<text text-anchor="middle" font-family="monospace" x="232" y="308" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="192" y="564" fill="black" font-size="1em">y</text>
<text text-anchor="middle" font-family="monospace" x="464" y="580" fill="black" font-size="1em">X</text>
<text text-anchor="middle" font-family="monospace" x="336" y="260" fill="black" font-size="1em">l</text>
<text text-anchor="middle" font-family="monospace" x="432" y="180" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="56" y="596" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="360" y="100" fill="black" font-size="1em">x</text>
<text text-anchor="middle" font-family="monospace" x="80" y="116" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="376" y="100" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="496" y="436" fill="black" font-size="1em">I</text>
<text text-anchor="middle" font-family="monospace" x="328" y="532" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="392" y="132" fill="black" font-size="1em">L</text>
<text text-anchor="middle" font-family="monospace" x="456" y="180" fill="black" font-size="1em">U</text>
<text text-anchor="middle" font-family="monospace" x="56" y="564" fill="black" font-size="1em">A</text>
<text text-anchor="middle" font-family="monospace" x="72" y="596" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="88" y="84" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="288" y="116" fill="black" font-size="1em">N</text>
<text text-anchor="middle" font-family="monospace" x="272" y="324" fill="black" font-size="1em"><</text>
<text text-anchor="middle" font-family="monospace" x="264" y="356" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="200" y="564" fill="black" font-size="1em">:</text>
<text text-anchor="middle" font-family="monospace" x="120" y="580" fill="black" font-size="1em">A</text>
<text text-anchor="middle" font-family="monospace" x="48" y="596" fill="black" font-size="1em">L</text>
<text text-anchor="middle" font-family="monospace" x="72" y="20" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="184" y="36" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="336" y="100" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="232" y="532" fill="black" font-size="1em">:</text>
<text text-anchor="middle" font-family="monospace" x="184" y="20" fill="black" font-size="1em">a</text>
<text text-anchor="middle" font-family="monospace" x="136" y="36" fill="black" font-size="1em">f</text>
<text text-anchor="middle" font-family="monospace" x="440" y="196" fill="black" font-size="1em">k</text>
<text text-anchor="middle" font-family="monospace" x="96" y="260" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="200" y="324" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="224" y="324" fill="black" font-size="1em">C</text>
<text text-anchor="middle" font-family="monospace" x="520" y="580" fill="black" font-size="1em">S</text>
<text text-anchor="middle" font-family="monospace" x="152" y="116" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="224" y="516" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="0" y="580" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="336" y="580" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="224" y="20" fill="black" font-size="1em">l</text>
<text text-anchor="middle" font-family="monospace" x="464" y="84" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="408" y="132" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="120" y="260" fill="black" font-size="1em">h</text>
<text text-anchor="middle" font-family="monospace" x="352" y="516" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="408" y="532" fill="black" font-size="1em">O</text>
<text text-anchor="middle" font-family="monospace" x="280" y="548" fill="black" font-size="1em">Z</text>
<text text-anchor="middle" font-family="monospace" x="112" y="132" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="80" y="132" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="416" y="132" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="504" y="180" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="176" y="260" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="240" y="116" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="448" y="196" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="504" y="436" fill="black" font-size="1em">N</text>
<text text-anchor="middle" font-family="monospace" x="184" y="564" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="352" y="580" fill="black" font-size="1em">O</text>
<text text-anchor="middle" font-family="monospace" x="496" y="596" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="296" y="324" fill="black" font-size="1em">A</text>
<text text-anchor="middle" font-family="monospace" x="280" y="516" fill="black" font-size="1em">b</text>
<text text-anchor="middle" font-family="monospace" x="152" y="36" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="400" y="532" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="112" y="580" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="224" y="36" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="496" y="564" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="296" y="100" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="384" y="260" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="80" y="580" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="200" y="36" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="120" y="532" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="456" y="564" fill="black" font-size="1em">I</text>
<text text-anchor="middle" font-family="monospace" x="504" y="580" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="544" y="596" fill="black" font-size="1em">:</text>
<text text-anchor="middle" font-family="monospace" x="184" y="260" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="344" y="356" fill="black" font-size="1em">p</text>
<text text-anchor="middle" font-family="monospace" x="472" y="564" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="296" y="612" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="496" y="180" fill="black" font-size="1em">b</text>
<text text-anchor="middle" font-family="monospace" x="32" y="436" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="200" y="308" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="312" y="324" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="312" y="356" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="240" y="548" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="40" y="84" fill="black" font-size="1em">D</text>
<text text-anchor="middle" font-family="monospace" x="480" y="84" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="208" y="516" fill="black" font-size="1em">L</text>
<text text-anchor="middle" font-family="monospace" x="96" y="564" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="320" y="612" fill="black" font-size="1em">U</text>
<text text-anchor="middle" font-family="monospace" x="480" y="612" fill="black" font-size="1em">O</text>
<text text-anchor="middle" font-family="monospace" x="488" y="612" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="160" y="132" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="472" y="260" fill="black" font-size="1em">d</text>
<text text-anchor="middle" font-family="monospace" x="280" y="532" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="384" y="580" fill="black" font-size="1em">C</text>
<text text-anchor="middle" font-family="monospace" x="64" y="596" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="312" y="516" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="272" y="548" fill="black" font-size="1em">I</text>
<text text-anchor="middle" font-family="monospace" x="360" y="580" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="408" y="180" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="160" y="260" fill="black" font-size="1em">d</text>
<text text-anchor="middle" font-family="monospace" x="376" y="260" fill="black" font-size="1em">h</text>
<text text-anchor="middle" font-family="monospace" x="160" y="532" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="256" y="532" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="120" y="596" fill="black" font-size="1em">b</text>
<text text-anchor="middle" font-family="monospace" x="128" y="36" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="320" y="100" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="344" y="260" fill="black" font-size="1em">a</text>
<text text-anchor="middle" font-family="monospace" x="360" y="324" fill="black" font-size="1em">S</text>
<text text-anchor="middle" font-family="monospace" x="32" y="580" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="400" y="100" fill="black" font-size="1em">:</text>
<text text-anchor="middle" font-family="monospace" x="216" y="132" fill="black" font-size="1em">:</text>
<text text-anchor="middle" font-family="monospace" x="320" y="532" fill="black" font-size="1em">N</text>
<text text-anchor="middle" font-family="monospace" x="512" y="564" fill="black" font-size="1em">p</text>
<text text-anchor="middle" font-family="monospace" x="432" y="580" fill="black" font-size="1em"><</text>
<text text-anchor="middle" font-family="monospace" x="40" y="596" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="464" y="612" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="72" y="84" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="192" y="260" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="336" y="516" fill="black" font-size="1em">d</text>
<text text-anchor="middle" font-family="monospace" x="224" y="532" fill="black" font-size="1em">y</text>
<text text-anchor="middle" font-family="monospace" x="480" y="596" fill="black" font-size="1em">d</text>
<text text-anchor="middle" font-family="monospace" x="384" y="612" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="448" y="612" fill="black" font-size="1em"><</text>
<text text-anchor="middle" font-family="monospace" x="96" y="84" fill="black" font-size="1em">D</text>
<text text-anchor="middle" font-family="monospace" x="400" y="116" fill="black" font-size="1em">S</text>
<text text-anchor="middle" font-family="monospace" x="440" y="260" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="40" y="564" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="496" y="84" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="96" y="436" fill="black" font-size="1em">L</text>
<text text-anchor="middle" font-family="monospace" x="8" y="580" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="232" y="116" fill="black" font-size="1em">O</text>
<text text-anchor="middle" font-family="monospace" x="384" y="180" fill="black" font-size="1em">A</text>
<text text-anchor="middle" font-family="monospace" x="392" y="180" fill="black" font-size="1em">S</text>
<text text-anchor="middle" font-family="monospace" x="120" y="564" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="176" y="564" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="480" y="564" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="536" y="564" fill="black" font-size="1em">y</text>
<text text-anchor="middle" font-family="monospace" x="408" y="612" fill="black" font-size="1em">S</text>
<text text-anchor="middle" font-family="monospace" x="360" y="116" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="368" y="116" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="264" y="132" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="424" y="260" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="216" y="308" fill="black" font-size="1em">O</text>
<text text-anchor="middle" font-family="monospace" x="168" y="532" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="368" y="612" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="176" y="20" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="256" y="132" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="480" y="180" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="208" y="356" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="328" y="356" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="464" y="596" fill="black" font-size="1em">k</text>
<text text-anchor="middle" font-family="monospace" x="304" y="612" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="240" y="308" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="192" y="356" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="248" y="532" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="208" y="580" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="352" y="612" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="472" y="180" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="320" y="308" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="312" y="532" fill="black" font-size="1em">U</text>
<text text-anchor="middle" font-family="monospace" x="424" y="532" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="376" y="580" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="248" y="132" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="8" y="436" fill="black" font-size="1em">S</text>
<text text-anchor="middle" font-family="monospace" x="216" y="532" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="312" y="116" fill="black" font-size="1em">=</text>
<text text-anchor="middle" font-family="monospace" x="280" y="132" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="376" y="612" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="248" y="20" fill="black" font-size="1em">s</text>
<text text-anchor="middle" font-family="monospace" x="296" y="356" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="208" y="548" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="24" y="564" fill="black" font-size="1em">F</text>
<text text-anchor="middle" font-family="monospace" x="96" y="132" fill="black" font-size="1em">n</text>
<text text-anchor="middle" font-family="monospace" x="416" y="180" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="424" y="564" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="288" y="612" fill="black" font-size="1em">L</text>
<text text-anchor="middle" font-family="monospace" x="272" y="132" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="328" y="308" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="304" y="516" fill="black" font-size="1em">a</text>
<text text-anchor="middle" font-family="monospace" x="416" y="532" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="64" y="580" fill="black" font-size="1em">U</text>
<text text-anchor="middle" font-family="monospace" x="448" y="596" fill="black" font-size="1em">a</text>
<text text-anchor="middle" font-family="monospace" x="544" y="612" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="376" y="180" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="432" y="196" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="336" y="324" fill="black" font-size="1em">O</text>
<text text-anchor="middle" font-family="monospace" x="520" y="612" fill="black" font-size="1em">S</text>
<text text-anchor="middle" font-family="monospace" x="360" y="612" fill="black" font-size="1em">L</text>
<text text-anchor="middle" font-family="monospace" x="536" y="612" fill="black" font-size="1em">Z</text>
<text text-anchor="middle" font-family="monospace" x="88" y="564" fill="black" font-size="1em">N</text>
<text text-anchor="middle" font-family="monospace" x="48" y="20" fill="black" font-size="1em">t</text>
<text text-anchor="middle" font-family="monospace" x="168" y="20" fill="black" font-size="1em">i</text>
<text text-anchor="middle" font-family="monospace" x="56" y="84" fill="black" font-size="1em">S</text>
<text text-anchor="middle" font-family="monospace" x="256" y="116" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="136" y="260" fill="black" font-size="1em">l</text>
<text text-anchor="middle" font-family="monospace" x="240" y="356" fill="black" font-size="1em">A</text>
<text text-anchor="middle" font-family="monospace" x="360" y="356" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="536" y="596" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="112" y="116" fill="black" font-size="1em">n</text>
<text text-anchor="middle" font-family="monospace" x="416" y="564" fill="black" font-size="1em">O</text>
<text text-anchor="middle" font-family="monospace" x="400" y="580" fill="black" font-size="1em">U</text>
<text text-anchor="middle" font-family="monospace" x="160" y="20" fill="black" font-size="1em">d</text>
<text text-anchor="middle" font-family="monospace" x="280" y="212" fill="black" font-size="1em">S</text>
<text text-anchor="middle" font-family="monospace" x="192" y="516" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="216" y="116" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="296" y="116" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="232" y="548" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="528" y="564" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="88" y="260" fill="black" font-size="1em">a</text>
<text text-anchor="middle" font-family="monospace" x="56" y="436" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="24" y="580" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="200" y="580" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="336" y="612" fill="black" font-size="1em"><</text>
<text text-anchor="middle" font-family="monospace" x="544" y="580" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="128" y="20" fill="black" font-size="1em">L</text>
<text text-anchor="middle" font-family="monospace" x="128" y="260" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="24" y="436" fill="black" font-size="1em">A</text>
<text text-anchor="middle" font-family="monospace" x="472" y="436" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="264" y="516" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="216" y="548" fill="black" font-size="1em">L</text>
<text text-anchor="middle" font-family="monospace" x="448" y="564" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="168" y="596" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="384" y="532" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="352" y="548" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="80" y="564" fill="black" font-size="1em">O</text>
<text text-anchor="middle" font-family="monospace" x="136" y="580" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="192" y="36" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="256" y="308" fill="black" font-size="1em">I</text>
<text text-anchor="middle" font-family="monospace" x="432" y="596" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="512" y="612" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="128" y="580" fill="black" font-size="1em">X</text>
<text text-anchor="middle" font-family="monospace" x="504" y="596" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="168" y="36" fill="black" font-size="1em">n</text>
<text text-anchor="middle" font-family="monospace" x="168" y="116" fill="black" font-size="1em">s</text>
<text text-anchor="middle" font-family="monospace" x="376" y="132" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="216" y="356" fill="black" font-size="1em">U</text>
<text text-anchor="middle" font-family="monospace" x="272" y="516" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="224" y="548" fill="black" font-size="1em">_</text>
<text text-anchor="middle" font-family="monospace" x="112" y="596" fill="black" font-size="1em">o</text>
<text text-anchor="middle" font-family="monospace" x="320" y="324" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="352" y="324" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="200" y="356" fill="black" font-size="1em">M</text>
<text text-anchor="middle" font-family="monospace" x="360" y="516" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="80" y="596" fill="black" font-size="1em">U</text>
<text text-anchor="middle" font-family="monospace" x="392" y="612" fill="black" font-size="1em">B</text>
<text text-anchor="middle" font-family="monospace" x="464" y="260" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="488" y="436" fill="black" font-size="1em">H</text>
<text text-anchor="middle" font-family="monospace" x="336" y="548" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="56" y="580" fill="black" font-size="1em">O</text>
<text text-anchor="middle" font-family="monospace" x="48" y="84" fill="black" font-size="1em">I</text>
<text text-anchor="middle" font-family="monospace" x="64" y="564" fill="black" font-size="1em">T</text>
<text text-anchor="middle" font-family="monospace" x="72" y="580" fill="black" font-size="1em">N</text>
<text text-anchor="middle" font-family="monospace" x="432" y="612" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="272" y="308" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="192" y="548" fill="black" font-size="1em">:</text>
<text text-anchor="middle" font-family="monospace" x="328" y="100" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="232" y="324" fill="black" font-size="1em">O</text>
<text text-anchor="middle" font-family="monospace" x="400" y="564" fill="black" font-size="1em">P</text>
<text text-anchor="middle" font-family="monospace" x="408" y="596" fill="black" font-size="1em">r</text>
<text text-anchor="middle" font-family="monospace" x="336" y="116" fill="black" font-size="1em">A</text>
<text text-anchor="middle" font-family="monospace" x="120" y="132" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="144" y="260" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="288" y="516" fill="black" font-size="1em">e</text>
<text text-anchor="middle" font-family="monospace" x="104" y="532" fill="black" font-size="1em">O</text>
<text text-anchor="middle" font-family="monospace" x="344" y="580" fill="black" font-size="1em">R</text>
<text text-anchor="middle" font-family="monospace" x="496" y="612" fill="black" font-size="1em">E</text>
<text text-anchor="middle" font-family="monospace" x="152" y="20" fill="black" font-size="1em">n</text>
<text text-anchor="middle" font-family="monospace" x="152" y="596" fill="black" font-size="1em">c</text>
<text text-anchor="middle" font-family="monospace" x="424" y="596" fill="black" font-size="1em">b</text>
</g>
</svg><a href="#section-5.2-3.1.1" class="pilcrow">¶</a>
</div>
</div>
<figcaption><a href="#figure-5" class="selfRef">Figure 5</a>:
<a href="#name-state-machine-for-datagram-" class="selfRef">State Machine for Datagram PLPMTUD</a>
</figcaption></figure>
</div>
<p id="section-5.2-4"></p>
<p id="section-5.2-5">The following states are defined:<a href="#section-5.2-5" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-5.2-6">
<dt id="section-5.2-6.1">DISABLED:</dt>
<dd style="margin-left: 1.5em" id="section-5.2-6.2">The DISABLED state is the initial state before probing has
started. It is also entered from any other state, when the PL
indicates loss of connectivity. This state is left once the PL
indicates connectivity to the remote PL. When transitioning to the
BASE state, a probe packet of size BASE_PLPMTU can be sent
immediately.<a href="#section-5.2-6.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-5.2-6.3">BASE:</dt>
<dd style="margin-left: 1.5em" id="section-5.2-6.4">
<p id="section-5.2-6.4.1">The BASE state is used to confirm that the BASE_PLPMTU size is
supported by the network path and is designed to allow an
application to continue working when there are transient
reductions in the actual PMTU. It also seeks to avoid long
periods when a sender searching for a larger PLPMTU is unaware
that packets are not being delivered due to a packet or ICMP
black hole.<a href="#section-5.2-6.4.1" class="pilcrow">¶</a></p>
<p id="section-5.2-6.4.2">On entry, the PROBED_SIZE is set to the BASE_PLPMTU size, and
the PROBE_COUNT is set to zero.<a href="#section-5.2-6.4.2" class="pilcrow">¶</a></p>
<p id="section-5.2-6.4.3">Each time a probe packet is sent, the PROBE_TIMER is started.
The state is exited when the probe packet is acknowledged, and
the PL sender enters the SEARCHING state.<a href="#section-5.2-6.4.3" class="pilcrow">¶</a></p>
<p id="section-5.2-6.4.4">The state is also left when the PROBE_COUNT reaches
MAX_PROBES or a received PTB message is validated. This causes
the PL sender to enter the ERROR state.<a href="#section-5.2-6.4.4" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt id="section-5.2-6.5">SEARCHING:</dt>
<dd style="margin-left: 1.5em" id="section-5.2-6.6">
<p id="section-5.2-6.6.1">The SEARCHING state is the main probing state. This state is
entered when probing for the BASE_PLPMTU completes.<a href="#section-5.2-6.6.1" class="pilcrow">¶</a></p>
<p id="section-5.2-6.6.2">Each time a probe packet is acknowledged, the PROBE_COUNT is
set to zero, the PLPMTU is set to the PROBED_SIZE, and then the
PROBED_SIZE is increased using the search algorithm (as described
in <a href="#searchincrease" class="xref">Section 5.3</a>).<a href="#section-5.2-6.6.2" class="pilcrow">¶</a></p>
<p id="section-5.2-6.6.3">When a probe packet is sent and not acknowledged within the
period of the PROBE_TIMER, the PROBE_COUNT is incremented, and
a new probe packet is transmitted.<a href="#section-5.2-6.6.3" class="pilcrow">¶</a></p>
<p id="section-5.2-6.6.4"> The state is exited to enter SEARCH_COMPLETE when the
PROBE_COUNT reaches MAX_PROBES, a validated PTB is received that
corresponds to the last successfully probed size (PL_PTB_SIZE =
PLPMTU), or a probe of size MAX_PLPMTU is acknowledged (PLPMTU =
MAX_PLPMTU).<a href="#section-5.2-6.6.4" class="pilcrow">¶</a></p>
<p id="section-5.2-6.6.5"> When a black hole is detected in the SEARCHING state, this causes
the PL sender to enter the BASE state.<a href="#section-5.2-6.6.5" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt id="section-5.2-6.7">SEARCH_COMPLETE:</dt>
<dd style="margin-left: 1.5em" id="section-5.2-6.8">
<p id="section-5.2-6.8.1"> The SEARCH_COMPLETE state indicates that a search has
completed. This is the normal maintenance state, where the PL is
not probing to update the PLPMTU. DPLPMTUD remains in this state
until either the PMTU_RAISE_TIMER expires or a black hole is
detected.<a href="#section-5.2-6.8.1" class="pilcrow">¶</a></p>
<p id="section-5.2-6.8.2">When DPLPMTUD uses an unacknowledged PL and is in the
SEARCH_COMPLETE state, a CONFIRMATION_TIMER periodically resets
the PROBE_COUNT and schedules a probe packet with the size of the
PLPMTU. If MAX_PROBES successive PLPMTUD-sized probes fail to be
acknowledged, the method enters the BASE state. When used with an
acknowledged PL (e.g., SCTP), DPLPMTUD <span class="bcp14">SHOULD NOT</span> continue to
generate PLPMTU probes in this state.<a href="#section-5.2-6.8.2" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
<dt id="section-5.2-6.9">ERROR:</dt>
<dd style="margin-left: 1.5em" id="section-5.2-6.10">
<p id="section-5.2-6.10.1">The ERROR state represents the case where either the network
path is not known to support a PLPMTU of at least the BASE_PLPMTU
size or when there is contradictory information about the network
path that would otherwise result in excessive variation in the
MPS signaled to the higher layer. The state implements a method
to mitigate oscillation in the state-event engine. It signals a
conservative value of the MPS to the higher layer by the PL. The
state is exited when packet probes no longer detect the error.
The PL sender then enters the SEARCHING state.<a href="#section-5.2-6.10.1" class="pilcrow">¶</a></p>
<p id="section-5.2-6.10.2">Implementations are permitted to enable endpoint
fragmentation if the DPLPMTUD is unable to validate MIN_PLPMTU
within PROBE_COUNT probes. If DPLPMTUD is unable to validate
MIN_PLPMTU, the implementation will transition to the DISABLED
state.<a href="#section-5.2-6.10.2" class="pilcrow">¶</a></p>
<p id="section-5.2-6.10.3">Note: MIN_PLPMTU could be identical to BASE_PLPMTU,
simplifying the actions in this state.<a href="#section-5.2-6.10.3" class="pilcrow">¶</a></p>
</dd>
<dd class="break"></dd>
</dl>
</section>
</div>
<div id="searchincrease">
<section id="section-5.3">
<h3 id="name-search-to-increase-the-plpm">
<a href="#section-5.3" class="section-number selfRef">5.3. </a><a href="#name-search-to-increase-the-plpm" class="section-name selfRef">Search to Increase the PLPMTU</a>
</h3>
<p id="section-5.3-1">This section describes the algorithms used by DPLPMTUD to search
for a larger PLPMTU.<a href="#section-5.3-1" class="pilcrow">¶</a></p>
<div id="Increase">
<section id="section-5.3.1">
<h4 id="name-probing-for-a-larger-plpmtu">
<a href="#section-5.3.1" class="section-number selfRef">5.3.1. </a><a href="#name-probing-for-a-larger-plpmtu" class="section-name selfRef">Probing for a Larger PLPMTU</a>
</h4>
<p id="section-5.3.1-1">Implementations use a search algorithm across the search range to
determine whether a larger PLPMTU can be supported across a network
path.<a href="#section-5.3.1-1" class="pilcrow">¶</a></p>
<p id="section-5.3.1-2">The method discovers the search range by confirming the minimum
PLPMTU and then using the probe method to select a PROBED_SIZE less
than or equal to MAX_PLPMTU. MAX_PLPMTU is the minimum of the local
MTU and EMTU_R (when this is learned from the remote endpoint). The
MAX_PLPMTU <span class="bcp14">MAY</span> be reduced by an application that sets a maximum to
the size of datagrams it will send.<a href="#section-5.3.1-2" class="pilcrow">¶</a></p>
<p id="section-5.3.1-3"> The PROBE_COUNT is initialized to zero when the first probe with
a size greater than or equal to PLPMTU is sent. Each probe packet
successfully sent to the remote peer is confirmed by acknowledgment
at the PL (see <a href="#Probe" class="xref">Section 4.1</a>).<a href="#section-5.3.1-3" class="pilcrow">¶</a></p>
<p id="section-5.3.1-4">Each time a probe packet is sent to the destination, the
PROBE_TIMER is started. The timer is canceled when the PL receives
acknowledgment that the probe packet has been successfully sent
across the path (<a href="#Probe" class="xref">Section 4.1</a>). This confirms that the
PROBED_SIZE is supported, and the PROBED_SIZE value is then assigned
to the PLPMTU. The search algorithm can continue to send subsequent
probe packets of an increasing size.<a href="#section-5.3.1-4" class="pilcrow">¶</a></p>
<p id="section-5.3.1-5">If the timer expires before a probe packet is acknowledged, the
probe has failed to confirm the PROBED_SIZE. Each time the
PROBE_TIMER expires, the PROBE_COUNT is incremented, the PROBE_TIMER
is reinitialized, and a new probe of the same size or any other size
(determined by the search algorithm) can be sent. The maximum number
of consecutive failed probes is configured (MAX_PROBES). If the
value of the PROBE_COUNT reaches MAX_PROBES, probing will stop, and
the PL sender enters the SEARCH_COMPLETE state.<a href="#section-5.3.1-5" class="pilcrow">¶</a></p>
</section>
</div>
<section id="section-5.3.2">
<h4 id="name-selection-of-probe-sizes">
<a href="#section-5.3.2" class="section-number selfRef">5.3.2. </a><a href="#name-selection-of-probe-sizes" class="section-name selfRef">Selection of Probe Sizes</a>
</h4>
<p id="section-5.3.2-1">The search algorithm determines a minimum useful gain in
PLPMTU. It would not be constructive for a PL sender to attempt to
probe for all sizes. This would incur unnecessary load on the path.
Implementations <span class="bcp14">SHOULD</span> select the set of probe packet
sizes to maximize the gain in PLPMTU from each search step.<a href="#section-5.3.2-1" class="pilcrow">¶</a></p>
<p id="section-5.3.2-2">Implementations could optimize the search procedure by selecting
step sizes from a table of common PMTU sizes. When selecting the
appropriate next size to search, an implementer ought to also
consider that there can be common sizes of MPS that applications
seek to use, and there could be common sizes of MTU used within the
network.<a href="#section-5.3.2-2" class="pilcrow">¶</a></p>
</section>
<div id="Resilience">
<section id="section-5.3.3">
<h4 id="name-resilience-to-inconsistent-">
<a href="#section-5.3.3" class="section-number selfRef">5.3.3. </a><a href="#name-resilience-to-inconsistent-" class="section-name selfRef">Resilience to Inconsistent Path Information</a>
</h4>
<p id="section-5.3.3-1">A decision to increase the PLPMTU needs to be resilient to the
possibility that information learned about the network path is
inconsistent. A path is inconsistent when, for example, probe
packets are lost due to other reasons (i.e., not packet size) or due
to frequent path changes. Frequent path changes could occur by
unexpected "flapping" -- where some packets from a flow pass along
one path, but other packets follow a different path with different
properties.<a href="#section-5.3.3-1" class="pilcrow">¶</a></p>
<p id="section-5.3.3-2">A PL sender is able to detect inconsistency either from the sequence of
PLPMTU probes that are acknowledged or from the sequence of PTB messages that it
receives. When inconsistent path information is detected, a PL
sender could use an alternate search mode that clamps the offered
MPS to a smaller value for a period of time. This avoids unnecessary
loss of packets.<a href="#section-5.3.3-2" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="robustness">
<section id="section-5.4">
<h3 id="name-robustness-to-inconsistent-">
<a href="#section-5.4" class="section-number selfRef">5.4. </a><a href="#name-robustness-to-inconsistent-" class="section-name selfRef">Robustness to Inconsistent Paths</a>
</h3>
<p id="section-5.4-1">Some paths could be unable to sustain packets of the BASE_PLPMTU
size. The Error State could be implemented to provide robustness to
such paths. This allows fallback to a smaller than desired PLPMTU
rather than suffer connectivity failure. This could utilize methods
such as endpoint IP fragmentation to enable the PL sender to
communicate using packets smaller than the BASE_PLPMTU.<a href="#section-5.4-1" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="protocol_specific_methods">
<section id="section-6">
<h2 id="name-specification-of-protocol-s">
<a href="#section-6" class="section-number selfRef">6. </a><a href="#name-specification-of-protocol-s" class="section-name selfRef">Specification of Protocol-Specific Methods</a>
</h2>
<p id="section-6-1">DPLPMTUD requires protocol-specific details to be specified for each
PL that is used.<a href="#section-6-1" class="pilcrow">¶</a></p>
<p id="section-6-2">The first subsection provides guidance on how to implement the
DPLPMTUD method as a part of an application using UDP or UDP-Lite. The
guidance also applies to other datagram services that do not include a
specific transport protocol (such as a tunnel encapsulation). The
following subsections describe how DPLPMTUD can be implemented as a part
of the transport service, allowing applications using the service to
benefit from discovery of the PLPMTU without themselves needing to
implement this method when using SCTP and QUIC.<a href="#section-6-2" class="pilcrow">¶</a></p>
<section id="section-6.1">
<h3 id="name-application-support-for-dpl">
<a href="#section-6.1" class="section-number selfRef">6.1. </a><a href="#name-application-support-for-dpl" class="section-name selfRef">Application Support for DPLPMTUD with UDP or UDP-Lite</a>
</h3>
<p id="section-6.1-1">The current specifications of UDP <span>[<a href="#RFC0768" class="xref">RFC0768</a>]</span>
and UDP-Lite <span>[<a href="#RFC3828" class="xref">RFC3828</a>]</span> do not define a method in
the RFC series that supports PLPMTUD. In particular, the UDP transport
does not provide the transport features needed to implement
datagram PLPMTUD.<a href="#section-6.1-1" class="pilcrow">¶</a></p>
<p id="section-6.1-2">The DPLPMTUD method can be implemented as a part of an application
built directly or indirectly on UDP or UDP-Lite but relies on
higher-layer protocol features to implement the method <span>[<a href="#BCP145" class="xref">BCP145</a>]</span>.<a href="#section-6.1-2" class="pilcrow">¶</a></p>
<p id="section-6.1-3">Some primitives used by DPLPMTUD might not be available via the
Datagram API (e.g., the ability to access the PLPMTU from the IP-layer
cache or to interpret received PTB messages).<a href="#section-6.1-3" class="pilcrow">¶</a></p>
<p id="section-6.1-4"> In addition, it is recommended that PMTU discovery is not performed
by multiple protocol layers. An application <span class="bcp14">SHOULD</span> avoid using
DPLPMTUD when the underlying transport system provides this capability.
A common method for managing the PLPMTU has benefits, both in the
ability to share state between different processes and in opportunities to
coordinate probing for different PL instances.<a href="#section-6.1-4" class="pilcrow">¶</a></p>
<div id="UDP-REQ">
<section id="section-6.1.1">
<h4 id="name-application-request">
<a href="#section-6.1.1" class="section-number selfRef">6.1.1. </a><a href="#name-application-request" class="section-name selfRef">Application Request</a>
</h4>
<p id="section-6.1.1-1">An application needs an application-layer protocol mechanism
(such as a message acknowledgment method) that solicits a response
from a destination endpoint. The method <span class="bcp14">SHOULD</span> allow the sender to
check the value returned in the response to provide additional
protection from off-path insertion of data <span>[<a href="#BCP145" class="xref">BCP145</a>]</span>. Suitable methods include a parameter known
only to the two endpoints, such as a session ID or initialized
sequence number.<a href="#section-6.1.1-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="UDP-Probe">
<section id="section-6.1.2">
<h4 id="name-application-response">
<a href="#section-6.1.2" class="section-number selfRef">6.1.2. </a><a href="#name-application-response" class="section-name selfRef">Application Response</a>
</h4>
<p id="section-6.1.2-1">An application needs an application-layer protocol mechanism to
communicate the response from the destination endpoint. This
response could indicate successful reception of the probe across the
path but could also indicate that some (or all packets) have failed
to reach the destination.<a href="#section-6.1.2-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="UDP-probing">
<section id="section-6.1.3">
<h4 id="name-sending-application-probe-p">
<a href="#section-6.1.3" class="section-number selfRef">6.1.3. </a><a href="#name-sending-application-probe-p" class="section-name selfRef">Sending Application Probe Packets</a>
</h4>
<p id="section-6.1.3-1">A probe packet can carry an application data block, but the
successful transmission of this data is at risk when used for
probing. Some applications might prefer to use a probe packet that
does not carry an application data block to avoid disruption of data
transfer.<a href="#section-6.1.3-1" class="pilcrow">¶</a></p>
</section>
</div>
<section id="section-6.1.4">
<h4 id="name-initial-connectivity">
<a href="#section-6.1.4" class="section-number selfRef">6.1.4. </a><a href="#name-initial-connectivity" class="section-name selfRef">Initial Connectivity</a>
</h4>
<p id="section-6.1.4-1">An application that does not have other higher-layer information
confirming connectivity with the remote peer <span class="bcp14">SHOULD</span> implement a
connectivity mechanism using acknowledged probe packets before
entering the BASE state.<a href="#section-6.1.4-1" class="pilcrow">¶</a></p>
</section>
<section id="section-6.1.5">
<h4 id="name-validating-the-path">
<a href="#section-6.1.5" class="section-number selfRef">6.1.5. </a><a href="#name-validating-the-path" class="section-name selfRef">Validating the Path</a>
</h4>
<p id="section-6.1.5-1">An application that does not have other higher-layer information
confirming correct delivery of datagrams <span class="bcp14">SHOULD</span> implement the
CONFIRMATION_TIMER to periodically send probe packets while in the
SEARCH_COMPLETE state.<a href="#section-6.1.5-1" class="pilcrow">¶</a></p>
</section>
<div id="udpopt_ptb_handling">
<section id="section-6.1.6">
<h4 id="name-handling-of-ptb-messages">
<a href="#section-6.1.6" class="section-number selfRef">6.1.6. </a><a href="#name-handling-of-ptb-messages" class="section-name selfRef">Handling of PTB Messages</a>
</h4>
<p id="section-6.1.6-1">An application that is able and wishes to receive PTB messages
<span class="bcp14">MUST</span> perform ICMP validation as specified in
<span><a href="https://www.rfc-editor.org/rfc/rfc8085#section-5.2" class="relref">Section 5.2</a> of [<a href="#BCP145" class="xref">BCP145</a>]</span>. This requires that the application checks
each received PTB message to validate that it was is received in
response to transmitted traffic and that the reported PL_PTB_SIZE is
less than the current probed size (see <a href="#validPTB_SIZE" class="xref">Section 4.6.2</a>).
A validated PTB message <span class="bcp14">MAY</span> be used
as input to the DPLPMTUD algorithm but <span class="bcp14">MUST NOT</span> be used directly to
set the PLPMTU.<a href="#section-6.1.6-1" class="pilcrow">¶</a></p>
</section>
</div>
</section>
<section id="section-6.2">
<h3 id="name-dplpmtud-for-sctp">
<a href="#section-6.2" class="section-number selfRef">6.2. </a><a href="#name-dplpmtud-for-sctp" class="section-name selfRef">DPLPMTUD for SCTP</a>
</h3>
<p id="section-6.2-1"><span><a href="https://www.rfc-editor.org/rfc/rfc4821#section-10.2" class="relref">Section 10.2</a> of [<a href="#RFC4821" class="xref">RFC4821</a>]</span>
specifies a recommended PLPMTUD probing method for SCTP, and
<span><a href="https://www.rfc-editor.org/rfc/rfc4960#section-7.3" class="relref">Section 7.3</a> of [<a href="#RFC4960" class="xref">RFC4960</a>]</span>
recommends an endpoint apply the
techniques in RFC 4821 on a per-destination-address basis. The
specification for DPLPMTUD continues the practice of using the PL to
discover the PMTU but updates RFC4960 with a recommendation to use
the method specified in this document: The <span class="bcp14">RECOMMENDED</span> method for
generating probes is to add a chunk consisting only of padding to an
SCTP message. The PAD chunk defined in <span>[<a href="#RFC4820" class="xref">RFC4820</a>]</span>
<span class="bcp14">SHOULD</span> be attached to a minimum-length HEARTBEAT (HB) chunk to build a
probe packet. This enables probing without affecting the transfer of
user messages and without being limited by congestion control or flow
control. This is preferred to using DATA chunks (with padding as
required) as path probes.<a href="#section-6.2-1" class="pilcrow">¶</a></p>
<p id="section-6.2-2"><span><a href="https://www.rfc-editor.org/rfc/rfc4960#section-6.9" class="relref">Section 6.9</a> of [<a href="#RFC4960" class="xref">RFC4960</a>]</span>
describes dividing the
user messages into DATA chunks sent by the PL when using SCTP. This notes
that once an SCTP message has been sent, it cannot be resegmented.
<span>[<a href="#RFC4960" class="xref">RFC4960</a>]</span> describes the method for retransmitting DATA
chunks when the MPS has been reduced, and <span><a href="https://www.rfc-editor.org/rfc/rfc4960#section-6.9" class="relref">Section 6.9</a> of [<a href="#RFC4960" class="xref">RFC4960</a>]</span>
describes use of IP fragmentation for this case.
This is unchanged by this document.<a href="#section-6.2-2" class="pilcrow">¶</a></p>
<div id="sctp_over_ip">
<section id="section-6.2.1">
<h4 id="name-sctp-ipv4-and-sctp-ipv6">
<a href="#section-6.2.1" class="section-number selfRef">6.2.1. </a><a href="#name-sctp-ipv4-and-sctp-ipv6" class="section-name selfRef">SCTP/IPv4 and SCTP/IPv6</a>
</h4>
<section id="section-6.2.1.1">
<h5 id="name-initial-connectivity-2">
<a href="#section-6.2.1.1" class="section-number selfRef">6.2.1.1. </a><a href="#name-initial-connectivity-2" class="section-name selfRef">Initial Connectivity</a>
</h5>
<p id="section-6.2.1.1-1">The base protocol is specified in <span>[<a href="#RFC4960" class="xref">RFC4960</a>]</span>. This provides an acknowledged PL. A
sender can therefore enter the BASE state as soon as connectivity
has been confirmed.<a href="#section-6.2.1.1-1" class="pilcrow">¶</a></p>
</section>
<div id="sctp_over_ip_probing">
<section id="section-6.2.1.2">
<h5 id="name-sending-sctp-probe-packets">
<a href="#section-6.2.1.2" class="section-number selfRef">6.2.1.2. </a><a href="#name-sending-sctp-probe-packets" class="section-name selfRef">Sending SCTP Probe Packets</a>
</h5>
<p id="section-6.2.1.2-1">Probe packets consist of an SCTP common header followed by a
HEARTBEAT chunk and a PAD chunk. The PAD chunk is used to control
the length of the probe packet. The HEARTBEAT chunk is used to
trigger the sending of a HEARTBEAT ACK chunk. The reception of the
HEARTBEAT ACK chunk acknowledges reception of a successful
probe. A successful probe updates the association and path
counters, but an unsuccessful probe is discounted (assumed
to be a result of choosing too large a PLPMTU).<a href="#section-6.2.1.2-1" class="pilcrow">¶</a></p>
<p id="section-6.2.1.2-2">The SCTP sender needs to be able to determine the total size of
a probe packet. The HEARTBEAT chunk could carry a Heartbeat
Information parameter that includes, besides the information
suggested in <span>[<a href="#RFC4960" class="xref">RFC4960</a>]</span>, the probe size to help
an implementation associate a HEARTBEAT ACK with the size of probe
that was sent. The sender could also use other methods, such as
sending a nonce and verifying the information returned also
contains the corresponding nonce. The length of the PAD chunk is
computed by reducing the probing size by the size of the SCTP
common header and the HEARTBEAT chunk. The payload of the PAD
chunk contains arbitrary data. When transmitted at the IP layer,
the PMTU size also includes the IPv4 or IPv6 header(s).<a href="#section-6.2.1.2-2" class="pilcrow">¶</a></p>
<p id="section-6.2.1.2-3"> Probing can start directly after the PL handshake; this can be
done before data is sent. Assuming this behavior (i.e., the PMTU
is smaller than or equal to the interface MTU), this process will
take several round-trip time periods, dependent on the number of
DPLPMTUD probes sent. The Heartbeat timer can be used to implement
the PROBE_TIMER.<a href="#section-6.2.1.2-3" class="pilcrow">¶</a></p>
</section>
</div>
<section id="section-6.2.1.3">
<h5 id="name-validating-the-path-with-sc">
<a href="#section-6.2.1.3" class="section-number selfRef">6.2.1.3. </a><a href="#name-validating-the-path-with-sc" class="section-name selfRef">Validating the Path with SCTP</a>
</h5>
<p id="section-6.2.1.3-1">Since SCTP provides an acknowledged PL, a sender <span class="bcp14">MUST NOT</span>
implement the CONFIRMATION_TIMER while in the SEARCH_COMPLETE
state.<a href="#section-6.2.1.3-1" class="pilcrow">¶</a></p>
</section>
<div id="sctp_over_ip_ptb_handling">
<section id="section-6.2.1.4">
<h5 id="name-ptb-message-handling-by-sct">
<a href="#section-6.2.1.4" class="section-number selfRef">6.2.1.4. </a><a href="#name-ptb-message-handling-by-sct" class="section-name selfRef">PTB Message Handling by SCTP</a>
</h5>
<p id="section-6.2.1.4-1">Normal ICMP validation <span class="bcp14">MUST</span> be performed as specified in
<span><a href="https://www.rfc-editor.org/rfc/rfc4960#appendix-C" class="relref">Appendix C</a> of [<a href="#RFC4960" class="xref">RFC4960</a>]</span>.
This requires that the first 8 bytes of the SCTP common header are quoted in the
payload of the PTB message, which can be the case for ICMPv4 and
is normally the case for ICMPv6.<a href="#section-6.2.1.4-1" class="pilcrow">¶</a></p>
<p id="section-6.2.1.4-2">When a PTB message has been validated, the PL_PTB_SIZE
calculated from the PTB_SIZE reported in the PTB message <span class="bcp14">SHOULD</span> be
used with the DPLPMTUD algorithm, provided that the reported
PL_PTB_SIZE is less than the current probe size (see <a href="#mechanism-ptb" class="xref">Section 4.6</a>).<a href="#section-6.2.1.4-2" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<section id="section-6.2.2">
<h4 id="name-dplpmtud-for-sctp-udp">
<a href="#section-6.2.2" class="section-number selfRef">6.2.2. </a><a href="#name-dplpmtud-for-sctp-udp" class="section-name selfRef">DPLPMTUD for SCTP/UDP</a>
</h4>
<p id="section-6.2.2-1">The UDP encapsulation of SCTP is specified in <span>[<a href="#RFC6951" class="xref">RFC6951</a>]</span>.<a href="#section-6.2.2-1" class="pilcrow">¶</a></p>
<p id="section-6.2.2-2">This specification updates the reference to RFC 4821 in Section
<a href="https://www.rfc-editor.org/rfc/rfc6951#section-5.6" class="relref">5.6</a>
of RFC 6951 to refer to this document (RFC 8899). RFC 6951 is updated
by the addition of the following sentence at the end of
Section <a href="https://www.rfc-editor.org/rfc/rfc6951#section-5.6" class="relref">5.6</a>:<a href="#section-6.2.2-2" class="pilcrow">¶</a></p>
<blockquote id="section-6.2.2-3">
<p id="section-6.2.2-3.1">The <span class="bcp14">RECOMMENDED</span> method for determining the MTU of the
path is specified in RFC 8899.<a href="#section-6.2.2-3.1" class="pilcrow">¶</a></p>
</blockquote>
<section id="section-6.2.2.1">
<h5 id="name-initial-connectivity-3">
<a href="#section-6.2.2.1" class="section-number selfRef">6.2.2.1. </a><a href="#name-initial-connectivity-3" class="section-name selfRef">Initial Connectivity</a>
</h5>
<p id="section-6.2.2.1-1">A sender can enter the BASE state as soon as SCTP connectivity
has been confirmed.<a href="#section-6.2.2.1-1" class="pilcrow">¶</a></p>
</section>
<div id="sctp_over_udp_probing">
<section id="section-6.2.2.2">
<h5 id="name-sending-sctp-udp-probe-pack">
<a href="#section-6.2.2.2" class="section-number selfRef">6.2.2.2. </a><a href="#name-sending-sctp-udp-probe-pack" class="section-name selfRef">Sending SCTP/UDP Probe Packets</a>
</h5>
<p id="section-6.2.2.2-1">Packet probing can be performed as specified in <a href="#sctp_over_ip_probing" class="xref">Section 6.2.1.2</a>. The size of the probe
packet includes the 8 bytes of UDP header. This has to be
considered when filling the probe packet with the PAD chunk.<a href="#section-6.2.2.2-1" class="pilcrow">¶</a></p>
</section>
</div>
<section id="section-6.2.2.3">
<h5 id="name-validating-the-path-with-sct">
<a href="#section-6.2.2.3" class="section-number selfRef">6.2.2.3. </a><a href="#name-validating-the-path-with-sct" class="section-name selfRef">Validating the Path with SCTP/UDP</a>
</h5>
<p id="section-6.2.2.3-1"> SCTP provides an acknowledged PL; therefore, a sender does not
implement the CONFIRMATION_TIMER while in the SEARCH_COMPLETE
state.<a href="#section-6.2.2.3-1" class="pilcrow">¶</a></p>
</section>
<div id="sctp_over_udp_ptb_handling">
<section id="section-6.2.2.4">
<h5 id="name-handling-of-ptb-messages-by">
<a href="#section-6.2.2.4" class="section-number selfRef">6.2.2.4. </a><a href="#name-handling-of-ptb-messages-by" class="section-name selfRef">Handling of PTB Messages by SCTP/UDP</a>
</h5>
<p id="section-6.2.2.4-1">ICMP validation <span class="bcp14">MUST</span> be performed for PTB messages as specified in
<span><a href="https://www.rfc-editor.org/rfc/rfc4960#appendix-C" class="relref">Appendix C</a> of [<a href="#RFC4960" class="xref">RFC4960</a>]</span>.
This requires that
the first 8 bytes of the SCTP common header are contained in the
PTB message, which can be the case for ICMPv4 (but note the UDP
header also consumes a part of the quoted packet header) and is
normally the case for ICMPv6. When the validation is completed, the
PL_PTB_SIZE calculated from the PTB_SIZE in the PTB message <span class="bcp14">SHOULD</span>
be used with the DPLPMTUD providing that the reported PL_PTB_SIZE
is less than the current probe size.<a href="#section-6.2.2.4-1" class="pilcrow">¶</a></p>
</section>
</div>
</section>
<section id="section-6.2.3">
<h4 id="name-dplpmtud-for-sctp-dtls">
<a href="#section-6.2.3" class="section-number selfRef">6.2.3. </a><a href="#name-dplpmtud-for-sctp-dtls" class="section-name selfRef">DPLPMTUD for SCTP/DTLS</a>
</h4>
<p id="section-6.2.3-1">The Datagram Transport Layer Security (DTLS) encapsulation of SCTP
is specified in <span>[<a href="#RFC8261" class="xref">RFC8261</a>]</span>. This is used for
data channels in WebRTC implementations. This specification updates
the reference to RFC 4821 in Section
<a href="https://www.rfc-editor.org/rfc/rfc8261#section-5" class="relref">5</a>
of RFC 8261 to refer to this document (RFC 8899).<a href="#section-6.2.3-1" class="pilcrow">¶</a></p>
<section id="section-6.2.3.1">
<h5 id="name-initial-connectivity-4">
<a href="#section-6.2.3.1" class="section-number selfRef">6.2.3.1. </a><a href="#name-initial-connectivity-4" class="section-name selfRef">Initial Connectivity</a>
</h5>
<p id="section-6.2.3.1-1">A sender can enter the BASE state as soon as SCTP connectivity
has been confirmed.<a href="#section-6.2.3.1-1" class="pilcrow">¶</a></p>
</section>
<div id="sctp_over_dtls_probing">
<section id="section-6.2.3.2">
<h5 id="name-sending-sctp-dtls-probe-pac">
<a href="#section-6.2.3.2" class="section-number selfRef">6.2.3.2. </a><a href="#name-sending-sctp-dtls-probe-pac" class="section-name selfRef">Sending SCTP/DTLS Probe Packets</a>
</h5>
<p id="section-6.2.3.2-1">Packet probing can be done as specified in <a href="#sctp_over_ip_probing" class="xref">Section 6.2.1.2</a>. The maximum payload is
reduced by the size of the DTLS headers, which has to be considered
when filling the PAD chunk. The size of the probe packet includes
the DTLS PL headers. This has to be considered when filling the
probe packet with the PAD chunk.<a href="#section-6.2.3.2-1" class="pilcrow">¶</a></p>
</section>
</div>
<section id="section-6.2.3.3">
<h5 id="name-validating-the-path-with-sctp">
<a href="#section-6.2.3.3" class="section-number selfRef">6.2.3.3. </a><a href="#name-validating-the-path-with-sctp" class="section-name selfRef">Validating the Path with SCTP/DTLS</a>
</h5>
<p id="section-6.2.3.3-1">Since SCTP provides an acknowledged PL, a sender <span class="bcp14">MUST NOT</span>
implement the CONFIRMATION_TIMER while in the SEARCH_COMPLETE
state.<a href="#section-6.2.3.3-1" class="pilcrow">¶</a></p>
</section>
<div id="sctp_over_dtls_ptb_handling">
<section id="section-6.2.3.4">
<h5 id="name-handling-of-ptb-messages-by-">
<a href="#section-6.2.3.4" class="section-number selfRef">6.2.3.4. </a><a href="#name-handling-of-ptb-messages-by-" class="section-name selfRef">Handling of PTB Messages by SCTP/DTLS</a>
</h5>
<p id="section-6.2.3.4-1"><span>[<a href="#RFC4960" class="xref">RFC4960</a>]</span> does not specify a way to
validate SCTP/DTLS ICMP message payload and neither does this
document. This can prevent processing of PTB messages at the
PL.<a href="#section-6.2.3.4-1" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</section>
<section id="section-6.3">
<h3 id="name-dplpmtud-for-quic">
<a href="#section-6.3" class="section-number selfRef">6.3. </a><a href="#name-dplpmtud-for-quic" class="section-name selfRef">DPLPMTUD for QUIC</a>
</h3>
<p id="section-6.3-1">QUIC <span>[<a href="#I-D.ietf-quic-transport" class="xref">QUIC</a>]</span> is a UDP-based
PL that provides reception feedback. The UDP payload includes a QUIC
packet header, a protected payload, and any authentication fields. It
supports padding and packet coalescence that can be used to construct
probe packets. From the perspective of DPLPMTUD, QUIC can function as
an acknowledged PL. <span>[<a href="#I-D.ietf-quic-transport" class="xref">QUIC</a>]</span>
describes the method for using DPLPMTUD with QUIC packets.<a href="#section-6.3-1" class="pilcrow">¶</a></p>
</section>
</section>
</div>
<div id="IANA">
<section id="section-7">
<h2 id="name-iana-considerations">
<a href="#section-7" class="section-number selfRef">7. </a><a href="#name-iana-considerations" class="section-name selfRef">IANA Considerations</a>
</h2>
<p id="section-7-1">This document has no IANA actions.<a href="#section-7-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="Security">
<section id="section-8">
<h2 id="name-security-considerations">
<a href="#section-8" class="section-number selfRef">8. </a><a href="#name-security-considerations" class="section-name selfRef">Security Considerations</a>
</h2>
<p id="section-8-1">The security considerations for the use of UDP and SCTP are provided
in the referenced RFCs.<a href="#section-8-1" class="pilcrow">¶</a></p>
<p id="section-8-2"> To avoid excessive load, the interval between individual probe packets
<span class="bcp14">MUST</span> be at least one RTT, and the interval between rounds of probing is
determined by the PMTU_RAISE_TIMER.<a href="#section-8-2" class="pilcrow">¶</a></p>
<p id="section-8-3">A PL sender needs to ensure that the method used to confirm reception
of probe packets protects from off-path attackers injecting
packets into the path. This protection is provided in IETF-defined
protocols (e.g., TCP, SCTP) using a randomly initialized sequence
number. A description of one way to do this when using UDP is provided
in Section
<a href="https://www.rfc-editor.org/rfc/rfc8085#section-5.1" class="relref">5.1</a>
of <span>[<a href="#BCP145" class="xref">BCP145</a>]</span>).<a href="#section-8-3" class="pilcrow">¶</a></p>
<p id="section-8-4">There are cases where ICMP Packet Too Big (PTB) messages are not
delivered due to policy, configuration, or equipment design
(see <a href="#Classic-PMTUD" class="xref">Section 1.1</a>). This method therefore does not rely
upon PTB messages being received but is able to utilize these when they
are received by the sender. PTB messages could potentially be used to
cause a node to inappropriately reduce the PLPMTU. A node supporting
DPLPMTUD <span class="bcp14">MUST</span> therefore appropriately validate the payload of PTB
messages to ensure these are received in response to transmitted traffic
(i.e., a reported error condition that corresponds to a datagram
actually sent by the path layer, see <a href="#PTB" class="xref">Section 4.6.1</a>).<a href="#section-8-4" class="pilcrow">¶</a></p>
<p id="section-8-5">An on-path attacker able to create a PTB message could forge PTB
messages that include a valid quoted IP packet. Such an attack could be
used to drive down the PLPMTU. An on-path device could similarly force a
reduction of the PLPMTU by implementing a policy that drops packets
larger than a configured size. There are two ways this method can be
mitigated against such attacks: first, by ensuring that a PL sender never
reduces the PLPMTU below the base size solely in response to receiving a
PTB message. This is achieved by first entering the BASE state when such
a message is received. Second, the design does not require processing of
PTB messages; a PL sender could therefore suspend processing of PTB
messages (e.g., in a robustness mode after detecting that subsequent
probes actually confirm that a size larger than the PTB_SIZE is supported
by a path).<a href="#section-8-5" class="pilcrow">¶</a></p>
<p id="section-8-6">Parsing the quoted packet inside a PTB message can
introduce additional per-packet processing at the PL sender.
This processing <span class="bcp14">SHOULD</span> be limited to avoid a
denial-of-service attack when arbitrary headers are included. Rate-limiting
the processing could result in PTB messages not being
received by a PL; however, the DPLPMTUD method is robust to such
loss.<a href="#section-8-6" class="pilcrow">¶</a></p>
<p id="section-8-7">The successful processing of an ICMP message can trigger a probe
when the reported PTB size is valid, but this does not
directly update the PLPMTU for the path. This prevents a message
attempting to black hole data by indicating a size larger than
supported by the path.<a href="#section-8-7" class="pilcrow">¶</a></p>
<p id="section-8-8">It is possible that the information about a path is not stable. This
could be a result of forwarding across more than one path that has a
different actual PMTU or a single path presents a varying PMTU. The
design of a PLPMTUD implementation <span class="bcp14">SHOULD</span> consider how to mitigate the
effects of varying path information. One possible mitigation is to
provide robustness (see <a href="#robustness" class="xref">Section 5.4</a>) in the method
that avoids oscillation in the MPS.<a href="#section-8-8" class="pilcrow">¶</a></p>
<p id="section-8-9">
DPLPMTUD methods can introduce padding data to inflate the length
of the datagram to the total size required for a probe packet. The
total size of a probe packet includes all headers and padding added
to the payload data being sent (e.g., including security-related
fields such as an AEAD tag and TLS record layer padding). The value
of the padding data does not influence the DPLPMTUD search algorithm,
and therefore needs to be set consistent with the policy of the PL.<a href="#section-8-9" class="pilcrow">¶</a></p>
<p id="section-8-10"> If a PL can make use of cryptographic confidentiality or
data-integrity mechanisms, then the design ought to avoid adding anything
(e.g., padding) to DPLPMTUD probe packets that is not also protected by
those cryptographic mechanisms.<a href="#section-8-10" class="pilcrow">¶</a></p>
</section>
</div>
<section id="section-9">
<h2 id="name-references">
<a href="#section-9" class="section-number selfRef">9. </a><a href="#name-references" class="section-name selfRef">References</a>
</h2>
<section id="section-9.1">
<h3 id="name-normative-references">
<a href="#section-9.1" class="section-number selfRef">9.1. </a><a href="#name-normative-references" class="section-name selfRef">Normative References</a>
</h3>
<dl class="references">
<dt id="BCP145">[BCP145]</dt>
<dd>
<span class="refAuthor">Eggert, L.</span><span class="refAuthor">, Fairhurst, G.</span><span class="refAuthor">, and G. Shepherd</span>, <span class="refTitle">"UDP Usage Guidelines"</span>, <span class="seriesInfo">BCP 145</span>, <span class="seriesInfo">RFC 8085</span>, <time datetime="2017-03" class="refDate">March 2017</time>, <span><<a href="https://www.rfc-editor.org/info/bcp145">https://www.rfc-editor.org/info/bcp145</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC0768">[RFC0768]</dt>
<dd>
<span class="refAuthor">Postel, J.</span>, <span class="refTitle">"User Datagram Protocol"</span>, <span class="seriesInfo">STD 6</span>, <span class="seriesInfo">RFC 768</span>, <span class="seriesInfo">DOI 10.17487/RFC0768</span>, <time datetime="1980-08" class="refDate">August 1980</time>, <span><<a href="https://www.rfc-editor.org/info/rfc768">https://www.rfc-editor.org/info/rfc768</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC0791">[RFC0791]</dt>
<dd>
<span class="refAuthor">Postel, J.</span>, <span class="refTitle">"Internet Protocol"</span>, <span class="seriesInfo">STD 5</span>, <span class="seriesInfo">RFC 791</span>, <span class="seriesInfo">DOI 10.17487/RFC0791</span>, <time datetime="1981-09" class="refDate">September 1981</time>, <span><<a href="https://www.rfc-editor.org/info/rfc791">https://www.rfc-editor.org/info/rfc791</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC1191">[RFC1191]</dt>
<dd>
<span class="refAuthor">Mogul, J.</span><span class="refAuthor"> and S. Deering</span>, <span class="refTitle">"Path MTU discovery"</span>, <span class="seriesInfo">RFC 1191</span>, <span class="seriesInfo">DOI 10.17487/RFC1191</span>, <time datetime="1990-11" class="refDate">November 1990</time>, <span><<a href="https://www.rfc-editor.org/info/rfc1191">https://www.rfc-editor.org/info/rfc1191</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC2119">[RFC2119]</dt>
<dd>
<span class="refAuthor">Bradner, S.</span>, <span class="refTitle">"Key words for use in RFCs to Indicate Requirement Levels"</span>, <span class="seriesInfo">BCP 14</span>, <span class="seriesInfo">RFC 2119</span>, <span class="seriesInfo">DOI 10.17487/RFC2119</span>, <time datetime="1997-03" class="refDate">March 1997</time>, <span><<a href="https://www.rfc-editor.org/info/rfc2119">https://www.rfc-editor.org/info/rfc2119</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC3828">[RFC3828]</dt>
<dd>
<span class="refAuthor">Larzon, L-A.</span><span class="refAuthor">, Degermark, M.</span><span class="refAuthor">, Pink, S.</span><span class="refAuthor">, Jonsson, L-E., Ed.</span><span class="refAuthor">, and G. Fairhurst, Ed.</span>, <span class="refTitle">"The Lightweight User Datagram Protocol (UDP-Lite)"</span>, <span class="seriesInfo">RFC 3828</span>, <span class="seriesInfo">DOI 10.17487/RFC3828</span>, <time datetime="2004-07" class="refDate">July 2004</time>, <span><<a href="https://www.rfc-editor.org/info/rfc3828">https://www.rfc-editor.org/info/rfc3828</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC4820">[RFC4820]</dt>
<dd>
<span class="refAuthor">Tuexen, M.</span><span class="refAuthor">, Stewart, R.</span><span class="refAuthor">, and P. Lei</span>, <span class="refTitle">"Padding Chunk and Parameter for the Stream Control Transmission Protocol (SCTP)"</span>, <span class="seriesInfo">RFC 4820</span>, <span class="seriesInfo">DOI 10.17487/RFC4820</span>, <time datetime="2007-03" class="refDate">March 2007</time>, <span><<a href="https://www.rfc-editor.org/info/rfc4820">https://www.rfc-editor.org/info/rfc4820</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC4960">[RFC4960]</dt>
<dd>
<span class="refAuthor">Stewart, R., Ed.</span>, <span class="refTitle">"Stream Control Transmission Protocol"</span>, <span class="seriesInfo">RFC 4960</span>, <span class="seriesInfo">DOI 10.17487/RFC4960</span>, <time datetime="2007-09" class="refDate">September 2007</time>, <span><<a href="https://www.rfc-editor.org/info/rfc4960">https://www.rfc-editor.org/info/rfc4960</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC6951">[RFC6951]</dt>
<dd>
<span class="refAuthor">Tuexen, M.</span><span class="refAuthor"> and R. Stewart</span>, <span class="refTitle">"UDP Encapsulation of Stream Control Transmission Protocol (SCTP) Packets for End-Host to End-Host Communication"</span>, <span class="seriesInfo">RFC 6951</span>, <span class="seriesInfo">DOI 10.17487/RFC6951</span>, <time datetime="2013-05" class="refDate">May 2013</time>, <span><<a href="https://www.rfc-editor.org/info/rfc6951">https://www.rfc-editor.org/info/rfc6951</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8174">[RFC8174]</dt>
<dd>
<span class="refAuthor">Leiba, B.</span>, <span class="refTitle">"Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words"</span>, <span class="seriesInfo">BCP 14</span>, <span class="seriesInfo">RFC 8174</span>, <span class="seriesInfo">DOI 10.17487/RFC8174</span>, <time datetime="2017-05" class="refDate">May 2017</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8174">https://www.rfc-editor.org/info/rfc8174</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8200">[RFC8200]</dt>
<dd>
<span class="refAuthor">Deering, S.</span><span class="refAuthor"> and R. Hinden</span>, <span class="refTitle">"Internet Protocol, Version 6 (IPv6) Specification"</span>, <span class="seriesInfo">STD 86</span>, <span class="seriesInfo">RFC 8200</span>, <span class="seriesInfo">DOI 10.17487/RFC8200</span>, <time datetime="2017-07" class="refDate">July 2017</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8200">https://www.rfc-editor.org/info/rfc8200</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8201">[RFC8201]</dt>
<dd>
<span class="refAuthor">McCann, J.</span><span class="refAuthor">, Deering, S.</span><span class="refAuthor">, Mogul, J.</span><span class="refAuthor">, and R. Hinden, Ed.</span>, <span class="refTitle">"Path MTU Discovery for IP version 6"</span>, <span class="seriesInfo">STD 87</span>, <span class="seriesInfo">RFC 8201</span>, <span class="seriesInfo">DOI 10.17487/RFC8201</span>, <time datetime="2017-07" class="refDate">July 2017</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8201">https://www.rfc-editor.org/info/rfc8201</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8261">[RFC8261]</dt>
<dd>
<span class="refAuthor">Tuexen, M.</span><span class="refAuthor">, Stewart, R.</span><span class="refAuthor">, Jesup, R.</span><span class="refAuthor">, and S. Loreto</span>, <span class="refTitle">"Datagram Transport Layer Security (DTLS) Encapsulation of SCTP Packets"</span>, <span class="seriesInfo">RFC 8261</span>, <span class="seriesInfo">DOI 10.17487/RFC8261</span>, <time datetime="2017-11" class="refDate">November 2017</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8261">https://www.rfc-editor.org/info/rfc8261</a>></span>. </dd>
<dd class="break"></dd>
</dl>
</section>
<section id="section-9.2">
<h3 id="name-informative-references">
<a href="#section-9.2" class="section-number selfRef">9.2. </a><a href="#name-informative-references" class="section-name selfRef">Informative References</a>
</h3>
<dl class="references">
<dt id="I-D.ietf-quic-transport">[QUIC]</dt>
<dd>
<span class="refAuthor">Iyengar, J., Ed.</span><span class="refAuthor"> and M. Thomson, Ed.</span>, <span class="refTitle">"QUIC: A UDP-Based Multiplexed and Secure Transport"</span>, <span class="refContent">Work in Progress</span>, <span class="seriesInfo">Internet-Draft, draft-ietf-quic-transport-29</span>, <time datetime="2020-06-10" class="refDate">10 June 2020</time>, <span><<a href="https://tools.ietf.org/html/draft-ietf-quic-transport-29">https://tools.ietf.org/html/draft-ietf-quic-transport-29</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC0792">[RFC0792]</dt>
<dd>
<span class="refAuthor">Postel, J.</span>, <span class="refTitle">"Internet Control Message Protocol"</span>, <span class="seriesInfo">STD 5</span>, <span class="seriesInfo">RFC 792</span>, <span class="seriesInfo">DOI 10.17487/RFC0792</span>, <time datetime="1981-09" class="refDate">September 1981</time>, <span><<a href="https://www.rfc-editor.org/info/rfc792">https://www.rfc-editor.org/info/rfc792</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC1122">[RFC1122]</dt>
<dd>
<span class="refAuthor">Braden, R., Ed.</span>, <span class="refTitle">"Requirements for Internet Hosts - Communication Layers"</span>, <span class="seriesInfo">STD 3</span>, <span class="seriesInfo">RFC 1122</span>, <span class="seriesInfo">DOI 10.17487/RFC1122</span>, <time datetime="1989-10" class="refDate">October 1989</time>, <span><<a href="https://www.rfc-editor.org/info/rfc1122">https://www.rfc-editor.org/info/rfc1122</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC1812">[RFC1812]</dt>
<dd>
<span class="refAuthor">Baker, F., Ed.</span>, <span class="refTitle">"Requirements for IP Version 4 Routers"</span>, <span class="seriesInfo">RFC 1812</span>, <span class="seriesInfo">DOI 10.17487/RFC1812</span>, <time datetime="1995-06" class="refDate">June 1995</time>, <span><<a href="https://www.rfc-editor.org/info/rfc1812">https://www.rfc-editor.org/info/rfc1812</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC2923">[RFC2923]</dt>
<dd>
<span class="refAuthor">Lahey, K.</span>, <span class="refTitle">"TCP Problems with Path MTU Discovery"</span>, <span class="seriesInfo">RFC 2923</span>, <span class="seriesInfo">DOI 10.17487/RFC2923</span>, <time datetime="2000-09" class="refDate">September 2000</time>, <span><<a href="https://www.rfc-editor.org/info/rfc2923">https://www.rfc-editor.org/info/rfc2923</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC4340">[RFC4340]</dt>
<dd>
<span class="refAuthor">Kohler, E.</span><span class="refAuthor">, Handley, M.</span><span class="refAuthor">, and S. Floyd</span>, <span class="refTitle">"Datagram Congestion Control Protocol (DCCP)"</span>, <span class="seriesInfo">RFC 4340</span>, <span class="seriesInfo">DOI 10.17487/RFC4340</span>, <time datetime="2006-03" class="refDate">March 2006</time>, <span><<a href="https://www.rfc-editor.org/info/rfc4340">https://www.rfc-editor.org/info/rfc4340</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC4443">[RFC4443]</dt>
<dd>
<span class="refAuthor">Conta, A.</span><span class="refAuthor">, Deering, S.</span><span class="refAuthor">, and M. Gupta, Ed.</span>, <span class="refTitle">"Internet Control Message Protocol (ICMPv6) for the Internet Protocol Version 6 (IPv6) Specification"</span>, <span class="seriesInfo">STD 89</span>, <span class="seriesInfo">RFC 4443</span>, <span class="seriesInfo">DOI 10.17487/RFC4443</span>, <time datetime="2006-03" class="refDate">March 2006</time>, <span><<a href="https://www.rfc-editor.org/info/rfc4443">https://www.rfc-editor.org/info/rfc4443</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC4821">[RFC4821]</dt>
<dd>
<span class="refAuthor">Mathis, M.</span><span class="refAuthor"> and J. Heffner</span>, <span class="refTitle">"Packetization Layer Path MTU Discovery"</span>, <span class="seriesInfo">RFC 4821</span>, <span class="seriesInfo">DOI 10.17487/RFC4821</span>, <time datetime="2007-03" class="refDate">March 2007</time>, <span><<a href="https://www.rfc-editor.org/info/rfc4821">https://www.rfc-editor.org/info/rfc4821</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC4890">[RFC4890]</dt>
<dd>
<span class="refAuthor">Davies, E.</span><span class="refAuthor"> and J. Mohacsi</span>, <span class="refTitle">"Recommendations for Filtering ICMPv6 Messages in Firewalls"</span>, <span class="seriesInfo">RFC 4890</span>, <span class="seriesInfo">DOI 10.17487/RFC4890</span>, <time datetime="2007-05" class="refDate">May 2007</time>, <span><<a href="https://www.rfc-editor.org/info/rfc4890">https://www.rfc-editor.org/info/rfc4890</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC5508">[RFC5508]</dt>
<dd>
<span class="refAuthor">Srisuresh, P.</span><span class="refAuthor">, Ford, B.</span><span class="refAuthor">, Sivakumar, S.</span><span class="refAuthor">, and S. Guha</span>, <span class="refTitle">"NAT Behavioral Requirements for ICMP"</span>, <span class="seriesInfo">BCP 148</span>, <span class="seriesInfo">RFC 5508</span>, <span class="seriesInfo">DOI 10.17487/RFC5508</span>, <time datetime="2009-04" class="refDate">April 2009</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5508">https://www.rfc-editor.org/info/rfc5508</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8900">[RFC8900]</dt>
<dd>
<span class="refAuthor">Bonica, R.</span><span class="refAuthor">, Baker, F.</span><span class="refAuthor">, Huston, G.</span><span class="refAuthor">, Hinden, R.</span><span class="refAuthor">, Troan, O.</span><span class="refAuthor">, and F. Gont</span>, <span class="refTitle">"IP Fragmentation Considered Fragile"</span>, <span class="seriesInfo">RFC 8900</span>, <span class="seriesInfo">BCP 230</span>, <time datetime="2020-09" class="refDate">September 2020</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8900">https://www.rfc-editor.org/info/rfc8900</a>></span>. </dd>
<dd class="break"></dd>
<dt id="I-D.ietf-intarea-tunnels">[TUNNELS]</dt>
<dd>
<span class="refAuthor">Touch, J.</span><span class="refAuthor"> and M. Townsley</span>, <span class="refTitle">"IP Tunnels in the Internet Architecture"</span>, <span class="refContent">Work in Progress</span>, <span class="seriesInfo">Internet-Draft, draft-ietf-intarea-tunnels-10</span>, <time datetime="2019-09-12" class="refDate">12 September 2019</time>, <span><<a href="https://tools.ietf.org/html/draft-ietf-intarea-tunnels-10">https://tools.ietf.org/html/draft-ietf-intarea-tunnels-10</a>></span>. </dd>
<dd class="break"></dd>
</dl>
</section>
</section>
<div id="Acknowledgments">
<section id="section-appendix.a">
<h2 id="name-acknowledgments">
<a href="#name-acknowledgments" class="section-name selfRef">Acknowledgments</a>
</h2>
<p id="section-appendix.a-1">This work was partially funded by the European Union Horizon 2020
Research and Innovation Programme under grant agreement No. 644334,
"A New, Evolutive API and Transport-Layer Architecture for the Internet"
(NEAT). The views expressed are solely those of the author(s).<a href="#section-appendix.a-1" class="pilcrow">¶</a></p>
<p id="section-appendix.a-2">
Thanks to all who have commented or contributed, the TSVWG and QUIC
working groups, and <span class="contact-name">Mathew Calder</span> and
<span class="contact-name">Julius Flohr</span> for providing early
implementations.<a href="#section-appendix.a-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="authors-addresses">
<section id="section-appendix.b">
<h2 id="name-authors-addresses">
<a href="#name-authors-addresses" class="section-name selfRef">Authors' Addresses</a>
</h2>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Godred Fairhurst</span></div>
<div dir="auto" class="left"><span class="org">University of Aberdeen</span></div>
<div dir="auto" class="left"><span class="extended-address">School of Engineering</span></div>
<div dir="auto" class="left"><span class="street-address">Fraser Noble Building</span></div>
<div dir="auto" class="left"><span class="locality">Aberdeen</span></div>
<div dir="auto" class="left"><span class="postal-code">AB24 3UE</span></div>
<div dir="auto" class="left"><span class="country-name">United Kingdom</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:gorry@erg.abdn.ac.uk" class="email">gorry@erg.abdn.ac.uk</a>
</div>
</address>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Tom Jones</span></div>
<div dir="auto" class="left"><span class="org">University of Aberdeen</span></div>
<div dir="auto" class="left"><span class="extended-address">School of Engineering</span></div>
<div dir="auto" class="left"><span class="street-address">Fraser Noble Building</span></div>
<div dir="auto" class="left"><span class="locality">Aberdeen</span></div>
<div dir="auto" class="left"><span class="postal-code">AB24 3UE</span></div>
<div dir="auto" class="left"><span class="country-name">United Kingdom</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:tom@erg.abdn.ac.uk" class="email">tom@erg.abdn.ac.uk</a>
</div>
</address>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Michael Tüxen</span></div>
<div dir="auto" class="left"><span class="org">Münster University of Applied Sciences</span></div>
<div dir="auto" class="left"><span class="street-address">Stegerwaldstrasse 39</span></div>
<div dir="auto" class="left">
<span class="postal-code">48565</span> <span class="locality">Steinfurt</span>
</div>
<div dir="auto" class="left"><span class="country-name">Germany</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:tuexen@fh-muenster.de" class="email">tuexen@fh-muenster.de</a>
</div>
</address>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Irene Rüngeler</span></div>
<div dir="auto" class="left"><span class="org">Münster University of Applied Sciences</span></div>
<div dir="auto" class="left"><span class="street-address">Stegerwaldstrasse 39</span></div>
<div dir="auto" class="left">
<span class="postal-code">48565</span> <span class="locality">Steinfurt</span>
</div>
<div dir="auto" class="left"><span class="country-name">Germany</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:i.ruengeler@fh-muenster.de" class="email">i.ruengeler@fh-muenster.de</a>
</div>
</address>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Timo Völker</span></div>
<div dir="auto" class="left"><span class="org">Münster University of Applied Sciences</span></div>
<div dir="auto" class="left"><span class="street-address">Stegerwaldstrasse 39</span></div>
<div dir="auto" class="left">
<span class="postal-code">48565</span> <span class="locality">Steinfurt</span>
</div>
<div dir="auto" class="left"><span class="country-name">Germany</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:timo.voelker@fh-muenster.de" class="email">timo.voelker@fh-muenster.de</a>
</div>
</address>
</section>
</div>
<script>const toc = document.getElementById("toc");
toc.querySelector("h2").addEventListener("click", e => {
toc.classList.toggle("active");
});
toc.querySelector("nav").addEventListener("click", e => {
toc.classList.remove("active");
});
</script>
</body>
</html>
|