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
|
<pre>Network Working Group P. Karn, Ed.
Request for Comments: 3819 Qualcomm
BCP: 89 C. Bormann
Category: Best Current Practice Universitaet Bremen TZI
G. Fairhurst
University of Aberdeen
D. Grossman
Motorola, Inc.
R. Ludwig
Ericsson Research
J. Mahdavi
Novell
G. Montenegro
Sun Microsystems Laboratories, Europe
J. Touch
USC/ISI
L. Wood
Cisco Systems
July 2004
<span class="h1">Advice for Internet Subnetwork Designers</span>
Status of this Memo
This document specifies an Internet Best Current Practices for the
Internet Community, and requests discussion and suggestions for
improvements. Distribution of this memo is unlimited.
Copyright Notice
Copyright (C) The Internet Society (2004).
Abstract
This document provides advice to the designers of digital
communication equipment, link-layer protocols, and packet-switched
local networks (collectively referred to as subnetworks), who wish to
support the Internet protocols but may be unfamiliar with the
Internet architecture and the implications of their design choices on
the performance and efficiency of the Internet.
<span class="grey">Karn, et al. Best Current Practice [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
Table of Contents
<a href="#section-1">1</a>. Introduction and Overview. . . . . . . . . . . . . . . . . . . <a href="#page-2">2</a>
<a href="#section-2">2</a>. Maximum Transmission Units (MTUs) and IP Fragmentation . . . . <a href="#page-4">4</a>
<a href="#section-2.1">2.1</a>. Choosing the MTU in Slow Networks. . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-3">3</a>. Framing on Connection-Oriented Subnetworks . . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-4">4</a>. Connection-Oriented Subnetworks. . . . . . . . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-5">5</a>. Broadcasting and Discovery . . . . . . . . . . . . . . . . . . <a href="#page-10">10</a>
<a href="#section-6">6</a>. Multicasting . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-11">11</a>
<a href="#section-7">7</a>. Bandwidth on Demand (BoD) Subnets. . . . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-8">8</a>. Reliability and Error Control. . . . . . . . . . . . . . . . . <a href="#page-14">14</a>
<a href="#section-8.1">8.1</a>. TCP vs Link-Layer Retransmission . . . . . . . . . . . . <a href="#page-14">14</a>
<a href="#section-8.2">8.2</a>. Recovery from Subnetwork Outages . . . . . . . . . . . . <a href="#page-17">17</a>
<a href="#section-8.3">8.3</a>. CRCs, Checksums and Error Detection. . . . . . . . . . . <a href="#page-18">18</a>
<a href="#section-8.4">8.4</a>. How TCP Works. . . . . . . . . . . . . . . . . . . . . . <a href="#page-20">20</a>
<a href="#section-8.5">8.5</a>. TCP Performance Characteristics. . . . . . . . . . . . . <a href="#page-22">22</a>
<a href="#section-8.5.1">8.5.1</a>. The Formulae . . . . . . . . . . . . . . . . . . <a href="#page-22">22</a>
<a href="#section-8.5.2">8.5.2</a>. Assumptions. . . . . . . . . . . . . . . . . . . <a href="#page-23">23</a>
8.5.3. Analysis of Link-Layer Effects on TCP
Performance. . . . . . . . . . . . . . . . . . . <a href="#page-24">24</a>
<a href="#section-9">9</a>. Quality-of-Service (QoS) Considerations. . . . . . . . . . . . <a href="#page-26">26</a>
<a href="#section-10">10</a>. Fairness vs Performance. . . . . . . . . . . . . . . . . . . . <a href="#page-29">29</a>
<a href="#section-11">11</a>. Delay Characteristics. . . . . . . . . . . . . . . . . . . . . <a href="#page-30">30</a>
<a href="#section-12">12</a>. Bandwidth Asymmetries. . . . . . . . . . . . . . . . . . . . . <a href="#page-31">31</a>
<a href="#section-13">13</a>. Buffering, Flow and Congestion Control . . . . . . . . . . . . <a href="#page-31">31</a>
<a href="#section-14">14</a>. Compression. . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-34">34</a>
<a href="#section-15">15</a>. Packet Reordering. . . . . . . . . . . . . . . . . . . . . . . <a href="#page-36">36</a>
<a href="#section-16">16</a>. Mobility . . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-37">37</a>
<a href="#section-17">17</a>. Routing. . . . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-39">39</a>
<a href="#section-18">18</a>. Security Considerations. . . . . . . . . . . . . . . . . . . . <a href="#page-41">41</a>
<a href="#section-19">19</a>. Contributors . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-44">44</a>
<a href="#section-20">20</a>. Informative References . . . . . . . . . . . . . . . . . . . . <a href="#page-45">45</a>
<a href="#section-21">21</a>. Contributors' Addresses. . . . . . . . . . . . . . . . . . . . <a href="#page-57">57</a>
<a href="#section-22">22</a>. Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . <a href="#page-58">58</a>
<a href="#section-23">23</a>. Full Copyright Statement . . . . . . . . . . . . . . . . . . . <a href="#page-60">60</a>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction and Overview</span>
IP, the Internet Protocol [<a href="./rfc791" title=""Internet Protocol"">RFC791</a>] [<a href="./rfc2460" title=""Internet Protocol, Version 6 (IPv6) Specification"">RFC2460</a>], is the core protocol of
the Internet. IP defines a simple "connectionless" packet-switched
network. The success of the Internet is largely attributed to IP's
simplicity, the "end-to-end principle" [<a href="#ref-SRC81" title=""End-to-End Arguments in System Design"">SRC81</a>] on which the Internet
is based, and the resulting ease of carrying IP on a wide variety of
subnetworks, not necessarily designed with IP in mind. A subnetwork
refers to any network operating immediately below the IP layer to
connect two or more systems using IP (i.e., end hosts or routers).
In its simplest form, this may be a direct connection between the IP
systems (e.g., using a length of cable or a wireless medium).
<span class="grey">Karn, et al. Best Current Practice [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
This document defines a subnetwork as a layer 2 network, which is a
network that does not rely upon the services of IP routers to forward
packets between parts of the subnetwork. However, IP routers may
bridge frames at Layer 2 between parts of a subnetwork. Sometimes,
it is convenient to aggregate a group of such subnetworks into a
single logical subnetwork. IP routing protocols (e.g., OSPF, IS-IS,
and PIM) can be configured to support this aggregation, but typically
present a layer-3 subnetwork rather than a layer-2 subnetwork. This
may also result in a specific packet passing several times over the
same layer-2 subnetwork via an intermediate layer-3 gateway (router).
Because that aggregation requires layer-3 components, issues thereof
are beyond the scope of this document.
However, while many subnetworks carry IP, they do not necessarily do
so with maximum efficiency, minimum complexity, or cost, nor do they
implement certain features to efficiently support newer Internet
features of increasing importance, such as multicasting or quality of
service.
With the explosive growth of the Internet, IP packets comprise an
increasingly large fraction of the traffic carried by the world's
telecommunications networks. It therefore makes sense to optimize
both existing and new subnetwork technologies for IP as much as
possible.
Optimizing a subnetwork for IP involves three complementary
considerations:
1. Providing functionality sufficient to carry IP.
2. Eliminating unnecessary functions that increase cost or
complexity.
3. Choosing subnetwork parameters that maximize the performance of
the Internet protocols.
Because IP is so simple, consideration 2 is more of an issue than
consideration 1. That is to say, subnetwork designers make many more
errors of commission than errors of omission. However, certain
enhancements to Internet features, such as multicasting and quality-
of-service, benefit significantly from support given by the
underlying subnetworks beyond that necessary to carry "traditional"
unicast, best-effort IP.
<span class="grey">Karn, et al. Best Current Practice [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
A major consideration in the efficient design of any layered
communication network is the appropriate layer(s) in which to
implement a given function. This issue was first addressed in the
seminal paper, "End-to-End Arguments in System Design" [<a href="#ref-SRC81" title=""End-to-End Arguments in System Design"">SRC81</a>]. That
paper argued that many functions can be implemented properly *only*
on an end-to-end basis, i.e., at the highest protocol layers, outside
the subnetwork. These functions include ensuring the reliable
delivery of data and the use of cryptography to provide
confidentiality and message integrity.
Such functions cannot be provided solely by the concatenation of
hop-by-hop services; duplicating these functions at the lower
protocol layers (i.e., within the subnetwork) can be needlessly
redundant or even harmful to cost and performance.
However, partial duplication of functionality in a lower layer can
*sometimes* be justified by performance, security, or availability
considerations. Examples include link-layer retransmission to
improve the performance of an unusually lossy channel, e.g., mobile
radio, link-level encryption intended to thwart traffic analysis, and
redundant transmission links to improve availability, increase
throughput, or to guarantee performance for certain classes of
traffic. Duplication of protocol functions should be done only with
an understanding of system-level implications, including possible
interactions with higher-layer mechanisms.
The original architecture of the Internet was influenced by the
end-to-end principle [<a href="#ref-SRC81" title=""End-to-End Arguments in System Design"">SRC81</a>], and has been, in our view, part of the
reason for the Internet's success.
The remainder of this document discusses the various subnetwork
design issues that the authors consider relevant to efficient IP
support.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Maximum Transmission Units (MTUs) and IP Fragmentation</span>
IPv4 packets (datagrams) vary in size, from 20 bytes (the size of the
IPv4 header alone) to a maximum of 65535 bytes. Subnetworks need not
support maximum-sized (64KB) IP packets, as IP provides a scheme that
breaks packets that are too large for a given subnetwork into
fragments that travel as independent IP packets and are reassembled
at the destination. The maximum packet size supported by a
subnetwork is known as its Maximum Transmission Unit (MTU).
Subnetworks may, but are not required to, indicate the length of each
packet they carry. One example is Ethernet with the widely used DIX
[<a href="#ref-DIX82" title=" Ethernet Local Area Network Specification Version 2.0">DIX82</a>] (not IEEE 802.3 [<a href="#ref-IEEE8023">IEEE8023</a>]) header, which lacks a length
<span class="grey">Karn, et al. Best Current Practice [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
field to indicate the true data length when the packet is padded to a
minimum of 60 bytes. This is not a problem for uncompressed IP
because each IP packet carries its own length field.
If optional header compression [<a href="./rfc1144" title=""Compressing TCP/IP Headers for Low-Speed Serial Links"">RFC1144</a>] [<a href="./rfc2507" title=""IP Header Compression"">RFC2507</a>] [<a href="./rfc2508" title=""Compressing IP/UDP/RTP Headers for Low-Speed Serial Links"">RFC2508</a>]
[<a href="./rfc3095" title=""RObust Header Compression (ROHC): Framework and four profiles: RTP, UDP, ESP, and uncompressed"">RFC3095</a>] is used, however, it is required that the link framing
indicate frame length because that is needed for the reconstruction
of the original header.
In IP version 4 (the version now in widespread use), fragmentation
can occur at either the sending host or in an intermediate router,
and fragments can be further fragmented at subsequent routers if
necessary.
In IP version 6 [<a href="./rfc2460" title=""Internet Protocol, Version 6 (IPv6) Specification"">RFC2460</a>], fragmentation can occur only at the
sending host; it cannot occur in a router (called "router
fragmentation" in this document).
Both IPv4 and IPv6 provide a "path MTU discovery" procedure [<a href="./rfc1191" title=""Path MTU Discovery"">RFC1191</a>]
[<a href="./rfc1435" title=""IESG Advice from Experience with Path MTU Discovery"">RFC1435</a>] [<a href="./rfc1981" title=""Path MTU Discovery for IP version 6"">RFC1981</a>] that allows the sending host to avoid
fragmentation by discovering the minimum MTU along a given path and
reduce its packet sizes accordingly. This procedure is optional in
IPv4 and IPv6.
Path MTU discovery is widely deployed, but it sometimes encounters
problems. Some routers fail to generate the ICMP messages that
convey path MTU information to the sender, and sometimes the ICMP
messages are blocked by overly restrictive firewalls. The result can
be a "Path MTU Black Hole" [<a href="./rfc2923" title=""TCP Problems with Path MTU Discovery"">RFC2923</a>] [<a href="./rfc1435" title=""IESG Advice from Experience with Path MTU Discovery"">RFC1435</a>].
The Path MTU Discovery procedure, the persistence of path MTU black
holes, and the deletion of router fragmentation in IPv6 reflect a
consensus of the Internet technical community that router
fragmentation is best avoided. This requires that subnetworks
support MTUs that are "reasonably" large. All IPv4 end hosts are
required to accept and reassemble IP packets of size 576 bytes
[<a href="./rfc791" title=""Internet Protocol"">RFC791</a>], but such a small value would clearly be inefficient.
Because IPv6 omits fragmentation by routers, [<a href="./rfc2460" title=""Internet Protocol, Version 6 (IPv6) Specification"">RFC2460</a>] specifies a
larger minimum MTU of 1280 bytes. Any subnetwork with an internal
packet payload smaller than 1280 bytes must implement a mechanism
that performs fragmentation/reassembly of IP packets to/from
subnetwork frames if it is to support IPv6.
If a subnetwork cannot directly support a "reasonable" MTU with
native framing mechanisms, it should internally fragment. That is,
it should transparently break IP packets into internal data elements
and reassemble them at the other end of the subnetwork.
<span class="grey">Karn, et al. Best Current Practice [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
This leaves the question of what is a "reasonable" MTU. Ethernet (10
and 100 Mb/s) has an MTU of 1500 bytes, and because of the ubiquity
of Ethernet few Internet paths currently have MTUs larger than this
value. This severely limits the utility of larger MTUs provided by
other subnetworks. Meanwhile, larger MTUs are increasingly desirable
on high-speed subnetworks to reduce the per-packet processing
overhead in host computers, and implementers are encouraged to
provide them even though they may not be usable when Ethernet is also
in the path.
Various "tunneling" schemes, such as GRE [<a href="./rfc2784" title=""Generic Routing Encapsulation (GRE)"">RFC2784</a>] or IP Security in
tunnel mode [<a href="./rfc2406" title=""IP Encapsulating Security Payload (ESP)"">RFC2406</a>], treat IP as a subnetwork for IP. Since
tunneling adds header overhead, it can trigger fragmentation, even
when the same physical subnetworks (e.g., Ethernet) are used on both
sides of the host performing IPsec encapsulation. Tunneling has made
it more difficult to avoid router fragmentation and has increased the
incidence of path MTU black holes [<a href="./rfc2401" title=""Security Architecture for the Internet Protocol"">RFC2401</a>] [<a href="./rfc2923" title=""TCP Problems with Path MTU Discovery"">RFC2923</a>]. Larger
subnetwork MTUs may help to alleviate this problem.
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. Choosing the MTU in Slow Networks</span>
In slow networks, the largest possible packet may take a considerable
amount of time to send. This is known as channelisation or
serialisation delay. Total end-to-end interactive response time
should not exceed the well-known human factors limit of 100 to 200
ms. This includes all sources of delay: electromagnetic propagation
delay, queuing delay, serialisation delay, and the store-and-forward
time, i.e., the time to transmit a packet at link speed.
At low link speeds, store-and-forward delays can dominate total
end-to-end delay; these are in turn directly influenced by the
maximum transmission unit (MTU) size. Even when an interactive
packet is given a higher queuing priority, it may have to wait for a
large bulk transfer packet to finish transmission. This worst-case
wait can be set by an appropriate choice of MTU.
For example, if the MTU is set to 1500 bytes, then an MTU-sized
packet will take about 8 milliseconds to send on a T1 (1.536 Mb/s)
link. But if the link speed is 19.2kb/s, then the transmission time
becomes 625 ms -- well above our 100-200ms limit. A 256-byte MTU
would lower this delay to a little over 100 ms. However, care should
be taken not to lower the MTU excessively, as this will increase
header overhead and trigger frequent router fragmentation (if Path
MTU discovery is not in use). This is likely to be the case with
multicast, where Path MTU discovery is ineffective.
One way to limit delay for interactive traffic without imposing a
small MTU is to give priority to this traffic and to preempt (abort)
<span class="grey">Karn, et al. Best Current Practice [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
the transmission of a lower-priority packet when a higher priority
packet arrives in the queue. However, the link resources used to
send the aborted packet are lost, and overall throughput will
decrease.
Another way to limit delay is to implement a link-level multiplexing
scheme that allows several packets to be in progress simultaneously,
with transmission priority given to segments of higher-priority IP
packets. For links using the Point-To-Point Protocol (PPP)
[<a href="./rfc1661" title=""The Point-to-Point Protocol (PPP)"">RFC1661</a>], multi-class multilink [<a href="./rfc2686" title=""The Multi-Class Extension to Multi-Link PPP"">RFC2686</a>] [<a href="./rfc2687" title=""PPP in a Real-time Oriented HDLC-like Framing"">RFC2687</a>] [<a href="./rfc2689" title=""Providing Integrated Services over Low- bitrate Links"">RFC2689</a>]
provides such a facility.
ATM (asynchronous transfer mode), where SNDUs are fragmented and
interleaved across smaller 53-byte ATM cells, is another example of
this technique. However, ATM is generally used on high-speed links
where the store-and-forward delays are already minimal, and it
introduces significant (~9%) increases in overhead due to the
addition of 5-byte cell overhead to each 48-byte ATM cell.
A third example is the Data-Over-Cable Service Interface
Specification (DOCSIS) with typical upstream bandwidths of 2.56 Mb/s
or 5.12 Mb/s. To reduce the impact of a 1500-byte MTU in DOCSIS 1.0
[<a href="#ref-DOCSIS1" title="Radio Frequency Interface Specification 1.0">DOCSIS1</a>], a data link layer fragmentation mechanism is specified in
DOCSIS 1.1 [<a href="#ref-DOCSIS2" title="Radio Frequency Interface Specification 1.1">DOCSIS2</a>]. To accommodate the installed base, DOCSIS 1.1
must be backward compatible with DOCSIS 1.0 cable modems, which
generally do not support fragmentation. Under the co-existence of
DOCSIS 1.0 and DOCSIS 1.1, the unfragmented large data packets from
DOCSIS 1.0 cable modems may affect the quality of service for voice
packets from DOCSIS 1.1 cable modems. In this case, it has been
shown in [<a href="#ref-DOCSIS3" title=""DOCSIS-Based Cable Networks: Impact of Large Data Packets on Upstream Capacity"">DOCSIS3</a>] that the use of bandwidth allocation algorithms
can mitigate this effect.
To summarize, there is a fundamental tradeoff between efficiency and
latency in the design of a subnetwork, and the designer should keep
this tradeoff in mind.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Framing on Connection-Oriented Subnetworks</span>
IP requires that subnetworks mark the beginning and end of each
variable-length, asynchronous IP packet. Some examples of links and
subnetworks that do not provide this as an intrinsic feature include:
1. leased lines carrying a synchronous bit stream;
2. ISDN B-channels carrying a synchronous octet stream;
3. dialup telephone modems carrying an asynchronous octet stream;
<span class="grey">Karn, et al. Best Current Practice [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
and
4. Asynchronous Transfer Mode (ATM) networks carrying an
asynchronous stream of fixed-sized "cells".
The Internet community has defined packet framing methods for all
these subnetworks. The Point-To-Point Protocol (PPP) [<a href="./rfc1661" title=""The Point-to-Point Protocol (PPP)"">RFC1661</a>],
which uses a variant of HDLC, is applicable to bit synchronous,
octet-synchronous, and octet asynchronous links (i.e., examples 1-3
above). PPP is one preferred framing method for IP, since a large
number of systems interoperate with PPP. ATM has its own framing
methods, described in [<a href="./rfc2684" title=""Multiprotocol Encapsulation over ATM Adaptation Layer 5"">RFC2684</a>] [<a href="./rfc2364" title=""PPP Over AAL5"">RFC2364</a>].
At high speeds, a subnetwork should provide a framed interface
capable of carrying asynchronous, variable-length IP datagrams. The
maximum packet size supported by this interface is discussed above in
the MTU/Fragmentation section. The subnetwork may implement this
facility in any convenient manner.
IP packet boundaries need not coincide with any framing or
synchronization mechanisms internal to the subnetwork. When the
subnetwork implements variable sized data units, the most
straightforward approach is to place exactly one IP packet into each
subnetwork data unit (SNDU), and to rely on the subnetwork's existing
ability to delimit SNDUs to also delimit IP packets. A good example
is Ethernet. However, some subnetworks have SNDUs of one or more
fixed sizes, as dictated by switching, forward error correction
and/or interleaving considerations. Examples of such subnetworks
include ATM, with a single cell payload size of 48 octets plus a 5-
octet header, and IS-95 digital cellular, with two "rate sets" of
four fixed frame sizes each that may be selected on 20 millisecond
boundaries.
Because IP packets are of variable length, they may not necessarily
fit into an integer multiple of fixed-sized SNDUs. An "adaptation
layer" is needed to convert IP packets into SNDUs while marking the
boundary between each IP packet in some manner.
There are several approaches to this problem. The first is to encode
each IP packet into one or more SNDUs with no SNDU containing pieces
of more than one IP packet, and to pad out the last SNDU of the
packet as needed. Bits in a control header added to each SNDU
indicate where the data segment belongs in the IP packet. If the
subnetwork provides in-order, at-most-once delivery, the header can
be as simple as a pair of bits indicating whether the SNDU is the
first and/or the last in the IP packet. Alternatively, for
subnetworks that do not reorder the fragments of an SNDU, only the
last SNDU of the packet could be marked, as this would implicitly
<span class="grey">Karn, et al. Best Current Practice [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
indicate the next SNDU as the first in a new IP packet. The AAL5
(ATM Adaptation Layer 5) scheme used with ATM is an example of this
approach, though it adds other features, including a payload length
field and a payload CRC.
In AAL5, the ATM User-User Indication, which is encoded in the
Payload Type field of an ATM cell, indicates the last cell of a
packet. The packet trailer is located at the end of the SNDU and
contains the packet length and a CRC.
Another framing technique is to insert per-segment overhead to
indicate the presence of a segment option. When present, the option
carries a pointer to the end of the packet. This differs from AAL5
in that it permits another packet to follow within the same segment.
MPEG-2 Transport Streams [<a href="#ref-EN301192" title="European Broadcasting Union">EN301192</a>] [<a href="#ref-ISO13818" title="Second edition">ISO13818</a>] support this style of
fragmentation, and may either use padding (limiting each MPEG
transport stream packet to carry only part of one IP packet), or
allow a second IP packet to start in the same Transport Stream packet
(no padding).
A third approach is to insert a special flag sequence into the data
stream between each IP packet, and to pack the resulting data stream
into SNDUs without regard to SNDU boundaries. This may have
implications when frames are lost. The flag sequence can also pad
unused space at the end of an SNDU. If the special flag appears in
the user data, it is escaped to an alternate sequence (usually larger
than a flag) to avoid being misinterpreted as a flag. The HDLC-based
framing schemes used in PPP are all examples of this approach.
All three adaptation schemes introduce overhead; how much depends on
the distribution of IP packet sizes, the size(s) of the SNDUs, and in
the HDLC-like approaches, the content of the IP packet (since flag-
like sequences occurring in the packet must be escaped, which expands
them). The designer must also weigh implementation complexity and
performance in the choice and design of an adaptation layer.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Connection-Oriented Subnetworks</span>
IP has no notion of a "connection"; it is a purely connectionless
protocol. When a connection is required by an application, it is
usually provided by TCP [<a href="./rfc793" title=""Transmission Control Protocol"">RFC793</a>], the Transmission Control Protocol,
running atop IP on an end-to-end basis.
Connection-oriented subnetworks can be (and are widely) used to carry
IP, but often with considerable complexity. Subnetworks consisting
of few nodes can simply open a permanent connection between each pair
of nodes. This is frequently done with ATM. However, the number of
connections increases as the square of the number of nodes, so this
<span class="grey">Karn, et al. Best Current Practice [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
is clearly impractical for large subnetworks. A "shim" layer between
IP and the subnetwork is therefore required to manage connections.
This is one of the most common functions of a Subnetwork Dependent
Convergence Function (SNDCF) sublayer between IP and a subnetwork.
SNDCFs typically open subnetwork connections as needed when an IP
packet is queued for transmission and close them after an idle
timeout. There is no relation between subnetwork connections and any
connections that may exist at higher layers (e.g., TCP).
Because Internet traffic is typically bursty and transaction-
oriented, it is often difficult to pick an optimal idle timeout. If
the timeout is too short, subnetwork connections are opened and
closed rapidly, possibly over-stressing the subnetwork connection
management system (especially if it was designed for voice traffic
call holding times). If the timeout is too long, subnetwork
connections are idle much of the time, wasting any resources
dedicated to them by the subnetwork.
Purely connectionless subnets (such as Ethernet), which have no state
and dynamically share resources, are optimal for supporting best-
effort IP, which is stateless and dynamically shares resources.
Connection-oriented packet networks (such as ATM and Frame Relay),
which have state and dynamically share resources, are less optimal,
since best-effort IP does not benefit from the overhead of creating
and maintaining state. Connection-oriented circuit-switched networks
(including the PSTN and ISDN) have state and statically allocate
resources for a call, and thus require state creation and maintenance
overhead, but do not benefit from the efficiencies of statistical
multiplexing sharing of capacity inherent in IP.
In any event, if an SNDCF that opens and closes subnet connections is
used to support IP, care should be taken to make sure that connection
processing in the subnet can keep up with relatively short holding
times.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Broadcasting and Discovery</span>
Subnetworks fall into two categories: point-to-point and shared. A
point-to-point subnet has exactly two endpoint components (hosts or
routers); a shared link has more than two endpoint components, using
either an inherently broadcast medium (e.g., Ethernet, radio) or a
switching layer hidden from the network layer (e.g., switched
Ethernet, Myrinet [<a href="#ref-MYR95" title="C.">MYR95</a>], ATM). Switched subnetworks handle
broadcast by copying broadcast packets, providing each interface that
supports one, or more, systems (hosts or routers) with a copy of each
packet.
<span class="grey">Karn, et al. Best Current Practice [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
Several Internet protocols for IPv4 make use of broadcast
capabilities, including link-layer address lookup (ARP), auto-
configuration (RARP, BOOTP, DHCP), and routing (RIP).
A lack of broadcast capability can impede the performance of these
protocols, or render them inoperable (e.g., DHCP). ARP-like link
address lookup can be provided by a centralized database, but at the
expense of potentially higher response latency and the need for nodes
to have explicit knowledge of the ARP server address. Shared links
should support native, link-layer subnet broadcast.
A corresponding set of IPv6 protocols uses multicasting (see next
section) instead of broadcasting to provide similar functions with
improved scaling in large networks.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Multicasting</span>
The Internet model includes "multicasting", where IP packets are sent
to all the members of a multicast group [<a href="./rfc1112" title=""Host Extensions for IP Multicasting"">RFC1112</a>] [<a href="./rfc3376" title=""Internet Group Management Protocol, Version 3"">RFC3376</a>]
[<a href="./rfc2710" title=""Multicast Listener Discovery (MLD) for IPv6"">RFC2710</a>]. Multicast is an option in IPv4, but a standard feature of
IPv6. IPv4 multicast is currently used by multimedia,
teleconferencing, gaming, and file distribution (web, peer-to-peer
sharing) applications, as well as by some key network and host
protocols (e.g., RIPv2, OSPF, NTP). IPv6 additionally relies on
multicast for network configuration (DHCP-like autoconfiguration) and
link-layer address discovery [<a href="./rfc2461" title=""Neighbor Discovery for IP Version 6 (IPv6)"">RFC2461</a>] (replacing ARP). In the case
of IPv6, this can allow autoconfiguration and address discovery to
span across routers, whereas the IPv4 broadcast-based services cannot
without ad-hoc router support [<a href="./rfc1812" title=""Requirements for IP Version 4 Routers"">RFC1812</a>].
Multicast-enabled IP routers organize each multicast group into a
spanning tree, and route multicast packets by making copies of each
multicast packet and forwarding the copies to each output interface
that includes at least one downstream member of the multicast group.
Multicasting is considerably more efficient when a subnetwork
explicitly supports it. For example, a router relaying a multicast
packet onto an Ethernet segment need send only one copy of the
packet, no matter how many members of the multicast group are
connected to the segment. Without native multicast support, routers
and switches on shared links would need to use broadcast with
software filters, such that every multicast packet sent incurs
software overhead for every node on the subnetwork, even if a node is
not a member of the multicast group. Alternately, the router would
transmit a separate copy to every member of the multicast group on
the segment, as is done on multicast-incapable switched subnets.
<span class="grey">Karn, et al. Best Current Practice [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
Subnetworks using shared channels (e.g., radio LANs, Ethernets) are
especially suitable for native multicasting, and their designers
should make every effort to support it. This involves designating a
section of the subnetwork's own address space for multicasting. On
these networks, multicast is basically broadcast on the medium, with
Layer-2 receiver filters.
Subnet interfaces also need to be designed to accept packets
addressed to some number of multicast addresses, in addition to the
unicast packets specifically addressed to them. The number of
multicast addresses that needs to be supported by a host depends on
the requirements of the associated host; at least several dozen will
meet most current needs.
On low-speed networks, the multicast address recognition function may
be readily implemented in host software, but on high-speed networks,
it should be implemented in subnetwork hardware. This hardware need
not be complete; for example, many Ethernet interfaces implement a
"hashing" function where the IP layer receives all of the multicast
(and unicast) traffic to which the associated host subscribes, plus
some small fraction of multicast traffic to which the host does not
subscribe. Host/router software then has to discard the unwanted
packets that pass the Layer-2 multicast address filter [<a href="./rfc1112" title=""Host Extensions for IP Multicasting"">RFC1112</a>].
There does not need to be a one-to-one mapping between a Layer-2
multicast address and an IP multicast address. An address overlap
may significantly degrade the filtering capability of a receiver's
hardware multicast address filter. A subnetwork supporting only
broadcast should use this service for multicast and must rely on
software filtering.
Switched subnetworks must also provide a mechanism for copying
multicast packets to ensure the packets reach at least all members of
a multicast group. One option is to "flood" multicast packets in the
same manner as broadcast. This can lead to unnecessary transmissions
on some subnetwork links (notably non-multicast-aware Ethernet
switches). Some subnetworks therefore allow multicast filter tables
to control which links receive packets belonging to a specific group.
To configure this automatically requires access to Layer-3 group
membership information (e.g., IGMP [<a href="./rfc3376" title=""Internet Group Management Protocol, Version 3"">RFC3376</a>], or MLD [<a href="./rfc2710" title=""Multicast Listener Discovery (MLD) for IPv6"">RFC2710</a>]).
Various implementation options currently exist to provide a subnet
node with a list of mappings of multicast addresses to
ports/interfaces. These employ a range of approaches, including
signaling from end hosts (e.g., IEEE 802 GARP/GMRP [<a href="#ref-802.1p" title="802.1p">802.1p</a>]),
signaling from switches (e.g., CGMP [<a href="#ref-CGMP" title=""Cisco Group Management Protocol (CGMP)"">CGMP</a>] and RGMP [<a href="./rfc3488" title=""Cisco Systems Router-port Group Management Protocol (RGMP)"">RFC3488</a>]),
interception and proxy of IP group membership packets (e.g., IGMP/MLD
Proxy [<a href="#ref-MAGMA-PROXY" title=""IGMP/MLD-based Multicast Forwarding ("">MAGMA-PROXY</a>]), and enabling Layer-2 devices to
snoop/inspect/peek into forwarded Layer-3 protocol headers (e.g.,
<span class="grey">Karn, et al. Best Current Practice [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
IGMP, MLD, PIM) so that they may infer Layer-3 multicast group
membership [<a href="#ref-MAGMA-SNOOP" title=""Considerations for IGMP and MLD Snooping Switches"">MAGMA-SNOOP</a>]. These approaches differ in their
complexity, flexibility, and ability to support new protocols.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Bandwidth on Demand (BoD) Subnets</span>
Some subnets allow a number of subnet nodes to share a channel
efficiently by assigning transmission opportunities dynamically.
Transmission opportunities are requested by a subnet node when it has
packets to send. The subnet schedules and grants transmission
opportunities sufficient to allow the transmitting subnet node to
send one or more packets (or packet fragments). We call these
subnets Bandwidth on Demand (BoD) subnets. Examples of BoD subnets
include Demand Assignment Multiple Access (DAMA) satellite and
terrestrial wireless networks, IEEE 802.11 point coordination
function (PCF) mode, and DOCSIS. A connection-oriented network (such
as the PSTN, ATM or Frame Relay) reserves resources on a much longer
timescale, and is therefore not a BoD subnet in our taxonomy.
The design parameters for BoD are similar to those in connection-
oriented subnetworks, although the implementations may vary
significantly. In BoD, the user typically requests access to the
shared channel for some duration. Access may be allocated for a
period of time at a specific rate, for a certain number of packets,
or until the user releases the channel. Access may be coordinated
through a central management entity or with a distributed algorithm
amongst the users. Examples of the resource that may be shared
include a terrestrial wireless hop, an upstream channel in a cable
television system, a satellite uplink, and an end-to-end satellite
channel.
Long-delay BoD subnets pose problems similar to connection-oriented
subnets in anticipating traffic. While connection-oriented subnets
hold idle channels open expecting new data to arrive, BoD subnets
request channel access based on buffer occupancy (or expected buffer
occupancy) on the sending port. Poor performance will likely result
if the sender does not anticipate additional traffic arriving at that
port during the time it takes to grant a transmission request. It is
recommended that the algorithm have the capability to extend a hold
on the channel for data that has arrived after the original request
was generated (this may be done by piggybacking new requests on user
data).
There is a wide variety of BoD protocols available. However, there
has been relatively little comprehensive research on the interactions
between BoD mechanisms and Internet protocol performance. Research
on some specific mechanisms is available (e.g., [<a href="#ref-AR02" title="G. and C. Rosenberg">AR02</a>]). One item
that has been studied is TCP's retransmission timer [<a href="#ref-KY02" title=" Proceedings of IEEE ICC">KY02</a>]. BoD
<span class="grey">Karn, et al. Best Current Practice [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
systems can cause spurious timeouts when adjusting from a relatively
high data rate, to a relatively low data rate. In this case, TCP's
transmitted data takes longer to get through the network than
predicted by the TCP sender's computed retransmission timeout.
Therefore, the TCP sender is prone to resending a segment
prematurely.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Reliability and Error Control</span>
In the Internet architecture, the ultimate responsibility for error
recovery is at the end points [<a href="#ref-SRC81" title=""End-to-End Arguments in System Design"">SRC81</a>]. The Internet may occasionally
drop, corrupt, duplicate, or reorder packets, and the transport
protocol (e.g., TCP) or application (e.g., if UDP is used as the
transport protocol) must recover from these errors on an end-to-end
basis [<a href="./rfc3155" title=""End-to-end Performance Implications of Links with Errors"">RFC3155</a>]. Error recovery in the subnetwork is therefore
justifiable only to the extent that it can enhance overall
performance. It is important to recognize that a subnetwork can go
too far in attempting to provide error recovery services in the
Internet environment. Subnet reliability should be "lightweight",
i.e., it only has to be "good enough", *not* perfect.
In this section, we discuss how to analyze characteristics of a
subnetwork to determine what is "good enough". The discussion below
focuses on TCP, which is the most widely-used transport protocol in
the Internet. It is widely believed (and is a stated goal within the
IETF) that non-TCP transport protocols should attempt to be "TCP-
friendly" and have many of the same performance characteristics.
Thus, the discussion below should be applicable, even to portions of
the Internet where TCP may not be the predominant protocol.
<span class="h3"><a class="selflink" id="section-8.1" href="#section-8.1">8.1</a>. TCP vs Link-Layer Retransmission</span>
Error recovery involves the generation and transmission of redundant
information computed from user data. Depending on how much redundant
information is sent and how it is generated, the receiver can use it
to reliably detect transmission errors, correct up to some maximum
number of transmission errors, or both. The general approach is
known as Error Control Coding, or ECC.
The use of ECC to detect transmission errors so that retransmissions
(hopefully without errors) can be requested is widely known as "ARQ"
(Automatic Repeat Request).
When enough ECC information is available to permit the receiver to
correct some transmission errors without a retransmission, the
approach is known as Forward Error Correction (FEC). Due to the
greater complexity of the required ECC and the need to tailor its
design to the characteristics of a specific modem and channel, FEC
<span class="grey">Karn, et al. Best Current Practice [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
has traditionally been implemented in special-purpose hardware
integral to a modem. This effectively makes it part of the physical
layer.
Unlike ARQ, FEC was rarely used for telecommunications outside of
space links prior to the 1990s. It is now nearly universal in
telephone, cable and DSL modems, digital satellite links, and digital
mobile telephones. FEC is also heavily used in optical and magnetic
storage where "retransmissions" are not possible.
Some systems use hybrid combinations of ARQ layered atop FEC; V.90
dialup modems (in the upstream direction) with V.42 error control are
one example. Most errors are corrected by the trellis (FEC) code
within the V.90 modem, and most remaining errors are detected and
corrected by the ARQ mechanisms in V.42.
Work is now underway to apply FEC above the physical layer, primarily
in connection with reliable multicasting [<a href="./rfc3048" title=""Reliable Multicast Transport Building Blocks for One-to-Many Bulk-Data Transfer"">RFC3048</a>] [RFC3450-RFC3453]
where conventional ARQ mechanisms are inefficient or difficult to
implement. However, in this discussion, we will assume that if FEC
is present, it is implemented within the physical layer.
Depending on the layer in which it is implemented, error control can
operate on an end-to-end basis or over a shorter span, such as a
single link. TCP is the most important example of an end-to-end
protocol that uses an ARQ strategy.
Many link-layer protocols use ARQ, usually some flavor of HDLC
[<a href="#ref-ISO3309" title=""Information Technology - Telecommunications and information exchange between systems - High-level data link control (HDLC) procedures - Frame structure"">ISO3309</a>]. Examples include the X.25 link layer, the AX.25 protocol
used in amateur packet radio, 802.11 wireless LANs, and the reliable
link layer specified in IEEE 802.2.
Only end-to-end error recovery can ensure reliable service to the
application (see <a href="#section-8">Section 8</a>). However, some subnetworks (e.g., many
wireless links) also have link-layer error recovery as a performance
enhancement [<a href="./rfc3366" title=""Advice to link designers on link Automatic Repeat reQuest (ARQ)"">RFC3366</a>]. For example, many cellular links have small
physical frame sizes (< 100 bytes) and relatively high frame loss
rates. Relying solely on end-to-end error recovery can clearly yield
a performance degradation, as retransmissions across the end-to-end
path take much longer to be received than when link layer
retransmissions are used. Thus, link-layer error recovery can often
increase end-to-end performance. As a result, link-layer and end-
to-end recovery often co-exist; this can lead to the possibility of
inefficient interactions between the two layers of ARQ protocols.
This inter-layer "competition" might lead to the following wasteful
situation. When the link layer retransmits (parts of) a packet, the
link latency momentarily increases. Since TCP bases its
<span class="grey">Karn, et al. Best Current Practice [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
retransmission timeout on prior measurements of total end-to-end
latency, including that of the link in question, this sudden increase
in latency may trigger an unnecessary retransmission by TCP of a
packet that the link layer is still retransmitting. Such spurious
end-to-end retransmissions generate unnecessary load and reduce end-
to-end throughput. As a result, the link layer may even have
multiple copies of the same packet in the same link queue at the same
time. In general, one could say the competing error recovery is
caused by an inner control loop (link-layer error recovery) reacting
to the same signal as an outer control loop (end-to-end error
recovery) without any coordination between the loops. Note that this
is solely an efficiency issue; TCP continues to provide reliable
end-to-end delivery over such links.
This raises the question of how persistent a link-layer sender should
be in performing retransmission [<a href="./rfc3366" title=""Advice to link designers on link Automatic Repeat reQuest (ARQ)"">RFC3366</a>]. We define the link-layer
(LL) ARQ persistency as the maximum time that a particular link will
spend trying to transfer a packet before it can be discarded. This
deliberately simplified definition says nothing about the maximum
number of retransmissions, retransmission strategies, queue sizes,
queuing disciplines, transmission delays, or the like. The reason we
use the term LL ARQ persistency, instead of a term such as "maximum
link-layer packet holding time," is that the definition closely
relates to link-layer error recovery. For example, on links that
implement straightforward error recovery strategies, LL ARQ
persistency will often correspond to a maximum number of
retransmissions permitted per link-layer frame.
For link layers that do not or cannot differentiate between flows
(e.g., due to network layer encryption), the LL ARQ persistency
should be small. This avoids any harmful effects or performance
degradation resulting from indiscriminate high persistence. A
detailed discussion of these issues is provided in [<a href="./rfc3366" title=""Advice to link designers on link Automatic Repeat reQuest (ARQ)"">RFC3366</a>].
However, when a link layer can identify individual flows and apply
ARQ selectively [<a href="#ref-LKJK02" title=""Optimizing the End-to-End Performance of Reliable Flows over Wireless Links"">LKJK02</a>], then the link ARQ persistency should be
high for a flow using reliable unicast transport protocols (e.g.,
TCP) and must be low for all other flows. Setting the link ARQ
persistency larger than the largest link outage allows TCP to rapidly
restore transmission without needing to wait for a retransmission
time out. This generally improves TCP performance in the face of
transient outages. However, excessively high persistence may be
disadvantageous; a practical upper limit of 30-60 seconds may be
desirable. Implementation of such schemes remains a research issue.
(See also the following section "Recovery from Subnetwork Outages").
<span class="grey">Karn, et al. Best Current Practice [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
Many subnetwork designers have opportunities to reduce the
probability of packet loss, e.g., with FEC, ARQ, and interleaving, at
the cost of increased delay. TCP performance improves with
decreasing loss but worsens with increasing end-to-end delay, so it
is important to find the proper balance through analysis and
simulation.
<span class="h3"><a class="selflink" id="section-8.2" href="#section-8.2">8.2</a>. Recovery from Subnetwork Outages</span>
Some types of subnetworks, particularly mobile radio, are subject to
frequent temporary outages. For example, an active cellular data
user may drive or walk into an area (such as a tunnel) that is out of
range of any base station. No packets will be delivered successfully
until the user returns to an area with coverage.
The Internet protocols currently provide no standard way for a
subnetwork to explicitly notify an upper layer protocol (e.g., TCP)
that it is experiencing an outage rather than severe congestion.
Under these circumstances TCP will, after each unsuccessful
retransmission, wait even longer before trying again; this is its
"exponential back-off" algorithm. Furthermore, TCP will not discover
that the subnetwork outage has ended until its next retransmission
attempt. If TCP has backed off, this may take some time. This can
lead to extremely poor TCP performance over such subnetworks.
It is therefore highly desirable that a subnetwork subject to outages
does not silently discard packets during an outage. Ideally, the
subnetwork should define an interface to the next higher layer (i.e.,
IP) that allows it to refuse packets during an outage, and to
automatically ask IP for new packets when it is again able to deliver
them. If it cannot do this, then the subnetwork should hold onto at
least some of the packets it accepts during an outage and attempt to
deliver them when the outage ends. When packets are discarded, IP
should be notified so that the appropriate ICMP messages can be sent.
Note that it is *not* necessary to completely avoid dropping packets
during an outage. The purpose of holding onto a packet during an
outage, either in the subnetwork or at the IP layer, is so that its
eventual delivery will implicitly notify TCP that the subnetwork is
again operational. This is to enhance performance, not to ensure
reliability -- reliability, as discussed earlier, can only be ensured
on an end-to-end basis.
Only a few packets per TCP connection, including ACKs, need be held
in this way to cause the TCP sender to recover from the additional
losses once the flow resumes [<a href="./rfc3366" title=""Advice to link designers on link Automatic Repeat reQuest (ARQ)"">RFC3366</a>].
<span class="grey">Karn, et al. Best Current Practice [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
Because it would be a layering violation (and possibly a performance
hit) for IP or a subnetwork layer to look at TCP headers (which would
in any event be impossible if IPsec encryption [<a href="./rfc2401" title=""Security Architecture for the Internet Protocol"">RFC2401</a>] is in use),
it would be reasonable for the IP or subnetwork layers to choose, as
a design parameter, some small number of packets that will be
retained during an outage.
<span class="h3"><a class="selflink" id="section-8.3" href="#section-8.3">8.3</a>. CRCs, Checksums and Error Detection</span>
The TCP [<a href="./rfc793" title=""Transmission Control Protocol"">RFC793</a>], UDP [<a href="./rfc768" title=""User Datagram Protocol"">RFC768</a>], ICMP, and IPv4 [<a href="./rfc791" title=""Internet Protocol"">RFC791</a>] protocols all
use the same simple 16-bit 1's complement checksum algorithm
[<a href="./rfc1071" title=""Computing the Internet checksum"">RFC1071</a>] to detect corrupted packets. The IPv4 header checksum
protects only the IPv4 header, while the TCP, ICMP, and UDP checksums
provide end-to-end error detection for both the transport pseudo
header (including network and transport layer information) and the
transport payload data. Protection of the data is optional for
applications using UDP [<a href="./rfc768" title=""User Datagram Protocol"">RFC768</a>] for IPv4, but is required for IPv6.
The Internet checksum is not very strong from a coding theory
standpoint, but it is easy to compute in software, and various
proposals to replace the Internet checksums with stronger checksums
have failed. However, it is known that undetected errors can and do
occur in packets received by end hosts [<a href="#ref-SP2000" title=""When the CRC and TCP Checksum Disagree"">SP2000</a>].
To reduce processing costs, IPv6 has no IP header checksum. The
destination host detects "important" errors in the IP header, such as
the delivery of the packet to the wrong destination. This is done by
including the IP source and destination addresses (pseudo header) in
the computation of the checksum in the TCP or UDP header, a practice
already performed in IPv4. Errors in other IPv6 header fields may go
undetected within the network; this was considered a reasonable price
to pay for a considerable reduction in the processing required by
each router, and it was assumed that subnetworks would use a strong
link CRC.
One way to provide additional protection for an IPv4 or IPv6 header
is by the authentication and packet integrity services of the IP
Security (IPsec) protocol [<a href="./rfc2401" title=""Security Architecture for the Internet Protocol"">RFC2401</a>]. However, this may not be a
choice available to the subnetwork designer.
Most subnetworks implement error detection just above the physical
layer. Packets corrupted in transmission are detected and discarded
before delivery to the IP layer. A 16-bit cyclic redundancy check
(CRC) is usually the minimum for error detection. This is
significantly more robust against most patterns of errors than the
16-bit Internet checksum. Note that the error detection properties
of a specific CRC code diminish with increasing frame size. The
Point-to-Point Protocol [<a href="./rfc1662" title=""PPP in HDLC-like Framing"">RFC1662</a>] requires support of a 16-bit CRC
<span class="grey">Karn, et al. Best Current Practice [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
for each link frame, with a 32-bit CRC as an option. (PPP is often
used in conjunction with a dialup modem, which provides its own error
control). Other subnetworks, including 802.3/Ethernet, AAL5/ATM,
FDDI, Token Ring, and PPP over SONET/SDH all use a 32-bit CRC. Many
subnetworks can also use other mechanisms to enhance the error
detection capability of the link CRC (e.g., FEC in dialup modems,
mobile radio and satellite channels).
Any new subnetwork designed to carry IP should therefore provide
error detection for each IP packet that is at least as strong as the
32-bit CRC specified in [<a href="#ref-ISO3309" title=""Information Technology - Telecommunications and information exchange between systems - High-level data link control (HDLC) procedures - Frame structure"">ISO3309</a>]. While this will achieve a very
low undetected packet error rate due to transmission errors, it will
not (and need not) achieve a very low packet loss rate as the
Internet protocols are better suited to dealing with lost packets
than to dealing with corrupted packets [<a href="#ref-SRC81" title=""End-to-End Arguments in System Design"">SRC81</a>].
Packet corruption may be, and is, also caused by bugs in host and
router hardware and software. Even if every subnetwork implemented
strong error detection, it is still essential that end-to-end
checksums are used at the receiving end host [<a href="#ref-SP2000" title=""When the CRC and TCP Checksum Disagree"">SP2000</a>].
Designers of complex subnetworks consisting of internal links and
packet switches should consider implementing error detection on an
edge-to-edge basis to cover an entire SNDU (or IP packet). A CRC
would be generated at the entry point to the subnetwork and checked
at the exit endpoint. This may be used instead of, or in combination
with, error detection at the interface to each physical link. An
edge-to-edge check has the significant advantage of protecting
against errors introduced anywhere within the subnetwork, not just
within its transmission links. Examples of this approach include the
way in which the Ethernet CRC-32 is handled by LAN bridges [<a href="#ref-802.1D" title="IEEE 802.1D">802.1D</a>].
ATM AAL5 [<a href="#ref-ITU-I363" title="International Standards Organisation (ISO)">ITU-I363</a>] also uses an edge-to-edge CRC-32.
Some specific applications may be tolerant of residual errors in the
data they exchange, but removal of the link CRC may expose the
network to an undesirable increase in undetected errors in the IP and
transport headers. Applications may also require a high level of
error protection for control information exchanged by protocols
acting above the transport layer. One example is a voice codec,
which is robust against bit errors in the speech samples. For such
mechanisms to work, the receiving application must be able to
tolerate receiving corrupted data. This also requires that an
application uses a mechanism to signal that payload corruption is
permitted and to indicate the coverage (headers and data) required to
be protected by the subnetwork CRC. The UDP-Lite protocol [<a href="./rfc3828" title=""The User Datagram Protocol (UDP)-Lite Protocol"">RFC3828</a>]
is the first Internet standards track transport protocol supporting
partial payload protection. Receipt of corrupt data by arbitrary
<span class="grey">Karn, et al. Best Current Practice [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
application protocols carries a serious danger that a subnet delivers
data with errors that remain undetected by the application and hence
corrupt the communicated data [<a href="#ref-SRC81" title=""End-to-End Arguments in System Design"">SRC81</a>].
<span class="h3"><a class="selflink" id="section-8.4" href="#section-8.4">8.4</a>. How TCP Works</span>
One of TCP's functions is end-host based congestion control for the
Internet. This is a critical part of the overall stability of the
Internet, so it is important that link-layer designers understand
TCP's congestion control algorithms.
TCP assumes that, at the most abstract level, the network consists of
links and queues. Queues provide output-buffering on links that are
momentarily oversubscribed. They smooth instantaneous traffic bursts
to fit the link bandwidth. When demand exceeds link capacity long
enough to fill the queue, packets must be dropped. The traditional
action of dropping the most recent packet ("tail dropping") is no
longer recommended [<a href="./rfc2309" title=""Recommendations on Queue Management and Congestion Avoidance in the Internet"">RFC2309</a>] [<a href="./rfc2914" title=""Congestion Control Principles"">RFC2914</a>], but it is still widely
practiced.
TCP uses sequence numbering and acknowledgments (ACKs) on an
end-to-end basis to provide reliable, sequenced delivery. TCP ACKs
are cumulative, i.e., each implicitly ACKs every segment received so
far. If a packet with an unexpected sequence number is received, the
ACK field in the packets returned by the receiver will cease to
advance. Using an optional enhancement, TCP can send selective
acknowledgments (SACKs) [<a href="./rfc2018" title=""TCP Selective Acknowledgement Options"">RFC2018</a>] to indicate which segments have
arrived at the receiver.
Since the most common cause of packet loss is congestion, TCP treats
packet loss as an indication of potential Internet congestion along
the path between TCP end hosts. This happens automatically, and the
subnetwork need not know anything about IP or TCP. A subnetwork node
simply drops packets whenever it must, though some packet-dropping
strategies (e.g., RED) are more fair to competing flows than others.
TCP recovers from packet losses in two different ways. The most
important mechanism is the retransmission timeout. If an ACK fails
to arrive after a certain period of time, TCP retransmits the oldest
unacked packet. Taking this as a hint that the network is congested,
TCP waits for the retransmission to be ACKed before it continues, and
it gradually increases the number of packets in flight as long as a
timeout does not occur again.
A retransmission timeout can impose a significant performance
penalty, as the sender is idle during the timeout interval and
restarts with a congestion window of one TCP segment following the
<span class="grey">Karn, et al. Best Current Practice [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
timeout. To allow faster recovery from the occasional lost packet in
a bulk transfer, an alternate scheme, known as "fast recovery", was
introduced [<a href="./rfc2581" title=""TCP Congestion Control"">RFC2581</a>] [<a href="./rfc2582" title=""The NewReno Modification to TCP's Fast Recovery Algorithm"">RFC2582</a>] [<a href="./rfc2914" title=""Congestion Control Principles"">RFC2914</a>] [<a href="#ref-TCPF98" title=""TCP Fast Recovery Strategies: Analysis and Improvements"">TCPF98</a>].
Fast recovery relies on the fact that when a single packet is lost in
a bulk transfer, the receiver continues to return ACKs to subsequent
data packets that do not actually acknowledge any newly-received
data. These are known as "duplicate acknowledgments" or "dupacks".
The sending TCP can use dupacks as a hint that a packet has been lost
and retransmit it without waiting for a timeout. Dupacks effectively
constitute a negative acknowledgment (NAK) for the packet sequence
number in the acknowledgment field. TCP waits until a certain number
of dupacks (currently 3) are seen prior to assuming a loss has
occurred; this helps avoid an unnecessary retransmission during
out-of-sequence delivery.
A technique called "Explicit Congestion Notification" (ECN) [<a href="./rfc3168" title=""The Addition of Explicit Congestion Notification (ECN) to IP"">RFC3168</a>]
allows routers to directly signal congestion to hosts without
dropping packets. This is done by setting a bit in the IP header.
Since ECN support is likely to remain optional, the lack of an ECN
bit must *never* be interpreted as a lack of congestion. Thus, for
the foreseeable future, TCP must interpret a lost packet as a signal
of congestion.
The TCP "congestion avoidance" [<a href="./rfc2581" title=""TCP Congestion Control"">RFC2581</a>] algorithm maintains a
congestion window (cwnd) controlling the amount of data TCP may have
in flight at any moment. Reducing cwnd reduces the overall bandwidth
obtained by the connection; similarly, raising cwnd increases
performance, up to the limit of the available capacity.
TCP probes for available network capacity by initially setting cwnd
to one or two packets and then increasing cwnd by one packet for each
ACK returned from the receiver. This is TCP's "slow start"
mechanism. When a packet loss is detected (or congestion is signaled
by other mechanisms), cwnd is reset to one and the slow start process
is repeated until cwnd reaches one half of its previous setting
before the reset. Cwnd continues to increase past this point, but at
a much slower rate than before. If no further losses occur, cwnd
will ultimately reach the window size advertised by the receiver.
This is an "Additive Increase, Multiplicative Decrease" (AIMD)
algorithm. The steep decrease of cwnd in response to congestion
provides for network stability; the AIMD algorithm also provides for
fairness between long running TCP connections sharing the same path.
<span class="grey">Karn, et al. Best Current Practice [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
<span class="h3"><a class="selflink" id="section-8.5" href="#section-8.5">8.5</a>. TCP Performance Characteristics</span>
Caveat
Here we present a current "state-of-the-art" understanding of TCP
performance. This analysis attempts to characterize the performance
of TCP connections over links of varying characteristics.
Link designers may wish to use the techniques in this section to
predict what performance TCP/IP may achieve over a new link-layer
design. Such analysis is encouraged. Because this is a relatively
new analysis, and the theory is based on single-stream TCP
connections under "ideal" conditions, it should be recognized that
the results of such analysis may differ from actual performance in
the Internet. That being said, we have done our best to provide the
designers with helpful information to get an accurate picture of the
capabilities and limitations of TCP under various conditions.
<span class="h4"><a class="selflink" id="section-8.5.1" href="#section-8.5.1">8.5.1</a>. The Formulae</span>
The performance of TCP's AIMD Congestion Avoidance algorithm has been
extensively analyzed. The current best formula for the performance
of the specific algorithms used by Reno TCP (i.e., the TCP specified
in [<a href="./rfc2581" title=""TCP Congestion Control"">RFC2581</a>]) is given by Padhye, et al. [<a href="#ref-PFTK98" title=""Modeling TCP Throughput: a Simple Model and its Empirical Validation"">PFTK98</a>]. This formula is:
MSS
BW = --------------------------------------------------------
RTT*sqrt(1.33*p) + RTO*p*[1+32*p^2]*min[1,3*sqrt(.75*p)]
where
BW is the maximum TCP throughout achievable by an
individual TCP flow
MSS is the TCP segment size being used by the connection
RTT is the end-to-end round trip time of the TCP connection
RTO is the packet timeout (based on RTT)
p is the packet loss rate for the path
(i.e., .01 if there is 1% packet loss)
Note that the speed of the links making up the Internet path does not
explicitly appear in this formula. Attempting to send faster than
the slowest link in the path causes the queue to grow at the
transmitter driving the bottleneck. This increases the RTT, which in
turn reduces the achievable throughput.
This is currently considered to be the best approximate formula for
Reno TCP performance. A further simplification of this formula is
generally made by assuming that RTO is approximately 5*RTT.
<span class="grey">Karn, et al. Best Current Practice [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
TCP is constantly being improved. A simpler formula, which gives an
upper bound on the performance of any AIMD algorithm which is likely
to be implemented in TCP in the future, was derived by Ott, et al.
[<a href="#ref-MSMO97" title=""The Macroscopic Behavior of the TCP Congestion Avoidance Algorithm"">MSMO97</a>].
MSS 1
BW = C --- -------
RTT sqrt(p)
where C is 0.93.
<span class="h4"><a class="selflink" id="section-8.5.2" href="#section-8.5.2">8.5.2</a>. Assumptions</span>
Both formulae assume that the TCP Receiver Window is not limiting the
performance of the connection. Because the receiver window is
entirely determined by end-hosts, we assume that hosts will maximize
the announced receiver window to maximize their network performance.
Both of these formulae allow BW to become infinite if there is no
loss. However, an Internet path will drop packets at bottlenecked
queues if the load is too high. Thus, a completely lossless TCP/IP
network can never occur (unless the network is being underutilized).
The RTT used is the arithmetic average, including queuing delays.
The formulae are for a single TCP connection. If a path carries many
TCP connections, each will follow the formulae above independently.
The formulae assume long-running TCP connections. For connections
that are extremely short (<10 packets) and don't lose any packets,
performance is driven by the TCP slow-start algorithm. For
connections of medium length, where on average only a few segments
are lost, single connection performance will actually be slightly
better than given by the formulae above.
The difference between the simple and complex formulae above is that
the complex formula includes the effects of TCP retransmission
timeouts. For very low levels of packet loss (significantly less
than 1%), timeouts are unlikely to occur, and the formulae lead to
very similar results. At higher packet losses (1% and above), the
complex formula gives a more accurate estimate of performance (which
will always be significantly lower than the result from the simple
formula).
Note that these formulae break down as p approaches 100%.
<span class="grey">Karn, et al. Best Current Practice [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
<span class="h4"><a class="selflink" id="section-8.5.3" href="#section-8.5.3">8.5.3</a>. Analysis of Link-Layer Effects on TCP Performance</span>
Consider the following example:
A designer invents a new wireless link layer which, on average, loses
1% of IP packets. The link layer supports packets of up to 1040
bytes, and has a one-way delay of 20 msec.
If this link were to be used on an Internet path with a round trip
time greater than 80ms, the upper bound may be computed by:
For MSS, use 1000 bytes to exclude the 40 bytes of minimum IPv4 and
TCP headers.
For RTT, use 120 msec (80 msec for the Internet part, plus 20 msec
each way for the new wireless link).
For p, use .01. For C, assume 1.
The simple formula gives:
BW = (1000 * 8 bits) / (.120 sec * sqrt(.01)) = 666 kbit/sec
The more complex formula gives:
BW = 402.9 kbit/sec
If this were a 2 Mb/s wireless LAN, the designers might be somewhat
disappointed.
Some observations on performance:
1. We have assumed that the packet losses on the link layer are
interpreted as congestion by TCP. This is a "fact of life" that
must be accepted.
2. The equations for TCP performance are all expressed in terms of
packet loss, but many subnetwork designers think in terms of
bit-error ratio. *If* channel bit errors are independent, then
the probability of a packet being corrupted is:
p = 1 - ([1 - BER]^[FRAME_SIZE*8])
Here we assume FRAME_SIZE is in bytes and "^" represents
exponentiation. It includes the user data and all headers
(TCP,IP and subnetwork). (Note: this analysis assumes the
<span class="grey">Karn, et al. Best Current Practice [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
subnetwork does not perform ARQ or transparent fragmentation
[<a href="./rfc3366" title=""Advice to link designers on link Automatic Repeat reQuest (ARQ)"">RFC3366</a>].) If the inequality
BER * [FRAME_SIZE*8] << 1
holds, the packet loss probability p can be approximated by:
p = BER * [FRAME_SIZE*8]
These equations can be used to apply BER to the performance
equations above.
Note that FRAME_SIZE can vary from one packet to the next. Small
packets (such as TCP acks) generally have a smaller probability
of packet error than, say, a TCP packet carrying one MSS (maximum
segment size) of user data. A flow of small TCP acks can be
expected to be slightly more reliable than a stream of larger TCP
data segments.
It bears repeating that the above analysis assumes that bit
errors are statistically independent. Because this is not true
for many real links, our computation of p is actually an upper
bound, not the exact probability of packet loss.
There are many reasons why bit errors are not independent on real
links. Many radio links are affected by propagation fading or by
interference that lasts over many bit times. Also, links with
Forward Error Correction (FEC) generally have very non-uniform
bit error distributions that depend on the type of FEC, but in
general the uncorrected errors tend to occur in bursts even when
channel symbol errors are independent. In all such cases, our
computation of p from BER can only place an upper limit on the
packet loss rate.
If the distribution of errors under the FEC scheme is known, one
could apply the same type of analysis as above, using the correct
distribution function for the BER. It is more likely in these
FEC cases, however, that empirical methods are needed to
determine the actual packet loss rate.
3. Note that the packet size plays an important role. If the
subnetwork loss characteristics are such that large packets have
the same probability of loss as smaller packets, then larger
packets will yield improved performance.
<span class="grey">Karn, et al. Best Current Practice [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
4. We have chosen a specific RTT that might occur on a wide-area
Internet path within the USA. It is important to recognize that
a variety of RTT values are experienced in the Internet.
For example, RTTs are typically less than 10 msec in a wired LAN
environment when communicating with a local host. International
connections may have RTTs of 200 msec or more. Modems and other
low-capacity links can add considerable delay due to their long
packet transmission (serialisation) times.
Links over geostationary repeater satellites have one-way speed-
of-light delays of around 250ms, a minimum of 125ms propagation
delay up to the satellite and 125ms down. The RTT of an end-to-
end TCP connection that includes such a link can be expected to
be greater than 250ms.
Queues on heavily-congested links may back up, increasing RTTs.
Finally, virtual private networks (VPNs) and other forms of
encryption and tunneling can add significant end-to-end delay to
network connections.
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. Quality-of-Service (QoS) considerations</span>
It is generally recognized that specific service guarantees are
needed to support real-time multimedia, toll-quality telephony, and
other performance-critical applications. The provision of such
Quality of Service guarantees in the Internet is an active area of
research and standardization. The IETF has not converged on a single
service model, set of services, or single mechanism that will offer
useful guarantees to applications and be scalable to the Internet.
Indeed, the IETF does not have a single definition of Quality of
Service. [<a href="./rfc2990" title=""Next Steps for the IP QoS Architecture"">RFC2990</a>] represents a current understanding of the
challenges in architecting QoS for the Internet.
There are presently two architectural approaches to providing
mechanisms for QoS support in the Internet.
IP Integrated Services (Intserv) [<a href="./rfc1633" title=""Integrated Services in the Internet Architecture: an Overview"">RFC1633</a>] provides fine-grained
service guarantees to individual flows. Flows are identified by a
flow specification (flowspec), which creates a stateful association
between individual packets by matching fields in the packet header.
Capacity is reserved for the flow, and appropriate traffic
conditioning and scheduling is installed in routers along the path.
The ReSerVation Protocol (RSVP) [<a href="./rfc2205" title=""Resource ReSerVation Protocol (RSVP) -- Version 1 Functional Specification"">RFC2205</a>] [<a href="./rfc2210" title=""The Use of RSVP with IETF Integrated Services"">RFC2210</a>] is usually, but
need not necessarily be, used to install the flow QoS state. Intserv
defines two services, in addition to the Default (best effort)
service.
<span class="grey">Karn, et al. Best Current Practice [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
1. Guaranteed Service (GS) [<a href="./rfc2212" title=""Specification of Guaranteed Quality of Service"">RFC2212</a>] offers hard upper bounds on
delay to flows that conform to a traffic specification (TSpec).
It uses a fluid-flow model to relate the TSpec and reserved
bandwidth (RSpec) to variable delay. Non-conforming packets are
forwarded on a best-effort basis.
2. Controlled Load Service (CLS) [<a href="./rfc2211" title=""Specification of the Controlled-Load Network Element Service"">RFC2211</a>] offers delay and packet
loss equivalent to that of an unloaded network to flows that
conform to a TSpec, but no hard bounds. Non-conforming packets
are forwarded on a best-effort basis.
Intserv requires installation of state information in every
participating router. Performance guarantees cannot be made unless
this state is present in every router along the path. This, along
with RSVP processing and the need for usage-based accounting, is
believed to have scalability problems, particularly in the core of
the Internet [<a href="./rfc2208" title=""Resource ReSerVation Protocol (RSVP) -- Version 1 Applicability Statement Some Guidelines on Deployment"">RFC2208</a>].
IP Differentiated Services (Diffserv) [<a href="./rfc2475" title=""An Architecture for Differentiated Services"">RFC2475</a>] provides a "toolkit"
offering coarse-grained controls to aggregates of flows. Diffserv in
itself does *not* provide QoS guarantees, but can be used to
construct services with QoS guarantees across a Diffserv domain.
Diffserv attempts to address the scaling issues associated with
Intserv by requiring state awareness only at the edge of a Diffserv
domain. At the edge, packets are classified into flows, and the
flows are conditioned (marked, policed, or shaped) to a traffic
conditioning specification (TCS). A Diffserv Codepoint (DSCP),
identifying a per-hop behavior (PHB), is set in each packet header.
The DSCP is carried in the DS-field, subsuming six bits of the former
Type-of-Service (ToS) byte [<a href="./rfc791" title=""Internet Protocol"">RFC791</a>] of the IP header [<a href="./rfc2474" title=""Definition of the Differentiated Services Field (DS Field) in the IPv4 and IPv6 Headers"">RFC2474</a>]. The
PHB denotes the forwarding behavior to be applied to the packet in
each node in the Diffserv domain. Although there is a "recommended"
DSCP associated with each PHB, the mappings from DSCPs to PHBs are
defined by the DS-domain. In fact, there can be several DSCPs
associated with the same PHB. Diffserv presently defines three PHBs.
1. The class selector PHB [<a href="./rfc2474" title=""Definition of the Differentiated Services Field (DS Field) in the IPv4 and IPv6 Headers"">RFC2474</a>] replaces the IP precedence field
of the former ToS byte. It offers relative forwarding
priorities.
2. The Expedited Forwarding (EF) PHB [<a href="./rfc3246" title=""An Expedited Forwarding PHB (Per-Hop Behavior)"">RFC3246</a>] [<a href="./rfc3248" title=""A Delay Bound alternative revision of RFC 2598"">RFC3248</a>] guarantees
that packets will have a well-defined minimum departure rate
which, if not exceeded, ensures that the associated queues are
short or empty. EF is intended to support services that offer
tightly-bounded loss, delay, and delay jitter.
<span class="grey">Karn, et al. Best Current Practice [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
3. The Assured Forwarding (AF) PHB group [<a href="./rfc2597" title=""Assured Forwarding PHB Group"">RFC2597</a>] offers different
levels of forwarding assurance for each aggregated flow of
packets. Each AF group is independently allocated forwarding
resources. Packets are marked with one of three drop
precedences; those with the highest drop precedence are dropped
with lower probability than those marked with the lowest drop
precedence. DSCPs are recommended for four independent AF
groups, although a DS domain can have more or fewer AF groups.
Ongoing work in the IETF is addressing ways to support Intserv with
Diffserv. There is some belief (e.g., as expressed in [<a href="./rfc2990" title=""Next Steps for the IP QoS Architecture"">RFC2990</a>])
that such an approach will allow individual flows to receive service
guarantees and scale to the global Internet.
The QoS guarantees that can be offered by the IP layer are a product
of two factors:
1. the concatenation of the QoS guarantees offered by the subnets
along the path of a flow. This implies that a subnet may wish to
offer multiple services (with different QoS guarantees) to the IP
layer, which can then determine which flows use which subnet
service. To put it another way, forwarding behavior in the
subnet needs to be "clued" by the forwarding behavior (service or
PHB) at the IP layer, and
2. the operation of a set of cooperating mechanisms, such as
bandwidth reservation and admission control, policy management,
traffic classification, traffic conditioning (marking, policing
and/or shaping), selective discard, queuing, and scheduling.
Note that support for QoS in subnets may require similar
mechanisms, especially when these subnets are general topology
subnets (e.g., ATM, frame relay, or MPLS) or shared media
subnets.
Many subnetwork designers face inherent tradeoffs between delay,
throughput, reliability, and cost. Other subnetworks have parameters
that manage bandwidth, internal connection state, and the like.
Therefore, the following subnetwork capabilities may be desirable,
although some might be trivial or moot if the subnet is a dedicated
point-to-point link.
1. The subnetwork should have the ability to reserve bandwidth for a
connection or flow and schedule packets accordingly.
2. Bandwidth reservations should be based on a one- or two-token
bucket model, depending on whether the service is intended to
support constant-rate or bursty traffic.
<span class="grey">Karn, et al. Best Current Practice [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
3. If a connection or flow does not use its reserved bandwidth at a
given time, the unused bandwidth should be available for other
flows.
4. Packets in excess of a connection or flow's agreed rate should be
forwarded as best-effort or discarded, depending on the service
offered by the subnet to the IP layer.
5. If a subnet contains error control mechanisms (retransmission
and/or FEC), it should be possible for the IP layer to influence
the inherent tradeoffs between uncorrected errors, packet losses,
and delay. These capabilities at the subnet/IP layer service
boundary correspond to selection of more or less error control
and/or to selection of particular error control mechanisms within
the subnetwork.
6. The subnet layer should know, and be able to inform the IP layer,
how much fixed delay and delay jitter it offers for a flow or
connection. If the Intserv model is used, the delay jitter
component may be best expressed in terms of the TSpec/RSpec model
described in [<a href="./rfc2212" title=""Specification of Guaranteed Quality of Service"">RFC2212</a>].
7. Support of the Diffserv class selectors [<a href="./rfc2474" title=""Definition of the Differentiated Services Field (DS Field) in the IPv4 and IPv6 Headers"">RFC2474</a>] suggests that
the subnet might consider mechanisms that support priorities.
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. Fairness vs Performance</span>
Subnetwork designers should be aware of the tradeoffs between
fairness and efficiency inherent in many transmission scheduling
algorithms. For example, many local area networks use contention
protocols to resolve access to a shared transmission channel. These
protocols represent overhead. While limiting the amount of data that
a subnet node may transmit per contention cycle helps assure timely
access to the channel for each subnet node, it also increases
contention overhead per unit of data sent.
In some mobile radio networks, capacity is limited by interference,
which in turn depends on average transmitter power. Some receivers
may require considerably more transmitter power (generating more
interference and consuming more channel capacity) than others.
In each case, the scheduling algorithm designer must balance
competing objectives: providing a fair share of capacity to each
subnet node while maximizing the total capacity of the network. One
approach for balancing performance and fairness is outlined in
[<a href="#ref-ES00" title="D. and P. Steenkiste">ES00</a>].
<span class="grey">Karn, et al. Best Current Practice [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
<span class="h2"><a class="selflink" id="section-11" href="#section-11">11</a>. Delay Characteristics</span>
The TCP sender bases its retransmission timeout (RTO) on measurements
of the round trip delay experienced by previous packets. This allows
TCP to adapt automatically to the very wide range of delays found on
the Internet. The recommended algorithms are described in [<a href="./rfc2988" title=""Computing TCP's Retransmission Timer"">RFC2988</a>].
Evaluations of TCP's retransmission timer can be found in [<a href="#ref-AP99" title="M. and V. Paxson">AP99</a>] and
[<a href="#ref-LS00" title="R. and K. Sklower">LS00</a>].
These algorithms model the delay along an Internet path as a
normally-distributed random variable with a slowly-varying mean and
standard deviation. TCP estimates these two parameters by
exponentially smoothing individual delay measurements, and it sets
the RTO to the estimated mean delay plus some fixed number of
standard deviations. (The algorithm actually uses mean deviation as
an approximation to standard deviation, because it is easier to
compute.)
The goal is to compute an RTO that is small enough to detect and
recover from packet losses while minimizing unnecessary ("spurious")
retransmissions when packets are unexpectedly delayed but not lost.
Although these goals conflict, the algorithm works well when the
delay variance along the Internet path is low, or the packet loss
rate is low.
If the path delay variance is high, TCP sets an RTO that is much
larger than the mean of the measured delays. If the packet loss rate
is low, the large RTO is of little consequence, as timeouts occur
only rarely. Conversely, if the path delay variance is low, then TCP
recovers quickly from lost packets; again, the algorithm works well.
However, when delay variance and the packet loss rate are both high,
these algorithms perform poorly, especially when the mean delay is
also high.
Because TCP uses returning acknowledgments as a "clock" to time the
transmission of additional data, excessively high delays (even if the
delay variance is low) also affect TCP's ability to fully utilize a
high-speed transmission pipe. It also slows the recovery of lost
packets, even when delay variance is small.
Subnetwork designers should therefore minimize all three parameters
(delay, delay variance, and packet loss) as much as possible.
In many subnetworks, these parameters are inherently in conflict.
For example, on a mobile radio channel, the subnetwork designer can
use retransmission (ARQ) and/or forward error correction (FEC) to
trade off delay, delay variance, and packet loss in an effort to
improve TCP performance. While ARQ increases delay variance, FEC
<span class="grey">Karn, et al. Best Current Practice [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
does not. However, FEC (especially when combined with interleaving)
often increases mean delay, even on good channels where ARQ
retransmissions are not needed and ARQ would not increase either the
delay or the delay variance.
The tradeoffs among these error control mechanisms and their
interactions with TCP can be quite complex, and are the subject of
much ongoing research. We therefore recommend that subnetwork
designers provide as much flexibility as possible in the
implementation of these mechanisms, and provide access to them as
discussed above in the section on Quality of Service.
<span class="h2"><a class="selflink" id="section-12" href="#section-12">12</a>. Bandwidth Asymmetries</span>
Some subnetworks may provide asymmetric bandwidth (or may cause TCP
packet flows to experience asymmetry in the capacity) and the
Internet protocol suite will generally still work fine. However,
there is a case when such a scenario reduces TCP performance. Since
TCP data segments are "clocked" out by returning acknowledgments, TCP
senders are limited by the rate at which ACKs can be returned
[<a href="#ref-BPK98" title=""The Effects of Asymmetry on TCP Performance."">BPK98</a>]. Therefore, when the ratio of the available capacity of the
Internet path carrying the data to the bandwidth of the return path
of the acknowledgments is too large, the slow return of the ACKs
directly impacts performance. Since ACKs are generally smaller than
data segments, TCP can tolerate some asymmetry, but as a general
rule, designers of subnetworks should be aware that subnetworks with
significant asymmetry can result in reduced performance, unless
issues are taken to mitigate this [<a href="./rfc3449" title=""TCP Performance Implications of Network Path Asymmetry"">RFC3449</a>].
Several strategies have been identified for reducing the impact of
asymmetry of the network path between two TCP end hosts, e.g.,
[<a href="./rfc3449" title=""TCP Performance Implications of Network Path Asymmetry"">RFC3449</a>]. These techniques attempt to reduce the number of ACKs
transmitted over the return path (low bandwidth channel) by changes
at the end host(s), and/or by modification of subnetwork packet
forwarding. While these solutions may mitigate the performance
issues caused by asymmetric subnetworks, they do have associated cost
and may have other implications. A fuller discussion of strategies
and their implications is provided in [<a href="./rfc3449" title=""TCP Performance Implications of Network Path Asymmetry"">RFC3449</a>].
<span class="h2"><a class="selflink" id="section-13" href="#section-13">13</a>. Buffering, flow and congestion control</span>
Many subnets include multiple links with varying traffic demands and
possibly different transmission speeds. At each link there must be a
queuing system, including buffering, scheduling, and a capability to
discard excess subnet packets. These queues may also be part of a
subnet flow control or congestion control scheme.
<span class="grey">Karn, et al. Best Current Practice [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
For the purpose of this discussion, we talk about packets without
regard to whether they refer to a complete IP packet or a subnetwork
frame. At each queue, a packet experiences a delay that depends on
competing traffic and the scheduling discipline, and is subjected to
a local discarding policy.
Some subnets may have flow or congestion control mechanisms in
addition to packet dropping. Such mechanisms can operate on
components in the subnet layer, such as schedulers, shapers, or
discarders, and can affect the operation of IP forwarders at the
edges of the subnet. However, with the exception of Explicit
Congestion Notification [<a href="./rfc3168" title=""The Addition of Explicit Congestion Notification (ECN) to IP"">RFC3168</a>] (discussed below), IP has no way to
pass explicit congestion or flow control signals to TCP.
TCP traffic, especially aggregated TCP traffic, is bursty. As a
result, instantaneous queue depths can vary dramatically, even in
nominally stable networks. For optimal performance, packets should
be dropped in a controlled fashion, not just when buffer space is
unavailable. How much buffer space should be supplied is still a
matter of debate, but as a rule of thumb, each node should have
enough buffering to hold one link_bandwidth*link_delay product's
worth of data for each TCP connection sharing the link.
This is often difficult to estimate, since it depends on parameters
beyond the subnetwork's control or knowledge. Internet nodes
generally do not implement admission control policies, and cannot
limit the number of TCP connections that use them. In general, it is
wise to err in favor of too much buffering rather than too little.
It may also be useful for subnets to incorporate mechanisms that
measure propagation delays to assist in buffer sizing calculations.
There is a rough consensus in the research community that active
queue management is important to improving fairness, link
utilization, and throughput [<a href="./rfc2309" title=""Recommendations on Queue Management and Congestion Avoidance in the Internet"">RFC2309</a>]. Although there are questions
and concerns about the effectiveness of active queue management
(e.g., [<a href="#ref-MBDL99" title=""Reasons not to deploy RED"">MBDL99</a>]), it is widely considered an improvement over tail-
drop discard policies.
One form of active queue management is the Random Early Detection
(RED) algorithm [<a href="#ref-RED93" title=""Random Early Detection gateways for Congestion Avoidance"">RED93</a>], a family of related algorithms. In one
version of RED, an exponentially-weighted moving average of the queue
depth is maintained:
When this average queue depth is between a maximum threshold
max_th and a minimum threshold min_th, the probability of packets
that are dropped is proportional to the amount by which the
average queue depth exceeds min_th.
<span class="grey">Karn, et al. Best Current Practice [Page 32]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-33" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
When this average queue depth is equal to max_th, the drop
probability is equal to a configurable parameter max_p.
When this average queue depth is greater than max_th, packets are
always dropped.
Numerous variants on RED appear in the literature, and there are
other active queue management algorithms which claim various
advantages over RED [<a href="#ref-GM02" title=""TCP Westwood and Easy RED to Improve Fairness in High-Speed Networks"">GM02</a>].
With an active queue management algorithm, dropped packets become a
feedback signal to trigger more appropriate congestion behavior by
the TCPs in the end hosts. Randomization of dropping tends to break
up the observed tendency of TCP windows belonging to different TCP
connections to become synchronized by correlated drops, and it also
imposes a degree of fairness on those connections that implement TCP
congestion avoidance properly. Another important property of active
queue management algorithms is that they attempt to keep average
queue depths short while accommodating large short-term bursts.
Since TCP neither knows nor cares whether congestive packet loss
occurs at the IP layer or in a subnet, it may be advisable for
subnets that perform queuing and discarding to consider implementing
some form of active queue management. This is especially true if
large aggregates of TCP connections are likely to share the same
queue. However, active queue management may be less effective in the
case of many queues carrying smaller aggregates of TCP connections,
e.g., in an ATM switch that implements per-VC queuing.
Note that the performance of active queue management algorithms is
highly sensitive to settings of configurable parameters, and also to
factors such as RTT [<a href="#ref-MBB00" title=""Analytic Evaluation of RED Performance"">MBB00</a>] [<a href="#ref-FB00" title=""A Study of Active Queue Management for Congestion Control"">FB00</a>].
Some subnets, most notably ATM, perform segmentation and reassembly
at the subnetwork edges. Care should be taken here in designing
discard policies. If the subnet discards a fragment of an IP packet,
then the remaining fragments become an unproductive load on the
subnet that can markedly degrade end-to-end performance [<a href="#ref-RF95" title=""Dynamics of TCP Traffic over ATM Networks"">RF95</a>].
Subnetworks should therefore attempt to discard these extra fragments
whenever one of them must be discarded. If the IP packet has already
been partially forwarded when discarding becomes necessary, then
every remaining fragment except the one marking the end of the IP
packet should also be discarded. For ATM subnets, this specifically
means using Early Packet Discard and Partial Packet Discard [<a href="#ref-ATMFTM" title=""Traffic Management Specification, Version 4.0"">ATMFTM</a>].
Some subnets include flow control mechanisms that effectively require
that the rate of traffic flows be shaped upon entry to the subnet.
One example of such a subnet mechanism is in the ATM Available Bit
<span class="grey">Karn, et al. Best Current Practice [Page 33]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-34" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
rate (ABR) service category [<a href="#ref-ATMFTM" title=""Traffic Management Specification, Version 4.0"">ATMFTM</a>]. Such flow control mechanisms
have the effect of making the subnet nearly lossless by pushing
congestion into the IP routers at the edges of the subnet. In such a
case, adequate buffering and discard policies are needed in these
routers to deal with a subnet that appears to have varying bandwidth.
Whether there is a benefit in this kind of flow control is
controversial; there are numerous simulation and analytical studies
that go both ways. It appears that some of the issues leading to
such different results include sensitivity to ABR parameters, use of
binary rather than explicit rate feedback, use (or not) of per-VC
queuing, and the specific ATM switch algorithms selected for the
study. Anecdotally, some large networks that used IP over ABR to
carry TCP traffic have claimed it to be successful, but have
published no results.
Another possible approach to flow control in the subnet would be to
work with TCP Explicit Congestion Notification (ECN) semantics
[<a href="./rfc3168" title=""The Addition of Explicit Congestion Notification (ECN) to IP"">RFC3168</a>] through utilizing explicit congestion indicators in subnet
frames. Routers at the edges of the subnet, rather than shaping,
would set the explicit congestion bit in those IP packets that are
received in subnet frames that have an ECN indication. Nodes in the
subnet would need to implement an active queue management protocol
that marks subnet frames instead of dropping them.
ECN is currently a proposed standard, but it is not yet widely
deployed.
<span class="h2"><a class="selflink" id="section-14" href="#section-14">14</a>. Compression</span>
Application data compression is a function that can usually be
omitted in the subnetwork. The endpoints typically have more CPU and
memory resources to run a compression algorithm and a better
understanding of what is being compressed. End-to-end compression
benefits every network element in the path, while subnetwork-layer
compression, by definition, benefits only a single subnetwork.
Data presented to the subnetwork layer may already be in a compressed
format (e.g., a JPEG file), compressed at the application layer
(e.g., the optional "gzip", "compress", and "deflate" compression in
HTTP/1.1 [<a href="./rfc2616" title=""Hypertext Transfer Protocol -- HTTP/1.1"">RFC2616</a>]), or compressed at the IP layer (the IP Payload
Compression Protocol [<a href="./rfc3173" title=""IP Payload Compression Protocol (IPComp)"">RFC3173</a>] supports DEFLATE [<a href="./rfc2394" title=""IP Payload Compression Using DEFLATE"">RFC2394</a>] and LZS
[<a href="./rfc2395" title=""IP Payload Compression Using LZS"">RFC2395</a>]). Compression at the subnetwork edges is of no benefit for
any of these cases.
The subnetwork may also process data that has been encrypted by the
application (OpenPGP [<a href="./rfc2440" title=""OpenPGP Message Format"">RFC2440</a>] or S/MIME [<a href="./rfc2633" title=""S/MIME Version 3 Message Specification"">RFC2633</a>]), just above TCP
(SSL, TLS [<a href="./rfc2246" title=""The TLS Protocol Version 1.0"">RFC2246</a>]), or just above IP (IPsec ESP [<a href="./rfc2406" title=""IP Encapsulating Security Payload (ESP)"">RFC2406</a>]).
<span class="grey">Karn, et al. Best Current Practice [Page 34]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-35" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
Ciphers generate high-entropy bit streams lacking any patterns that
can be exploited by a compression algorithm.
However, much data is still transmitted uncompressed over the
Internet, so subnetwork compression may be beneficial. Any
subnetwork compression algorithm must not expand uncompressible data,
e.g., data that has already been compressed or encrypted.
We make a strong recommendation that subnetworks operating at low
speed or with small MTUs compress IP and transport-level headers (TCP
and UDP) using several header compression schemes developed within
the IETF [<a href="./rfc3150" title=""End-to-end Performance Implications of Slow Links"">RFC3150</a>]. An uncompressed 40-byte TCP/IP header takes
about 33 milliseconds to send at 9600 bps. "VJ" TCP/IP header
compression [<a href="./rfc1144" title=""Compressing TCP/IP Headers for Low-Speed Serial Links"">RFC1144</a>] compresses most headers to 3-5 bytes, reducing
transmission time to several milliseconds on dialup modem links.
This is especially beneficial for small, latency-sensitive packets in
interactive sessions.
Similarly, RTP compression schemes, such as CRTP [<a href="./rfc2508" title=""Compressing IP/UDP/RTP Headers for Low-Speed Serial Links"">RFC2508</a>] and ROHC
[<a href="./rfc3095" title=""RObust Header Compression (ROHC): Framework and four profiles: RTP, UDP, ESP, and uncompressed"">RFC3095</a>], compress most IP/UDP/RTP headers to 1-4 bytes. The
resulting savings are especially significant when audio packets are
kept small to minimize store-and-forward latency.
Designers should consider the effect of the subnetwork error rate on
the performance of header compression. TCP ordinarily recovers from
lost packets by retransmitting only those packets that were actually
lost; packets arriving correctly after a packet loss are kept on a
resequencing queue and do not need to be retransmitted. In VJ TCP/IP
[<a href="./rfc1144" title=""Compressing TCP/IP Headers for Low-Speed Serial Links"">RFC1144</a>] header compression, however, the receiver cannot explicitly
notify a sender of data corruption and subsequent loss of
synchronization between compressor and decompressor. It relies
instead on TCP retransmission to re-synchronize the decompressor.
After a packet is lost, the decompressor must discard every
subsequent packet, even if the subnetwork makes no further errors,
until the sending TCP retransmits to re-synchronize the decompressor.
This effect can substantially magnify the effect of subnetwork packet
losses if the sending TCP window is large, as it will often be on a
path with a large bandwidth*delay product [<a href="#ref-LRKOJ99" title="Oden">LRKOJ99</a>].
Alternate header compression schemes, such as those described in
[<a href="./rfc2507" title=""IP Header Compression"">RFC2507</a>], include an explicit request for retransmission of an
uncompressed packet to allow decompressor resynchronization without
waiting for a TCP retransmission. However, these schemes are not yet
in widespread use.
Both TCP header compression schemes do not compress widely-used TCP
options such as selective acknowledgements (SACK). Both fail to
compress TCP traffic that makes use of explicit congestion
<span class="grey">Karn, et al. Best Current Practice [Page 35]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-36" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
notification (ECN). Work is under way in the IETF ROHC WG to address
these shortcomings in a ROHC header compression scheme for TCP
[<a href="./rfc3095" title=""RObust Header Compression (ROHC): Framework and four profiles: RTP, UDP, ESP, and uncompressed"">RFC3095</a>] [<a href="./rfc3096" title=""Requirements for robust IP/UDP/RTP header compression"">RFC3096</a>].
The subnetwork error rate also is important for RTP header
compression. CRTP uses delta encoding, so a packet loss on the link
causes uncertainty about the subsequent packets, which often must be
discarded until the decompressor has notified the compressor and the
compressor has sent re-synchronizing information. This typically
takes slightly more than the end-to-end path round-trip time. For
links that combine significant error rates with latencies that
require multiple packets to be in flight at a time, this leads to
significant error propagation, i.e., subsequent losses caused by an
initial loss.
For links that are both high-latency (multiple packets in flight from
a typical RTP stream) and error-prone, RTP ROHC provides a more
robust way of RTP header compression, at a cost of higher complexity
at the compressor and decompressor. For example, within a talk
spurt, only extended losses of (depending on the mode chosen) 12-64
packets typically cause error propagation.
<span class="h2"><a class="selflink" id="section-15" href="#section-15">15</a>. Packet Reordering</span>
The Internet architecture does not guarantee that packets will arrive
in the same order in which they were originally transmitted;
transport protocols like TCP must take this into account.
However, reordering does come at a cost with TCP as it is currently
defined. Because TCP returns a cumulative acknowledgment (ACK)
indicating the last in-order segment that has arrived, out-of-order
segments cause a TCP receiver to transmit a duplicate acknowledgment.
When the TCP sender notices three duplicate acknowledgments, it
assumes that a segment was dropped by the network and uses the fast
retransmit algorithm [<a href="#ref-Jac90" title="V.">Jac90</a>] [<a href="./rfc2581" title=""TCP Congestion Control"">RFC2581</a>] to resend the segment. In
addition, the congestion window is reduced by half, effectively
halving TCP's sending rate. If a subnetwork reorders segments
significantly such that three duplicate ACKs are generated, the TCP
sender needlessly reduces the congestion window and performance
suffers.
Packet reordering frequently occurs in parts of the Internet, and it
seems to be difficult or impossible to eliminate [<a href="#ref-BPS99" title=""Packet Reordering is Not Pathological Network Behavior"">BPS99</a>]. For this
reason, research on improving TCP's behavior in the face of packet
reordering [<a href="#ref-LK00" title=""The Eifel Algorithm: Making TCP Robust Against Spurious Retransmissions"">LK00</a>] [<a href="#ref-BA02" title="E. and M. Allman">BA02</a>] has begun.
<span class="grey">Karn, et al. Best Current Practice [Page 36]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-37" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
[<a id="ref-BPS99">BPS99</a>] cites reasons why it may even be undesirable to eliminate
reordering. There are situations where average packet latency can be
reduced, link efficiency can be increased, and/or reliability can be
improved if reordering is permitted. Examples include certain high
speed switches within the Internet backbone and the parallel links
used over many Internet paths for load splitting and redundancy.
This suggests that subnetwork implementers should try to avoid packet
reordering whenever possible, but not if doing so compromises
efficiency, impairs reliability, or increases average packet delay.
Note that every header compression scheme currently standardized for
the Internet requires in-order packet delivery on the link between
compressor and decompressor. PPP is frequently used to carry
compressed TCP/IP packets; since it was originally designed for
point-to-point and dialup links, it is assumed to provide in-order
delivery. For this reason, subnetwork implementers who provide PPP
interfaces to VPNs and other more complex subnetworks, must also
maintain in-order delivery of PPP frames.
<span class="h2"><a class="selflink" id="section-16" href="#section-16">16</a>. Mobility</span>
Internet users are increasingly mobile. Not only are many Internet
nodes laptop computers, but pocket organizers and mobile embedded
systems are also becoming nodes on the Internet. These nodes may
connect to many different access points on the Internet over time,
and they expect this to be largely transparent to their activities.
Except when they are not connected to the Internet at all, and for
performance differences when they are connected, they expect that
everything will "just work" regardless of their current Internet
attachment point or local subnetwork technology.
Changing a host's Internet attachment point involves one or more of
the following steps.
First, if use of the local subnetwork is restricted, the user's
credentials must be verified and access granted. There are many ways
to do this. A trivial example would be an "Internet cafe" that
grants physical access to the subnetwork for a fee. Subnetworks may
implement technical access controls of their own; one example is IEEE
802.11 Wireless Equivalent Privacy [<a href="#ref-IEEE80211">IEEE80211</a>]. It is common
practice for both cellular telephone and Internet service providers
(ISPs) to agree to serve one anothers' users; RADIUS [<a href="./rfc2865" title=""Remote Authentication Dial In User Service (RADIUS)"">RFC2865</a>] is the
standard method for ISPs to exchange authorization information.
Second, the host may have to be reconfigured with IP parameters
appropriate for the local subnetwork. This usually includes setting
an IP address, default router, and domain name system (DNS) servers.
<span class="grey">Karn, et al. Best Current Practice [Page 37]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-38" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
On multiple-access networks, the Dynamic Host Configuration Protocol
(DHCP) [<a href="./rfc2131" title=""Dynamic Host Configuration Protocol"">RFC2131</a>] is almost universally used for this purpose. On PPP
links, these functions are performed by the IP Control Protocol
(IPCP) [<a href="./rfc1332" title=""The PPP Internet Protocol Control Protocol (IPCP)"">RFC1332</a>].
Third, traffic destined for the mobile host must be routed to its
current location. This roaming function is the most common meaning
of the term "Internet mobility".
Internet mobility can be provided at any of several layers in the
Internet protocol stack, and there is ongoing debate as to which is
the most appropriate and efficient. Mobility is already a feature of
certain application layer protocols; the Post Office Protocol (POP)
[<a href="./rfc1939" title=""Post Office Protocol - Version 3"">RFC1939</a>] and the Internet Message Access Protocol (IMAP) [<a href="./rfc3501" title=""INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1"">RFC3501</a>]
were created specifically to provide mobility in the receipt of
electronic mail.
Mobility can also be provided at the IP layer [<a href="./rfc3344" title=""IP Mobility Support for IPv4"">RFC3344</a>]. This
mechanism provides greater transparency, viz., IP addresses that
remain fixed as the nodes move, but at the cost of potentially
significant network overhead and increased delay because of the sub-
optimal network routing and tunneling involved.
Some subnetworks may provide internal mobility, transparent to IP, as
a feature of their own internal routing mechanisms. To the extent
that these simplify routing at the IP layer, reduce the need for
mechanisms like Mobile IP, or exploit mechanisms unique to the
subnetwork, this is generally desirable. This is especially true
when the subnetwork covers a relatively small geographic area and the
users move rapidly between the attachment points within that area.
Examples of internal mobility schemes include Ethernet switching and
intra-system handoff in cellular telephony.
However, if the subnetwork is physically large and connects to other
parts of the Internet at multiple geographic points, care should be
taken to optimize the wide-area routing of packets between nodes on
the external Internet and nodes on the subnet. This is generally
done with "nearest exit" routing strategies. Because a given
subnetwork may be unaware of the actual physical location of a
destination on another subnetwork, it simply routes packets bound for
the other subnetwork to the nearest router between the two. This
implies some awareness of IP addressing and routing within the
subnetwork. The subnetwork may wish to use IP routing internally for
wide area routing and restrict subnetwork-specific routing to
constrained geographic areas where the effects of suboptimal routing
are minimized.
<span class="grey">Karn, et al. Best Current Practice [Page 38]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-39" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
<span class="h2"><a class="selflink" id="section-17" href="#section-17">17</a>. Routing</span>
Subnetworks connecting more than two systems must provide their own
internal Layer-2 forwarding mechanisms, either implicitly (e.g.,
broadcast) or explicitly (e.g., switched). Since routing is the
major function of the Internet layer, the question naturally arises
as to the interaction between routing at the Internet layer and
routing in the subnet, and proper division of function between the
two.
Layer-2 subnetworks can be point-to-point, connecting two systems, or
multipoint. Multipoint subnetworks can be broadcast (e.g., shared
media or emulated) or non-broadcast. Generally, IP considers
multipoint subnetworks as broadcast, with shared-medium Ethernet as
the canonical (and historical) example, and point-to-point
subnetworks as a degenerate case. Non-broadcast subnetworks may
require additional mechanisms, e.g., above IP at the routing layer
[<a href="./rfc2328" title=""OSPF Version 2"">RFC2328</a>].
IP is ignorant of the topology of the subnetwork layer. In
particular, reconfiguration of subnetwork paths is not tracked by the
IP layer. IP is only affected by whether it can send/receive packets
sent to the remotely connected systems via the subnetwork interface
(i.e., the reachability from one router to another). IP further
considers that subnetworks are largely static -- that both their
membership and existence are stable at routing timescales (tens of
seconds); changes to these are considered re-provisioning, rather
than routing.
Routing functionality in a subnetwork is related to addressing in
that subnetwork. Resolution of addresses on subnetwork links is
required for forwarding IP packets across links (e.g., ARP for IPv4,
or ND for IPv6). There is unlikely to be direct interaction between
subnetwork routing and IP routing. Where broadcast is provided or
explicitly emulated, address resolution can be used directly; where
not provided, the link layer routing may interface to a protocol for
resolution, e.g., to the Next-Hop Resolution Protocol [<a href="./rfc2322" title=""Management of IP numbers by peg-dhcp"">RFC2322</a>] to
provide context-dependent address resolution capabilities.
Subnetwork routing can either complement or compete with IP routing.
It complements IP when a subnetwork encapsulates its internal
routing, and where the effects of that routing are not visible at the
IP layer. However, if different paths in the subnetwork have
characteristics that affect IP routing, it can affect or even inhibit
the convergence of IP routing.
<span class="grey">Karn, et al. Best Current Practice [Page 39]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-40" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
Routing protocols generally consider Layer-2 subnetworks, i.e., with
subnet masks and no intermediate IP hops, to have uniform routing
metrics to all members. Routing can break when a link's
characteristics do not match the routing metric, in this case, e.g.,
when some member pairs have different path characteristics. Consider
a virtual Ethernet subnetwork that includes both nearby (sub-
millisecond latency) and remote (100's of milliseconds away) systems.
Presenting that group as a single subnetwork means that some routing
protocols will assume that all pairs have the same delay, and that
that delay is small. Because this is not the case, the routing
tables constructed may be suboptimal or may even fail to converge.
When a subnetwork is used for transit between a set of routers, it
conventionally provides the equivalent of a full mesh of point-to-
point links. Simplicity of the internal subnet structure can be used
(e.g., via NHRP [<a href="./rfc2332" title=""NBMA Next Hop Resolution Protocol (NHRP)"">RFC2332</a>]) to reduce the size of address resolution
tables, but routing exchanges will continue to reflect the full mesh
they emulate. In general, subnetworks should not be used as a
transit among a set of routers where routing protocols would break if
a full mesh of equivalent point-to-point links were used.
Some subnetworks have special features that allow the use of more
effective or responsive routing mechanisms that cannot be implemented
in IP because of its need for generality. One example is the self-
learning bridge algorithm widely used in Ethernet networks. Learning
bridges perform Layer-2 subnetwork forwarding, avoiding the need for
dynamic routing at each subnetwork hop. Another is the "handoff"
mechanism in cellular telephone networks, particularly the "soft
handoff" scheme in IS-95 CDMA.
Subnetworks that cover large geographic areas or include links of
widely-varying capabilities should be avoided. IP routing generally
considers all multipoint subnets equivalent to a local, shared-medium
link with uniform metrics between any pair of systems, and ignores
internal subnetwork topology. Where a subnetwork diverges from that
assumption, it is the obligation of subnetwork designers to provide
compensating mechanisms. Not doing so can affect the scalability and
convergence of IP routing, as noted above.
The subnetwork designer who decides to implement internal routing
should consider whether a custom routing algorithm is warranted, or
if an existing Internet routing algorithm or protocol may suffice.
The designer should consider whether this decision is to reduce the
address resolution table size (possible, but with additional protocol
support required), or is trying to reduce routing table complexity.
The latter may be better achieved by partitioning the subnetwork,
either physically or logically, and using network-layer protocols to
support partitioning (e.g., AS's in BGP). Protocols and routing
<span class="grey">Karn, et al. Best Current Practice [Page 40]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-41" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
algorithms can be notoriously subtle, complex, and difficult to
implement correctly. Much work can be avoided if existing protocols
or implementations can be readily reused.
<span class="h2"><a class="selflink" id="section-18" href="#section-18">18</a>. Security Considerations</span>
Security has become a high priority in the design and operation of
the Internet. The Internet is vast, and countless organizations and
individuals own and operate its various components. A consensus has
emerged for what might be called a "security placement principle": a
security mechanism is most effective when it is placed as close as
possible to, and under the direct control of the owner of the asset
that it protects.
A corollary of this principle is that end-to-end security (e.g.,
confidentiality, authentication, integrity, and access control)
cannot be ensured with subnetwork security mechanisms. Not only are
end-to-end security mechanisms much more closely associated with the
end-user assets they protect, they are also much more comprehensive.
For example, end-to-end security mechanisms cover gaps that can
appear when otherwise good subnetwork mechanisms are concatenated.
This is an important application of the end-to-end principle [<a href="#ref-SRC81" title=""End-to-End Arguments in System Design"">SRC81</a>].
Several security mechanisms that can be used end-to-end have already
been deployed in the Internet and are enjoying increasing use. The
most important are the Secure Sockets Layer (SSL) [<a href="#ref-SSL2" title=""The SSL Protocol"">SSL2</a>] [<a href="#ref-SSL3" title=""The SSL 3.0 Protocol"">SSL3</a>] and
TLS [<a href="./rfc2246" title=""The TLS Protocol Version 1.0"">RFC2246</a>] primarily used to protect web commerce, Pretty Good
Privacy (PGP) [<a href="./rfc1991" title=""PGP Message Exchange Formats"">RFC1991</a>] and S/MIME [RFCs-2630-2634], primarily used
to protect and authenticate email and software distributions, the
Secure Shell (SSH), used for secure remote access and file transfer,
and IPsec [<a href="./rfc2401" title=""Security Architecture for the Internet Protocol"">RFC2401</a>], a general purpose encryption and authentication
mechanism that sits just above IP and can be used by any IP
application. (IPsec can actually be used either on an end-to-end
basis or between security gateways that do not include either or both
end systems.)
Nonetheless, end-to-end security mechanisms are not used as widely as
might be desired. However, the group could not reach consensus on
whether subnetwork designers should be actively encouraged to
implement mechanisms to protect user data.
The clear consensus of the working group held that subnetwork
security mechanisms, especially when weak or incorrectly implemented
[<a href="#ref-BGW01" title=""Intercepting Mobile Communications: The Insecurity of 802.11,"">BGW01</a>], may actually be counterproductive. The argument is that
subnetwork security mechanisms can lull end users into a false sense
of security, diminish the incentive to deploy effective end-to-end
<span class="grey">Karn, et al. Best Current Practice [Page 41]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-42" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
mechanisms, and encourage "risky" uses of the Internet that would not
be made if users understood the inherent limits of subnetwork
security mechanisms.
The other point of view encourages subnetwork security on the
principle that it is better than the default situation, which all too
often is no security at all. Users of especially vulnerable subnets
(such as consumers who have wireless home networks and/or shared
media Internet access) often have control over at most one endpoint
-- usually a client -- and therefore cannot enforce the use of end-
to-end mechanisms. However, subnet security can be entirely adequate
for protecting low-valued assets against the most likely threats. In
any event, subnet mechanisms do not preclude the use of end-to-end
mechanisms, which are typically used to protect highly-valued assets.
This viewpoint recognizes that many security policies implicitly
assume that the entire end-to-end path is composed of a series of
concatenated links that are nominally physically secured. That is,
these policies assume that all endpoints of all links are trusted,
and that access to the physical medium by attackers is difficult. To
meet the assumptions of such policies, explicit mechanisms are needed
for links (especially shared medium links) that lack physical
protection. This, for example, is the rationale that underlies Wired
Equivalent Privacy (WEP) in the IEEE 802.11 [<a href="#ref-IEEE80211">IEEE80211</a>] wireless LAN
standard, and the Baseline Privacy Interface in the DOCSIS [<a href="#ref-DOCSIS1" title="Radio Frequency Interface Specification 1.0">DOCSIS1</a>]
[<a href="#ref-DOCSIS2" title="Radio Frequency Interface Specification 1.1">DOCSIS2</a>] data over cable television networks standards.
We therefore recommend that subnetwork designers who choose to
implement security mechanisms to protect user data be as candid as
possible with the details of such security mechanisms and the
inherent limits of even the most secure mechanisms when implemented
in a subnetwork rather than on an end-to-end basis.
In keeping with the "placement principle", a clear consensus exists
for another subnetwork security role: the protection of the
subnetwork itself. Possible threats to subnetwork assets include
theft of service and denial of service; shared media subnets tend to
be especially vulnerable to such attacks. In some cases, mechanisms
that protect subnet assets can also improve (but cannot ensure) end-
to-end security.
One security service can be provided by the subnetwork that will aid
in the solution of an overall Internet problem: subnetwork security
should provide a mechanism to authenticate the source of a subnetwork
frame. This function is missing in some current protocols, e.g., the
use of ARP [<a href="./rfc826" title=""Ethernet Address Resolution Protocol: Or converting network protocol addresses to 48-bit Ethernet address for transmission on Ethernet hardware"">RFC826</a>] to associate an IPv4 address with a MAC address.
The IPv6 Neighbor Discovery (ND) [<a href="./rfc2461" title=""Neighbor Discovery for IP Version 6 (IPv6)"">RFC2461</a>] performs a similar
function.
<span class="grey">Karn, et al. Best Current Practice [Page 42]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-43" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
There are well-known security flaws with this address resolution
mechanism [<a href="#ref-Wilbur89" title=""MAC layer Security Measures in Local Area Networks"">Wilbur89</a>]. However, the inclusion of subnetwork frame
source authentication will permit a secure subnetwork address.
Another potential role for subnetwork security is to protect users
against traffic analysis, i.e., identifying the communicating parties
and determining their communication patterns and volumes even when
their actual contents are protected by strong end-to-end security
mechanisms. Lower-layer security can be more effective against
traffic analysis due to its inherent ability to aggregate the
communications of multiple parties sharing the same physical
facilities while obscuring higher-layer protocol information that
indicates specific end points, such as IP addresses and TCP/UDP port
numbers.
However, traffic analysis is a notoriously subtle and difficult
threat to understand and defeat, far more so than threats to
confidentiality and integrity. We therefore urge extreme care in the
design of subnetwork security mechanisms specifically intended to
thwart traffic analysis.
Subnetwork designers must keep in mind that design and implementation
for security is difficult [<a href="#ref-Schneier00" title="B.">Schneier00</a>]. [<a href="#ref-Schneier95" title=" Algorithms and Source Code in C (John Wiley and Sons">Schneier95</a>] describes
protocols and algorithms which are considered well-understood and
believed to be sound.
Poor design process, subtle design errors and flawed implementation
can result in gaping vulnerabilities. In recent years, a number of
subnet standards have had problems exposed. The following are
examples of mistakes that have been made:
1. Use of weak and untested algorithms [<a href="#ref-Crypto9912" title=""European Cellular Encryption Algorithms"">Crypto9912</a>] [<a href="#ref-BGW01" title=""Intercepting Mobile Communications: The Insecurity of 802.11,"">BGW01</a>]. For a
variety of reasons, algorithms were chosen which had subtle
flaws, making them vulnerable to a variety of attacks.
2. Use of "security by obscurity" [<a href="#ref-Schneier00" title="B.">Schneier00</a>] [<a href="#ref-Crypto9912" title=""European Cellular Encryption Algorithms"">Crypto9912</a>]. One
common mistake is to assume that keeping cryptographic algorithms
secret makes them more secure. This is intuitive, but wrong.
Full public disclosure early in the design process attracts peer
review by knowledgeable cryptographers. Exposure of flaws by
this review far outweighs any imagined benefit from forcing
attackers to reverse engineer security algorithms.
3. Inclusion of trapdoors [<a href="#ref-Schneier00" title="B.">Schneier00</a>] [<a href="#ref-Crypto9912" title=""European Cellular Encryption Algorithms"">Crypto9912</a>]. Trapdoors are
flaws surreptitiously left in an algorithm to allow it to be
broken. This might be done to recover lost keys or to permit
surreptitious access by governmental agencies. Trapdoors can be
discovered and exploited by malicious attackers.
<span class="grey">Karn, et al. Best Current Practice [Page 43]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-44" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
4. Sending passwords or other identifying information as clear text.
For many years, analog cellular telephones could be cloned and
used to steal service. The cloners merely eavesdropped on the
registration protocols that exchanged everything in clear text.
5. Keys which are common to all systems on a subnet [<a href="#ref-BGW01" title=""Intercepting Mobile Communications: The Insecurity of 802.11,"">BGW01</a>].
6. Incorrect use of a sound mechanism. For example [<a href="#ref-BGW01" title=""Intercepting Mobile Communications: The Insecurity of 802.11,"">BGW01</a>], one
subnet standard includes an initialization vector which is poorly
designed and poorly specified. A determined attacker can easily
recover multiple ciphertexts encrypted with the same key stream
and perform statistical attacks to decipher them.
7. Identifying information sent in clear text that can be resolved
to an individual, identifiable device. This creates a
vulnerability to attacks targeted to that device (or its owner).
8. Inability to renew and revoke shared secret information.
9. Insufficient key length.
10. Failure to address "man-in-the-middle" attacks, e.g., with mutual
authentication.
11. Failure to provide a form of replay detection, e.g., to prevent a
receiver from accepting packets from an attacker that simply
resends previously captured network traffic.
12. Failure to provide integrity mechanisms when providing
confidentiality schemes [<a href="#ref-Bel98" title=""Cryptography and the Internet"">Bel98</a>].
This list is by no means comprehensive. Design problems are
difficult to avoid, but expert review is generally invaluable in
avoiding problems.
In addition, well-designed security protocols can be compromised by
implementation defects. Examples of such defects include use of
predictable pseudo-random numbers [<a href="./rfc1750" title=""Randomness Recommendations for Security"">RFC1750</a>], vulnerability to buffer
overflow attacks due to unsafe use of certain I/O system calls
[<a href="#ref-WFBA2000" title=""A First Step Toward Automated Detection of Buffer Overrun Vulnerabilities"">WFBA2000</a>], and inadvertent exposure of secret data.
<span class="h2"><a class="selflink" id="section-19" href="#section-19">19</a>. Contributors</span>
This document represents a consensus of the members of the IETF
Performance Implications of Link Characteristics (PILC) working
group.
<span class="grey">Karn, et al. Best Current Practice [Page 44]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-45" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
This document would not have been possible without the contributions
of a great number of people in the Performance Implications of Link
Characteristics Working Group. In particular, the following people
provided major contributions of text, editing, and advice on this
document: Mark Allman provided the final editing to complete this
document. Carsten Bormann provided text on robust header
compression. Gorry Fairhurst provided text on broadcast and
multicast issues, routing, and many valuable comments on the entire
document. Aaron Falk provided text on bandwidth on demand. Dan
Grossman provided text on many facets of the document. Reiner Ludwig
provided thorough document review and text on TCP vs. Link-Layer
Retransmission. Jamshid Mahdavi provided text on TCP performance
calculations. Saverio Mascolo provided feedback on the document.
Gabriel Montenegro provided feedback on the document. Marie-Jose
Montpetit provided text on bandwidth on demand. Joe Touch provided
text on multicast, broadcast, and routing, and Lloyd Wood provided
many valuable comments on versions of the document.
<span class="h2"><a class="selflink" id="section-20" href="#section-20">20</a>. Informative References</span>
References of the form RFCnnnn are Internet Request for Comments
(RFC) documents available online at www.rfc-editor.org.
[<a id="ref-802.1D">802.1D</a>] Information Technology Telecommunications and
information exchange between systems Local and
metropolitan area networks, Common specifications Media
access control (MAC) bridges, IEEE 802.1D, 1998. ISO
15802-3.
[<a id="ref-802.1p">802.1p</a>] IEEE, 802.1p, Standard for Local and Metropolitan Area
Networks - Supplement to Media Access Control (MAC)
Bridges: Traffic Class Expediting and Multicast.
[<a id="ref-AP99">AP99</a>] Allman, M. and V. Paxson, On Estimating End-to-End
Network Path Properties, In Proceedings of ACM SIGCOMM
99.
[<a id="ref-AR02">AR02</a>] Acar, G. and C. Rosenberg, Weighted Fair Bandwidth-on-
Demand (WFBoD) for Geo-Stationary Satellite Networks
with On-Board Processing, Computer Networks, 39(1),
2002.
[<a id="ref-ATMFTM">ATMFTM</a>] The ATM Forum, "Traffic Management Specification,
Version 4.0", April 1996, document af-tm-0056.000.
<a href="http://www.atmforum.com/">http://www.atmforum.com/</a>
<span class="grey">Karn, et al. Best Current Practice [Page 45]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-46" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
[<a id="ref-BA02">BA02</a>] Blanton, E. and M. Allman, On Making TCP More Robust to
Packet Reordering. ACM Computer Communication Review,
32(1), January 2002.
[<a id="ref-Bel98">Bel98</a>] Bellovin, S., "Cryptography and the Internet", in
Proceedings of CRYPTO '98, August 1998.
<a href="http://www.research.att.com/~smb/papers/inet-crypto.pdf">http://www.research.att.com/~smb/papers/inet-crypto.pdf</a>
[<a id="ref-BGW01">BGW01</a>] Borisov, N., Goldberg, I. and D. Wagner, "Intercepting
Mobile Communications: The Insecurity of 802.11," In
Proceedings of ACM MobiCom, July 2001.
[<a id="ref-BPK98">BPK98</a>] Balakrishnan, H., Padmanabhan, V. and R. Katz. "The
Effects of Asymmetry on TCP Performance." ACM Mobile
Networks and Applications (MONET), 1998.
[<a id="ref-BPS99">BPS99</a>] Bennet,, J.C.R., Partridge, C. and N. Shectman, "Packet
Reordering is Not Pathological Network Behavior",
IEEE/ACM Transactions on Networking, Vol. 7, No. 6,
December 1999.
[<a id="ref-CGMP">CGMP</a>] Farinacci D., Tweedly A. and T. Speakman, "Cisco Group
Management Protocol (CGMP)", 1996/1997.
<a href="ftp://ftpeng.cisco.com/ipmulticast/specs/cgmp.txt">ftp://ftpeng.cisco.com/ipmulticast/specs/cgmp.txt</a>
[<a id="ref-Crypto9912">Crypto9912</a>] Schneier, B., "European Cellular Encryption Algorithms"
Crypto-Gram, December 15, 1999.
<a href="http://www.counterpane.com">http://www.counterpane.com</a>
[<a id="ref-DIX82">DIX82</a>] Digital Equipment Corp, Intel Corp, Xerox Corp,
Ethernet Local Area Network Specification Version 2.0,
November 1982.
[<a id="ref-DOCSIS1">DOCSIS1</a>] Data-Over-Cable Service Interface Specifications, Radio
Frequency Interface Specification 1.0, SP-RFI-I05-
991105, November 1999, Cable Television Laboratories,
Inc.
[<a id="ref-DOCSIS2">DOCSIS2</a>] Data-Over-Cable Service Interface Specifications, Radio
Frequency Interface Specification 1.1, SP-RFIv1.1-I05-
000714, July 2000, Cable Television Laboratories, Inc.
[<a id="ref-DOCSIS3">DOCSIS3</a>] Lai, W.S., "DOCSIS-Based Cable Networks: Impact of
Large Data Packets on Upstream Capacity", 14th ITC
Specialists Seminar on Access Networks and Systems,
Barcelona, Spain, April 25-27, 2001.
<span class="grey">Karn, et al. Best Current Practice [Page 46]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-47" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
[<a id="ref-EN301192">EN301192</a>] ETSI, European Broadcasting Union, Digital Video
Broadcasting (DVB); DVB Specification for Data
Broadcasting, European Standard (Telecommunications
Series) EN 301 192 v1.2.1(1999-06).
[<a id="ref-ES00">ES00</a>] Eckhardt, D. and P. Steenkiste, "Effort-limited Fair
(ELF) Scheduling for Wireless Networks, Proceedings of
IEEE Infocom 2000.
[<a id="ref-FB00">FB00</a>] Firoiu V. and M. Borden, "A Study of Active Queue
Management for Congestion Control" to appear in Infocom
2000.
[<a id="ref-GM02">GM02</a>] Grieco1, L. and S. Mascolo, "TCP Westwood and Easy RED
to Improve Fairness in High-Speed Networks",
Proceedings of the 7th International Workshop on
Protocols for High-Speed Networks, April 2002.
[<a id="ref-IEEE8023">IEEE8023</a>] IEEE 802.3 CSMA/CD Access Method.
<a href="http://standards.ieee.org/">http://standards.ieee.org/</a>
[<a id="ref-IEEE80211">IEEE80211</a>] IEEE 802.11 Wireless LAN standard.
<a href="http://standards.ieee.org/">http://standards.ieee.org/</a>
[<a id="ref-ISO3309">ISO3309</a>] ISO/IEC 3309:1991(E), "Information Technology -
Telecommunications and information exchange between
systems - High-level data link control (HDLC)
procedures - Frame structure", International
Organization For Standardization, Fourth edition 1991-
06-01.
[<a id="ref-ISO13818">ISO13818</a>] ISO/IEC, ISO/IEC 13818-1:2000(E) Information
Technology - Generic coding of moving pictures and
associated audio information: Systems, Second edition,
2000-12-01 International Organization for
Standardization and International Electrotechnical
Commission.
[<a id="ref-ITU-I363">ITU-I363</a>] ITU-T I.363.5 B-ISDN ATM Adaptation Layer Specification
Type AAL5, International Standards Organisation (ISO),
1996.
[<a id="ref-Jac90">Jac90</a>] Jacobson, V., Modified TCP Congestion Avoidance
Algorithm. Email to the end2end-interest mailing list,
April 1990.
<a href="ftp://ftp.ee.lbl.gov/email/vanj.90apr30.txt">ftp://ftp.ee.lbl.gov/email/vanj.90apr30.txt</a>
<span class="grey">Karn, et al. Best Current Practice [Page 47]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-48" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
[<a id="ref-KY02">KY02</a>] Khafizov, F. and M. Yavuz, Running TCP Over IS-2000,
Proceedings of IEEE ICC, 2002.
[<a id="ref-LK00">LK00</a>] Ludwig, R. and R. H. Katz, "The Eifel Algorithm: Making
TCP Robust Against Spurious Retransmissions", ACM
Computer Communication Review, Vol. 30, No. 1, January
2000.
[<a id="ref-LKJK02">LKJK02</a>] Ludwig, R., Konrad, A., Joseph, A. D. and R. H. Katz,
"Optimizing the End-to-End Performance of Reliable
Flows over Wireless Links", Kluwer/ACM Wireless
Networks Journal, Vol. 8, Nos. 2/3, pp. 289-299,
March-May 2002.
[<a id="ref-LRKOJ99">LRKOJ99</a>] Ludwig, R., Rathonyi, B., Konrad, A., Oden, K. and A.
Joseph, Multi-Layer Tracing of TCP over a Reliable
Wireless Link, pp. 144-154, In Proceedings of ACM
SIGMETRICS 99.
[<a id="ref-LS00">LS00</a>] Ludwig, R. and K. Sklower, The Eifel Retransmission
Timer, ACM Computer Communication Review, Vol. 30, No.
3, July 2000.
[<a id="ref-MAGMA-PROXY">MAGMA-PROXY</a>] Fenner, B., He, H., Haberman, B. and H. Sandick,
"IGMP/MLD-based Multicast Forwarding ("IGMP/MLD
Proxying")", Work in Progress.
[<a id="ref-MAGMA-SNOOP">MAGMA-SNOOP</a>] Christensen, M., Kimball, K. and F. Solensky,
"Considerations for IGMP and MLD Snooping Switches",
Work in Progress.
[<a id="ref-MBB00">MBB00</a>] May, M., Bonald, T. and J-C. Bolot, "Analytic
Evaluation of RED Performance", INFOCOM 2000.
[<a id="ref-MBDL99">MBDL99</a>] May, M., Bolot, J., Diot, C. and B. Lyles, "Reasons not
to deploy RED", Proc. of 7th. International Workshop on
Quality of Service (IWQoS'99), June 1999.
[<a id="ref-MSMO97">MSMO97</a>] Mathis, M., Semke, J., Mahdavi, J. and T. Ott, "The
Macroscopic Behavior of the TCP Congestion Avoidance
Algorithm", Computer Communication Review, Vol. 27,
number 3, July 1997.
[<a id="ref-MYR95">MYR95</a>] Boden, N., Cohen, D., Felderman, R., Kulawik, A.,
Seitz, C., et al. MYRINET: A Gigabit per Second Local
Area Network, IEEE-Micro, Vol. 15, No.1, February 1995,
pp. 29-36.
<span class="grey">Karn, et al. Best Current Practice [Page 48]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-49" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
[<a id="ref-PFTK98">PFTK98</a>] Padhye, J., Firoiu, V., Towsley, D. and J. Kurose,
"Modeling TCP Throughput: a Simple Model and its
Empirical Validation", UMASS CMPSCI Tech Report TR98-
008, Feb. 1998.
[<a id="ref-RED93">RED93</a>] Floyd, S. and V. Jacobson, "Random Early Detection
gateways for Congestion Avoidance", IEEE/ACM
Transactions in Networking, Vol. 1 No. 4, August 1993.
<a href="http://www.aciri.org/floyd/papers/red/red.html">http://www.aciri.org/floyd/papers/red/red.html</a>
[<a id="ref-RF95">RF95</a>] Romanow, A. and S. Floyd, "Dynamics of TCP Traffic over
ATM Networks". IEEE Journal of Selected Areas in
Communication, Vol.13 No. 4, May 1995, p. 633-641.
[<a id="ref-RFC791">RFC791</a>] Postel, J., "Internet Protocol", STD 5, <a href="./rfc791">RFC 791</a>,
September 1981.
[<a id="ref-RFC793">RFC793</a>] Postel, J., "Transmission Control Protocol", STD 7, <a href="./rfc793">RFC</a>
<a href="./rfc793">793</a>, September 1981.
[<a id="ref-RFC768">RFC768</a>] Postel, J., "User Datagram Protocol", STD 6, <a href="./rfc768">RFC 768</a>,
August 1980.
[<a id="ref-RFC826">RFC826</a>] Plummer, D.C., "Ethernet Address Resolution Protocol:
Or converting network protocol addresses to 48-bit
Ethernet address for transmission on Ethernet
hardware", STD 37, <a href="./rfc826">RFC 826</a>, November 1982.
[<a id="ref-RFC1071">RFC1071</a>] Braden, R., Borman, D. and C. Partridge, "Computing the
Internet checksum", <a href="./rfc1071">RFC 1071</a>, September 1988.
[<a id="ref-RFC1112">RFC1112</a>] Deering, S., "Host Extensions for IP Multicasting", STD
5, <a href="./rfc1112">RFC 1112</a>, August 1989.
[<a id="ref-RFC1144">RFC1144</a>] Jacobson, V., "Compressing TCP/IP Headers for Low-Speed
Serial Links", <a href="./rfc1144">RFC 1144</a>, February 1990.
[<a id="ref-RFC1191">RFC1191</a>] Mogul, J. and S. Deering, "Path MTU Discovery", <a href="./rfc1191">RFC</a>
<a href="./rfc1191">1191</a>, November 1990.
[<a id="ref-RFC1332">RFC1332</a>] McGregor, C., "The PPP Internet Protocol Control
Protocol (IPCP)", <a href="./rfc1332">RFC 1332</a>, May 1992.
[<a id="ref-RFC1435">RFC1435</a>] Knowles, S., "IESG Advice from Experience with Path MTU
Discovery", <a href="./rfc1435">RFC 1435</a>, March 1993.
<span class="grey">Karn, et al. Best Current Practice [Page 49]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-50" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
[<a id="ref-RFC1633">RFC1633</a>] Braden, R., Clark, D. and S. Shenker, "Integrated
Services in the Internet Architecture: an Overview",
<a href="./rfc1633">RFC 1633</a>, June 1994.
[<a id="ref-RFC1661">RFC1661</a>] Simpson, W., "The Point-to-Point Protocol (PPP)", STD
51, <a href="./rfc1661">RFC 1661</a>, July 1994.
[<a id="ref-RFC1662">RFC1662</a>] Simpson, W., Ed., "PPP in HDLC-like Framing", STD 51,
<a href="./rfc1662">RFC 1662</a>, July 1994.
[<a id="ref-RFC1750">RFC1750</a>] Eastlake 3rd, D., Crocker, S. and J. Schiller,
"Randomness Recommendations for Security", <a href="./rfc1750">RFC 1750</a>,
December 1994.
[<a id="ref-RFC1812">RFC1812</a>] Baker, F., Ed., "Requirements for IP Version 4
Routers", <a href="./rfc1812">RFC 1812</a>, June 1995.
[<a id="ref-RFC1939">RFC1939</a>] Myers, J. and M. Rose, "Post Office Protocol - Version
3", STD 53, <a href="./rfc1939">RFC 1939</a>, May 1996.
[<a id="ref-RFC1981">RFC1981</a>] McCann, J., Deering, S. and J. Mogul, "Path MTU
Discovery for IP version 6", <a href="./rfc1981">RFC 1981</a>, August 1996.
[<a id="ref-RFC1991">RFC1991</a>] Atkins, D., Stallings, W. and P. Zimmermann, "PGP
Message Exchange Formats", <a href="./rfc1991">RFC 1991</a>, August 1996.
[<a id="ref-RFC2018">RFC2018</a>] Mathis, M., Mahdavi, J., Floyd, S. and A. Romanow, "TCP
Selective Acknowledgement Options", <a href="./rfc2018">RFC 2018</a>, October
1996.
[<a id="ref-RFC2131">RFC2131</a>] Droms, R., "Dynamic Host Configuration Protocol", <a href="./rfc2131">RFC</a>
<a href="./rfc2131">2131</a>, March 1997.
[<a id="ref-RFC2205">RFC2205</a>] Braden, R., Ed., Zhang, L., Berson, S., Herzog, S. and
S. Jamin, "Resource ReSerVation Protocol (RSVP) --
Version 1 Functional Specification", <a href="./rfc2205">RFC 2205</a>,
September 1997.
[<a id="ref-RFC2208">RFC2208</a>] Mankin, A., Baker, F., Braden, B., Bradner, S., O`Dell,
M., Romanow, A., Weinrib, A. and L. Zhang, "Resource
ReSerVation Protocol (RSVP) -- Version 1 Applicability
Statement Some Guidelines on Deployment", <a href="./rfc2208">RFC 2208</a>,
September 1997.
[<a id="ref-RFC2210">RFC2210</a>] Wroclawski, J., "The Use of RSVP with IETF Integrated
Services", <a href="./rfc2210">RFC 2210</a>, September 1997.
<span class="grey">Karn, et al. Best Current Practice [Page 50]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-51" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
[<a id="ref-RFC2211">RFC2211</a>] Wroclawski, J., "Specification of the Controlled-Load
Network Element Service", <a href="./rfc2211">RFC 2211</a>, September 1997.
[<a id="ref-RFC2212">RFC2212</a>] Shenker, S., Partridge, C. and R. Guerin,
"Specification of Guaranteed Quality of Service", <a href="./rfc2212">RFC</a>
<a href="./rfc2212">2212</a>, September 1997.
[<a id="ref-RFC2246">RFC2246</a>] Dierks, T. and C. Allen, "The TLS Protocol Version
1.0", <a href="./rfc2246">RFC 2246</a>, January 1999.
[<a id="ref-RFC2309">RFC2309</a>] Braden, B., Clark, D., Crowcroft, J., Davie, B.,
Deering, S., Estrin, D., Floyd, S., Jacobson, V.,
Minshall, G., Partridge, C., Peterson, L.,
Ramakrishnan, K., Shenker, S., Wroclawski, J. and L.
Zhang, "Recommendations on Queue Management and
Congestion Avoidance in the Internet", <a href="./rfc2309">RFC 2309</a>, April
1998.
[<a id="ref-RFC2322">RFC2322</a>] van den Hout, K., Koopal, A. and R. van Mook,
"Management of IP numbers by peg-dhcp", <a href="./rfc2322">RFC 2322</a>, 1
April 1998.
[<a id="ref-RFC2328">RFC2328</a>] Moy, J., "OSPF Version 2", STD 54, <a href="./rfc2328">RFC 2328</a>, April
1998.
[<a id="ref-RFC2332">RFC2332</a>] Luciani, J., Katz, D., Piscitello, D., Cole, B. and N.
Doraswamy, "NBMA Next Hop Resolution Protocol (NHRP)",
<a href="./rfc2332">RFC 2332</a>, April 1998.
[<a id="ref-RFC2364">RFC2364</a>] Gross, G., Kaycee, M., Li, A., Malis, A. and J.
Stephens, "PPP Over AAL5", <a href="./rfc2364">RFC 2364</a>, July 1998.
[<a id="ref-RFC2394">RFC2394</a>] Pereira, R., "IP Payload Compression Using DEFLATE",
<a href="./rfc2394">RFC 2394</a>, December 1998.
[<a id="ref-RFC2395">RFC2395</a>] Friend, R. and R. Monsour, "IP Payload Compression
Using LZS", <a href="./rfc2395">RFC 2395</a>, December 1998.
[<a id="ref-RFC2401">RFC2401</a>] Kent, S. and R. Atkinson, "Security Architecture for
the Internet Protocol", <a href="./rfc2401">RFC 2401</a>, November 1998.
[<a id="ref-RFC2406">RFC2406</a>] Kent, S. and R. Atkinson, "IP Encapsulating Security
Payload (ESP)", <a href="./rfc2406">RFC 2406</a>, November 1998.
[<a id="ref-RFC2440">RFC2440</a>] Callas, J., Donnerhacke, L., Finney, H. and R. Thayer,
"OpenPGP Message Format", <a href="./rfc2440">RFC 2440</a>, November 1998.
<span class="grey">Karn, et al. Best Current Practice [Page 51]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-52" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
[<a id="ref-RFC2460">RFC2460</a>] Deering, S. and R. Hinden, "Internet Protocol, Version
6 (IPv6) Specification", <a href="./rfc2460">RFC 2460</a>, December 1998.
[<a id="ref-RFC2461">RFC2461</a>] Narten, T., Nordmark, E. and W. Simpson, "Neighbor
Discovery for IP Version 6 (IPv6)", <a href="./rfc2461">RFC 2461</a>, December
1998.
[<a id="ref-RFC2474">RFC2474</a>] Nichols, K., Blake, S., Baker, F. and D. Black,
"Definition of the Differentiated Services Field (DS
Field) in the IPv4 and IPv6 Headers", <a href="./rfc2474">RFC 2474</a>,
December 1998.
[<a id="ref-RFC2475">RFC2475</a>] Blake, S., Black, D., Carlson, M., Davies, E., Wang, Z.
and W. Weiss, "An Architecture for Differentiated
Services", <a href="./rfc2475">RFC 2475</a>, December 1998.
[<a id="ref-RFC2507">RFC2507</a>] Degermark, M., Nordgren, B. and S. Pink, "IP Header
Compression", <a href="./rfc2507">RFC 2507</a>, February 1999.
[<a id="ref-RFC2508">RFC2508</a>] Casner, S. and V. Jacobson, "Compressing IP/UDP/RTP
Headers for Low-Speed Serial Links", <a href="./rfc2508">RFC 2508</a>, February
1999.
[<a id="ref-RFC2581">RFC2581</a>] Allman, M., Paxson, V. and W. Stevens, "TCP Congestion
Control", <a href="./rfc2581">RFC 2581</a>, April 1999.
[<a id="ref-RFC2582">RFC2582</a>] Floyd, S. and T. Henderson, "The NewReno Modification
to TCP's Fast Recovery Algorithm", <a href="./rfc2582">RFC 2582</a>, April
1999.
[<a id="ref-RFC2597">RFC2597</a>] Heinanen, J., Baker, F., Weiss, W. and J. Wroclawski,
"Assured Forwarding PHB Group", <a href="./rfc2597">RFC 2597</a>, June 1999.
[<a id="ref-RFC2616">RFC2616</a>] Fielding, R., Gettys, J., Mogul, J., Frystyk, H.,
Masinter, L., Leach, P. and T. Berners-Lee, "Hypertext
Transfer Protocol -- HTTP/1.1", <a href="./rfc2616">RFC 2616</a>, June 1999.
[<a id="ref-RFC2630">RFC2630</a>] Housley, R., "Cryptographic Message Syntax", <a href="./rfc2630">RFC 2630</a>,
June 1999.
[<a id="ref-RFC2631">RFC2631</a>] Rescorla, E., "Diffie-Hellman Key Agreement Method",
<a href="./rfc2631">RFC 2631</a>, June 1999.
[<a id="ref-RFC2632">RFC2632</a>] Ramsdell, B., Ed., "S/MIME Version 3 Certificate
Handling", <a href="./rfc2632">RFC 2632</a>, June 1999.
<span class="grey">Karn, et al. Best Current Practice [Page 52]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-53" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
[<a id="ref-RFC2633">RFC2633</a>] Ramsdell, B., "S/MIME Version 3 Message Specification",
<a href="./rfc2633">RFC 2633</a>, June 1999.
[<a id="ref-RFC2634">RFC2634</a>] Hoffman, P., "Enhanced Security Services for S/MIME",
<a href="./rfc2634">RFC 2634</a>, June 1999.
[<a id="ref-RFC2684">RFC2684</a>] Grossman, D. and J. Heinanen, "Multiprotocol
Encapsulation over ATM Adaptation Layer 5", <a href="./rfc2684">RFC 2684</a>,
September 1999.
[<a id="ref-RFC2686">RFC2686</a>] Bormann, C., "The Multi-Class Extension to Multi-Link
PPP", <a href="./rfc2686">RFC 2686</a>, September 1999.
[<a id="ref-RFC2687">RFC2687</a>] Bormann, C., "PPP in a Real-time Oriented HDLC-like
Framing", <a href="./rfc2687">RFC 2687</a>, September 1999.
[<a id="ref-RFC2689">RFC2689</a>] Bormann, C., "Providing Integrated Services over Low-
bitrate Links", <a href="./rfc2689">RFC 2689</a>, September 1999.
[<a id="ref-RFC2710">RFC2710</a>] Deering, S., Fenner, W. and B. Haberman, "Multicast
Listener Discovery (MLD) for IPv6", <a href="./rfc2710">RFC 2710</a>, October
1999.
[<a id="ref-RFC2784">RFC2784</a>] Farinacci, D., Li, T., Hanks, S., Meyer, D. and P.
Traina, "Generic Routing Encapsulation (GRE)", <a href="./rfc2784">RFC</a>
<a href="./rfc2784">2784</a>, March 2000.
[<a id="ref-RFC2865">RFC2865</a>] Rigney, C., Willens, S., Rubens, A. and W. Simpson,
"Remote Authentication Dial In User Service (RADIUS)",
<a href="./rfc2865">RFC 2865</a>, June 2000.
[<a id="ref-RFC2914">RFC2914</a>] Floyd, S., "Congestion Control Principles", <a href="https://www.rfc-editor.org/bcp/bcp41">BCP 41</a>, <a href="./rfc2914">RFC</a>
<a href="./rfc2914">2914</a>, September 2000.
[<a id="ref-RFC2923">RFC2923</a>] Lahey, K., "TCP Problems with Path MTU Discovery", <a href="./rfc2923">RFC</a>
<a href="./rfc2923">2923</a>, September 2000.
[<a id="ref-RFC2988">RFC2988</a>] Paxson, V. and M. Allman, "Computing TCP's
Retransmission Timer", <a href="./rfc2988">RFC 2988</a>, November 2000.
[<a id="ref-RFC2990">RFC2990</a>] Huston, G., "Next Steps for the IP QoS Architecture",
<a href="./rfc2990">RFC 2990</a>, November 2000.
[<a id="ref-RFC3048">RFC3048</a>] Whetten, B., Vicisano, L., Kermode, R., Handley, M.,
Floyd, S. and M. Luby, "Reliable Multicast Transport
Building Blocks for One-to-Many Bulk-Data Transfer",
<a href="./rfc3048">RFC 3048</a>, January 2001.
<span class="grey">Karn, et al. Best Current Practice [Page 53]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-54" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
[<a id="ref-RFC3095">RFC3095</a>] Bormann, C., Ed., Burmeister, C., Degermark, M.,
Fukushima, H., Hannu, H., Jonsson, L-E., Hakenberg, R.,
Koren, T., Le, K., Liu, Z., Martensson, A., Miyazaki,
A., Svanbro, K., Wiebke, T., Yoshimura, T. and H.
Zheng, "RObust Header Compression (ROHC): Framework
and four profiles: RTP, UDP, ESP, and uncompressed",
<a href="./rfc3095">RFC 3095</a>, July 2001.
[<a id="ref-RFC3096">RFC3096</a>] Degermark, M., Ed., "Requirements for robust IP/UDP/RTP
header compression", <a href="./rfc3096">RFC 3096</a>, July 2001.
[<a id="ref-RFC3150">RFC3150</a>] Dawkins, S., Montenegro, G., Kojo, M. and V. Magret,
"End-to-end Performance Implications of Slow Links",
<a href="https://www.rfc-editor.org/bcp/bcp48">BCP 48</a>, <a href="./rfc3150">RFC 3150</a>, July 2001.
[<a id="ref-RFC3155">RFC3155</a>] Dawkins, S., Montenegro, G., Kojo, M., Magret, V. and
N. Vaidya, "End-to-end Performance Implications of
Links with Errors", <a href="https://www.rfc-editor.org/bcp/bcp50">BCP 50</a>, <a href="./rfc3155">RFC 3155</a>, August 2001.
[<a id="ref-RFC3168">RFC3168</a>] Ramakrishnan, K., Floyd, S. and D. Black, "The Addition
of Explicit Congestion Notification (ECN) to IP", <a href="./rfc3168">RFC</a>
<a href="./rfc3168">3168</a>, September 2001.
[<a id="ref-RFC3173">RFC3173</a>] Shacham, A., Monsour, B., Pereira, R. and M. Thomas,
"IP Payload Compression Protocol (IPComp)", <a href="./rfc3173">RFC 3173</a>,
September 2001.
[<a id="ref-RFC3246">RFC3246</a>] Davie, B., Charny, A., Bennet, J.C.R., Benson, K., Le
Boudec, J.Y., Courtney, W., Davari, S., Firoiu, V. and
D. Stiliadis, "An Expedited Forwarding PHB (Per-Hop
Behavior)", <a href="./rfc3246">RFC 3246</a>, March 2002.
[<a id="ref-RFC3248">RFC3248</a>] Armitage, G., Carpenter, B., Casati, A., Crowcroft, J.,
Halpern, J., Kumar, B. and J. Schnizlein, "A Delay
Bound alternative revision of <a href="./rfc2598">RFC 2598</a>", <a href="./rfc3248">RFC 3248</a>,
March 2002.
[<a id="ref-RFC3344">RFC3344</a>] Perkins, C., Ed., "IP Mobility Support for IPv4", <a href="./rfc3344">RFC</a>
<a href="./rfc3344">3344</a>, August 2002.
[<a id="ref-RFC3366">RFC3366</a>] Fairhurst, G. and L. Wood, "Advice to link designers on
link Automatic Repeat reQuest (ARQ)", <a href="https://www.rfc-editor.org/bcp/bcp62">BCP 62</a>, <a href="./rfc3366">RFC 3366</a>,
August 2002.
<span class="grey">Karn, et al. Best Current Practice [Page 54]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-55" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
[<a id="ref-RFC3376">RFC3376</a>] Cain, B., Deering, S., Kouvelas, I., Fenner, B. and A.
Thyagarajan, "Internet Group Management Protocol,
Version 3", <a href="./rfc3376">RFC 3376</a>, October 2002.
[<a id="ref-RFC3449">RFC3449</a>] Balakrishnan, H., Padmanabhan, V., Fairhurst, G. and M.
Sooriyabandara, "TCP Performance Implications of
Network Path Asymmetry", <a href="https://www.rfc-editor.org/bcp/bcp69">BCP 69</a>, <a href="./rfc3449">RFC 3449</a>, December
2002.
[<a id="ref-RFC3450">RFC3450</a>] Luby, M., Gemmell, J., Vicisano, L., Rizzo, L. and J.
Crowcroft, "Asynchronous Layered Coding (ALC) Protocol
Instantiation", <a href="./rfc3450">RFC 3450</a>, December 2002.
[<a id="ref-RFC3451">RFC3451</a>] Luby, M., Gemmell, J., Vicisano, L., Rizzo, L.,
Handley, M. and J. Crowcroft, "Layered Coding Transport
(LCT) Building Block", <a href="./rfc3451">RFC 3451</a>, December 2002.
[<a id="ref-RFC3452">RFC3452</a>] Luby, M., Vicisano, L., Gemmell, J., Rizzo, L.,
Handley, M. and J. Crowcroft, "Forward Error Correction
(FEC) Building Block", <a href="./rfc3452">RFC 3452</a>, December 2002.
[<a id="ref-RFC3453">RFC3453</a>] Luby, M., Vicisano, L., Gemmell, J., Rizzo, L.,
Handley, M. and J. Crowcroft, "The Use of Forward Error
Correction (FEC) in Reliable Multicast", <a href="./rfc3453">RFC 3453</a>,
December 2002.
[<a id="ref-RFC3488">RFC3488</a>] Wu, I. and T. Eckert, "Cisco Systems Router-port Group
Management Protocol (RGMP)", <a href="./rfc3488">RFC 3488</a>, February 2003.
[<a id="ref-RFC3501">RFC3501</a>] Crispin, M., "INTERNET MESSAGE ACCESS PROTOCOL -
VERSION 4rev1", <a href="./rfc3501">RFC 3501</a>, March 2003.
[<a id="ref-RFC3828">RFC3828</a>] Larzon, L-A., Degermark, M., Pink, S., Jonsson, L-E.,
Ed. and G. Fairhurst, Ed., "The User Datagram Protocol
(UDP)-Lite Protocol", <a href="./rfc3828">RFC 3828</a>, June 2004.
[<a id="ref-Schneier95">Schneier95</a>] Schneier, B., Applied Cryptography: Protocols,
Algorithms and Source Code in C (John Wiley and Sons,
October 1995).
[<a id="ref-Schneier00">Schneier00</a>] Schneier, B., Secrets and Lies: Digital Security in a
Networked World (John Wiley and Sons, August 2000).
[<a id="ref-SP2000">SP2000</a>] Stone, J. and C. Partridge, "When the CRC and TCP
Checksum Disagree", ACM SIGCOMM, September 2000.
<a href="http://www.acm.org/sigcomm/sigcomm2000/conf/paper/sigcomm2000-9-1.pdf">http://www.acm.org/sigcomm/sigcomm2000/conf/</a>
<a href="http://www.acm.org/sigcomm/sigcomm2000/conf/paper/sigcomm2000-9-1.pdf">paper/sigcomm2000-9-1.pdf</a>
<span class="grey">Karn, et al. Best Current Practice [Page 55]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-56" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
[<a id="ref-SRC81">SRC81</a>] Saltzer, J., Reed D. and D. Clark, "End-to-End
Arguments in System Design". Second International
Conference on Distributed Computing Systems (April,
1981) pages 509-512. Published with minor changes in
ACM Transactions in Computer Systems 2, 4, November,
1984, pages 277-288. Reprinted in Craig Partridge,
editor Innovations in internetworking. Artech House,
Norwood, MA, 1988, pages 195-206. ISBN 0-89006-337-0.
[<a id="ref-SSL2">SSL2</a>] Hickman, K., "The SSL Protocol", Netscape
Communications Corp., Feb 9, 1995.
[<a id="ref-SSL3">SSL3</a>] Frier, A., Karlton, P. and P. Kocher, "The SSL 3.0
Protocol", Netscape Communications Corp., Nov 18, 1996.
[<a id="ref-TCPF98">TCPF98</a>] Lin, D. and H.T. Kung, "TCP Fast Recovery Strategies:
Analysis and Improvements", IEEE Infocom, March 1998.
<a href="http://www.eecs.harvard.edu/networking/papers/infocom-tcp-final-198.pdf">http://www.eecs.harvard.edu/networking/papers/infocom-</a>
<a href="http://www.eecs.harvard.edu/networking/papers/infocom-tcp-final-198.pdf">tcp-final-198.pdf</a>
[<a id="ref-WFBA2000">WFBA2000</a>] Wagner, D., Foster, J., Brewer, E. and A. Aiken, "A
First Step Toward Automated Detection of Buffer Overrun
Vulnerabilities", Proceedings of NDSS2000.
<a href="http://www.isoc.org/isoc/conferences/ndss/2000/proceedings/039.pdf">http://www.isoc.org/isoc/conferences/ndss/</a>
<a href="http://www.isoc.org/isoc/conferences/ndss/2000/proceedings/039.pdf">2000/proceedings/039.pdf</a>
[<a id="ref-Wilbur89">Wilbur89</a>] Wilbur, Steve R., Jon Crowcroft, and Yuko Murayama.
"MAC layer Security Measures in Local Area Networks",
Local Area Network Security, Workshop LANSEC '89
Proceedings, Springer-Verlag, April 1989, pp. 53-64.
<span class="grey">Karn, et al. Best Current Practice [Page 56]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-57" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
<span class="h2"><a class="selflink" id="section-21" href="#section-21">21</a>. Contributors' Addresses</span>
Aaron Falk
USC/Information Sciences Institute
4676 Admiralty Way
Marina Del Rey, CA 90292
Phone: 310-448-9327
EMail: falk@isi.edu
Saverio Mascolo
Dipartimento di Elettrotecnica ed Elettronica,
Politecnico di Bari Via Orabona 4, 70125 Bari, Italy
Phone: +39 080 596 3621
EMail: mascolo@poliba.it
URL: <a href="http://www-dee.poliba.it/dee-web/Personale/mascolo.html">http://www-dee.poliba.it/dee-web/Personale/mascolo.html</a>
Marie-Jose Montpetit
MJMontpetit.com
EMail: marie@mjmontpetit.com
<span class="grey">Karn, et al. Best Current Practice [Page 57]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-58" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
<span class="h2"><a class="selflink" id="section-22" href="#section-22">22</a>. Authors' Addresses</span>
Phil Karn, Editor
Qualcomm 5775 Morehouse Drive
San Diego CA 92121
Phone: 858 587 1121
EMail: karn@qualcomm.com
Carsten Bormann
Universitaet Bremen TZI
Postfach 330440
D-28334 Bremen, Germany
Phone: +49 421 218 7024
Fax: +49 421 218 7000
EMail: cabo@tzi.org
Godred (Gorry) Fairhurst
Department of Engineering, University of Aberdeen,
Aberdeen, AB24 3UE, United Kingdom
EMail: gorry@erg.abdn.ac.uk
URL: <a href="http://www.erg.abdn.ac.uk/users/gorry">http://www.erg.abdn.ac.uk/users/gorry</a>
Dan Grossman
Motorola, Inc.
111 Locke Drive
Marlboro, MA 01752
EMail: Dan.Grossman@motorola.com
Reiner Ludwig
Ericsson Research
Ericsson Allee
1 52134 Herzogenrath, Germany
Phone: +49 2407 575 719
EMail: Reiner.Ludwig@ericsson.com
<span class="grey">Karn, et al. Best Current Practice [Page 58]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-59" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
Jamshid Mahdavi
Novell, Inc.
EMail: jmahdavi@earthlink.net
Gabriel Montenegro
Sun Microsystems Laboratories, Europe
180, Avenue de l'Europe
38334 Saint Ismier CEDEX
France
EMail: gab@sun.com
Joe Touch
USC/Information Sciences Institute
4676 Admiralty Way
Marina del Rey CA 90292
Phone: 310 448 9151
EMail: touch@isi.edu
URL: <a href="http://www.isi.edu/touch">http://www.isi.edu/touch</a>
Lloyd Wood
Cisco Systems
9 New Square Park, Bedfont Lakes
Feltham TW14 8HA
United Kingdom
Phone: +44 (0)20 8824 4236
EMail: lwood@cisco.com
URL: <a href="http://www.ee.surrey.ac.uk/Personal/L.Wood/">http://www.ee.surrey.ac.uk/Personal/L.Wood/</a>
<span class="grey">Karn, et al. Best Current Practice [Page 59]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-60" ></span>
<span class="grey"><a href="./rfc3819">RFC 3819</a> Advice for Internet Subnetwork Designers July 2004</span>
<span class="h2"><a class="selflink" id="section-23" href="#section-23">23</a>. Full Copyright Statement</span>
Copyright (C) The Internet Society (2004). This document is subject
to the rights, licenses and restrictions contained in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a>, and
except as set forth therein, the authors retain all their rights.
This document and the information contained herein are provided on an
"AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE
REPRESENTS OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY AND THE
INTERNET ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF
THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED
WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Intellectual Property
The IETF takes no position regarding the validity or scope of any
Intellectual Property Rights or other rights that might be claimed
to pertain to the implementation or use of the technology
described in this document or the extent to which any license
under such rights might or might not be available; nor does it
represent that it has made any independent effort to identify any
such rights. Information on the procedures with respect to
rights in RFC documents can be found in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and <a href="https://www.rfc-editor.org/bcp/bcp79">BCP 79</a>.
Copies of IPR disclosures made to the IETF Secretariat and any
assurances of licenses to be made available, or the result of an
attempt made to obtain a general license or permission for the use
of such proprietary rights by implementers or users of this
specification can be obtained from the IETF on-line IPR repository
at <a href="http://www.ietf.org/ipr">http://www.ietf.org/ipr</a>.
The IETF invites any interested party to bring to its attention
any copyrights, patents or patent applications, or other
proprietary rights that may cover technology that may be required
to implement this standard. Please address the information to the
IETF at ietf-ipr@ietf.org.
Acknowledgement
Funding for the RFC Editor function is currently provided by the
Internet Society.
Karn, et al. Best Current Practice [Page 60]
</pre>
|