1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813
|
<pre>Network Working Group J. Reynolds
Request for Comments: 1060 J. Postel
Obsoletes RFCs: <a href="./rfc1010">1010</a>, <a href="./rfc990">990</a>, <a href="./rfc960">960</a>, <a href="./rfc943">943</a>, <a href="./rfc923">923</a>, <a href="./rfc900">900</a>, <a href="./rfc870">870</a>, ISI
<a href="./rfc820">820</a>, <a href="./rfc790">790</a>, <a href="./rfc776">776</a>, <a href="./rfc770">770</a>, <a href="./rfc762">762</a>, <a href="./rfc758">758</a>,755, 750, 739, 604, March 1990
503, 433, 349
Obsoletes IENs: 127, 117, 93
<span class="h1">ASSIGNED NUMBERS</span>
STATUS OF THIS MEMO
This memo is a status report on the parameters (i.e., numbers and
keywords) used in protocols in the Internet community. Distribution
of this memo is unlimited.
Table of Contents
INTRODUCTION.................................................... <a href="#page-2">2</a>
Data Notations.................................................. <a href="#page-3">3</a>
Special Addresses............................................... <a href="#page-4">4</a>
VERSION NUMBERS................................................. <a href="#page-6">6</a>
PROTOCOL NUMBERS................................................ <a href="#page-7">7</a>
PORT NUMBERS.................................................... <a href="#page-9">9</a>
UNIX PORTS......................................................<a href="#page-13">13</a>
INTERNET MULTICAST ADDRESSES....................................<a href="#page-19">19</a>
IANA ETHERNET ADDRESS BLOCK.....................................<a href="#page-20">20</a>
IP TOS PARAMETERS...............................................<a href="#page-21">21</a>
IP TIME TO LIVE PARAMETER.......................................<a href="#page-23">23</a>
DOMAIN SYSTEM PARAMETERS........................................<a href="#page-24">24</a>
BOOTP PARAMETERS................................................<a href="#page-25">25</a>
NETWORK MANAGEMENT PARAMETERS...................................<a href="#page-26">26</a>
ARPANET AND MILNET LOGICAL ADDRESSES............................<a href="#page-30">30</a>
ARPANET AND MILNET LINK NUMBERS.................................<a href="#page-31">31</a>
ARPANET AND MILNET X. 25 ADDRESS MAPPINGS.......................<a href="#page-32">32</a>
IEEE 802 NUMBERS OF INTEREST....................................<a href="#page-34">34</a>
ETHERNET NUMBERS OF INTEREST....................................<a href="#page-35">35</a>
ETHERNET VENDOR ADDRESS COMPONENTS..............................<a href="#page-38">38</a>
ETHERNET MULTICAST ADDRESSES....................................<a href="#page-41">41</a>
XNS PROTOCOL TYPES..............................................<a href="#page-43">43</a>
PROTOCOL/TYPE FIELD ASSIGNMENTS.................................<a href="#page-44">44</a>
PRONET 80 TYPE NUMBERS..........................................<a href="#page-45">45</a>
ADDRESS RESOLUTION PROTOCOL PARAMETERS..........................<a href="#page-46">46</a>
REVERSE ADDRESS RESOLUTION PROTOCOL OPERATION CODES.............<a href="#page-47">47</a>
DYNAMIC REVERSE ARP.............................................<a href="#page-47">47</a>
<a href="#appendix-X.25">X.25</a> TYPE NUMBERS...............................................<a href="#page-48">48</a>
PUBLIC DATA NETWORK NUMBERS.....................................<a href="#page-49">49</a>
TELNET OPTIONS..................................................<a href="#page-51">51</a>
MAIL ENCRYPTION TYPES...........................................<a href="#page-52">52</a>
<span class="grey">Reynolds & Postel [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
MACHINE NAMES...................................................<a href="#page-53">53</a>
SYSTEM NAMES....................................................<a href="#page-57">57</a>
PROTOCOL AND SERVICE NAMES......................................<a href="#page-58">58</a>
TERMINAL TYPE NAMES.............................................<a href="#page-62">62</a>
DOCUMENTS.......................................................<a href="#page-65">65</a>
PEOPLE..........................................................<a href="#page-76">76</a>
Security Considerations.........................................<a href="#page-86">86</a>
Authors' Addresses..............................................<a href="#page-86">86</a>
INTRODUCTION
This Network Working Group Request for Comments documents the
currently assigned values from several series of numbers used in
network protocol implementations. This RFC will be updated
periodically, and in any case current information can be obtained from
the Internet Assigned Numbers Authority (IANA). If you are developing
a protocol or application that will require the use of a link, socket,
port, protocol, etc., please contact the IANA to receive a number
assignment.
Joyce K. Reynolds
Internet Assigned Numbers Authority
USC - Information Sciences Institute
4676 Admiralty Way
Marina del Rey, California 90292-6695
Phone: (213) 822-1511
Electronic mail: JKREY@ISI.EDU
Most of the protocols mentioned here are documented in the RFC series
of notes. Some of the items listed are undocumented. Further
information on protocols can be found in the memo "Official Internet
Protocols" [<a href="#ref-118" title=""Official Internet Protocols"">118</a>]. The more prominent and more generally used are
documented in the "DDN Protocol Handbook, Volume Two, DARPA Internet
Protocols" [<a href="#ref-45" title=""DDN Protocol Handbook"">45</a>] prepared by the NIC. Other collections of older or
obsolete protocols are contained in the "Internet Protocol Transition
Workbook" [<a href="#ref-76" title=""Logical Addressing Implementation Specification"">76</a>], or in the "ARPANET Protocol Transition Handbook"
[<a href="#ref-47" title=""ARPANET Protocol Handbook"">47</a>]. For further information on ordering the complete 1985 DDN
Protocol Handbook, write: SRI International (SRI-NIC), DDN Network
Information Center, Room EJ291, 333 Ravenswood Avenue, Menlo Park,
CA., 94025; or call: 1-800-235-3155. Also, the Internet Activities
Board (IAB) publishes the "IAB Official Protocol Standards" [<a href="#ref-62" title=""IAB Official Protocol Standards"">62</a>],
which describes the state of standardization of protocols used in the
Internet. This document is issued quarterly. Current copies may be
obtained from the DDN Network Information Center or from the IANA.
In the entries below, the name and mailbox of the responsible
<span class="grey">Reynolds & Postel [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
individual is indicated. The bracketed entry, e.g., [nn,iii], at the
right hand margin of the page indicates a reference for the listed
protocol, where the number ("nn") cites the document and the letters
("iii") cites the person. Whenever possible, the letters are a NIC
Ident as used in the WhoIs (NICNAME) service.
Data Notations
The convention in the documentation of Internet Protocols is to
express numbers in decimal and to picture data in "big-endian" order
[<a href="#ref-21" title=""On Holy Wars and a Plea for Peace"">21</a>]. That is, fields are described left to right, with the most
significant octet on the left and the least significant octet on the
right.
The order of transmission of the header and data described in this
document is resolved to the octet level. Whenever a diagram shows a
group of octets, the order of transmission of those octets is the
normal order in which they are read in English. For example, in the
following diagram the octets are transmitted in the order they are
numbered.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| 1 | 2 | 3 | 4 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| 5 | 6 | 7 | 8 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| 9 | 10 | 11 | 12 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Transmission Order of Bytes
Whenever an octet represents a numeric quantity the left most bit in
the diagram is the high order or most significant bit. That is, the
bit labeled 0 is the most significant bit. For example, the
following diagram represents the value 170 (decimal).
0 1 2 3 4 5 6 7
+-+-+-+-+-+-+-+-+
|1 0 1 0 1 0 1 0|
+-+-+-+-+-+-+-+-+
Significance of Bits
Similarly, whenever a multi-octet field represents a numeric quantity
<span class="grey">Reynolds & Postel [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
the left most bit of the whole field is the most significant bit.
When a multi-octet quantity is transmitted the most significant octet
is transmitted first.
Special Addresses:
There are five classes of IP addresses: Class A through Class E
[<a href="#ref-119" title=""Internet Numbers"">119</a>]. Of these, Class D and Class E addresses are reserved for
experimental use. A gateway which is not participating in these
experiments must ignore all datagrams with a Class D or Class E
destination IP address. ICMP Destination Unreachable or ICMP
Redirect messages must not result from receiving such datagrams.
There are certain special cases for IP addresses [<a href="#ref-11" title=""Requirements for Internet Gateways"">11</a>]. These special
cases can be concisely summarized using the earlier notation for an
IP address:
IP-address ::= { <Network-number>, <Host-number> }
or
IP-address ::= { <Network-number>, <Subnet-number>,
<Host-number> }
if we also use the notation "-1" to mean the field contains all 1
bits. Some common special cases are as follows:
(a) {0, 0}
This host on this network. Can only be used as a source
address (see note later).
(b) {0, <Host-number>}
Specified host on this network. Can only be used as a
source address.
(c) { -1, -1}
Limited broadcast. Can only be used as a destination
address, and a datagram with this address must never be
forwarded outside the (sub-)net of the source.
(d) {<Network-number>, -1}
Directed broadcast to specified network. Can only be used
as a destination address.
<span class="grey">Reynolds & Postel [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
(e) {<Network-number>, <Subnet-number>, -1}
Directed broadcast to specified subnet. Can only be used as
a destination address.
(f) {<Network-number>, -1, -1}
Directed broadcast to all subnets of specified subnetted
network. Can only be used as a destination address.
(g) {127, <any>}
Internal host loopback address. Should never appear outside
a host.
<span class="grey">Reynolds & Postel [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
VERSION NUMBERS
In the Internet Protocol (IP) [<a href="#ref-45" title=""DDN Protocol Handbook"">45</a>,<a href="#ref-105" title=""Internet Protocol - DARPA Internet Program Protocol Specification"">105</a>] there is a field to identify
the version of the internetwork general protocol. This field is 4
bits in size.
Assigned Internet Version Numbers
Decimal Keyword Version References
------- ------- ------- ----------
0 Reserved [<a href="#ref-JBP">JBP</a>]
1-3 Unassigned [<a href="#ref-JBP">JBP</a>]
4 IP Internet Protocol [<a href="#ref-105" title=""Internet Protocol - DARPA Internet Program Protocol Specification"">105</a>,<a href="#ref-JBP">JBP</a>]
5 ST ST Datagram Mode [<a href="#ref-49" title=""ST - A Proposed Internet Stream Protocol"">49</a>,<a href="#ref-JWF">JWF</a>]
6-14 Unassigned [<a href="#ref-JBP">JBP</a>]
15 Reserved [<a href="#ref-JBP">JBP</a>]
<span class="grey">Reynolds & Postel [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
PROTOCOL NUMBERS
In the Internet Protocol (IP) [<a href="#ref-45" title=""DDN Protocol Handbook"">45</a>,<a href="#ref-105" title=""Internet Protocol - DARPA Internet Program Protocol Specification"">105</a>] there is a field, called
Protocol, to identify the the next level protocol. This is an 8 bit
field.
Assigned Internet Protocol Numbers
Decimal Keyword Protocol References
------- ------- -------- ----------
0 Reserved [<a href="#ref-JBP">JBP</a>]
1 ICMP Internet Control Message [<a href="#ref-97" title=""Internet Control Message Protocol - DARPA Internet Program Protocol Specification"">97</a>,<a href="#ref-JBP">JBP</a>]
2 IGMP Internet Group Management [<a href="#ref-43" title=""Host Extensions for IP Multicasting"">43</a>,<a href="#ref-JBP">JBP</a>]
3 GGP Gateway-to-Gateway [<a href="#ref-60" title=""The DARPA Internet Gateway"">60</a>,<a href="#ref-MB">MB</a>]
4 Unassigned [<a href="#ref-JBP">JBP</a>]
5 ST Stream [<a href="#ref-49" title=""ST - A Proposed Internet Stream Protocol"">49</a>,<a href="#ref-JWF">JWF</a>]
6 TCP Transmission Control [<a href="#ref-106" title=""Transmission Control Protocol - DARPA Internet Program Protocol Specification"">106</a>,<a href="#ref-JBP">JBP</a>]
7 UCL UCL [<a href="#ref-PK">PK</a>]
8 EGP Exterior Gateway Protocol [<a href="#ref-123" title=""STUB"">123</a>,<a href="#ref-DLM1">DLM1</a>]
9 IGP any private interior gateway [<a href="#ref-JBP">JBP</a>]
10 BBN-RCC-MON BBN RCC Monitoring [<a href="#ref-SGC">SGC</a>]
11 NVP-II Network Voice Protocol [<a href="#ref-22" title=""Specifications for the Network Voice Protocol"">22</a>,<a href="#ref-SC3">SC3</a>]
12 PUP PUP [<a href="#ref-8" title=""PUP: An Internetwork Architecture"">8</a>,<a href="#ref-XEROX">XEROX</a>]
13 ARGUS ARGUS [<a href="#ref-RWS4">RWS4</a>]
14 EMCON EMCON [BN7]
15 XNET Cross Net Debugger [<a href="#ref-56" title=""XNET Formats for Internet Protocol Version 4"">56</a>,<a href="#ref-JFH2">JFH2</a>]
16 CHAOS Chaos [<a href="#ref-NC3">NC3</a>]
17 UDP User Datagram [<a href="#ref-104" title=""User Datagram Protocol"">104</a>,<a href="#ref-JBP">JBP</a>]
18 MUX Multiplexing [<a href="#ref-23" title=""Multiplexing Protocol"">23</a>,<a href="#ref-JBP">JBP</a>]
19 DCN-MEAS DCN Measurement Subsystems [<a href="#ref-DLM1">DLM1</a>]
20 HMP Host Monitoring [<a href="#ref-59" title=""A Host Monitoring Protocol"">59</a>,<a href="#ref-RH6">RH6</a>]
21 PRM Packet Radio Measurement [<a href="#ref-ZSU">ZSU</a>]
22 XNS-IDP XEROX NS IDP [<a href="#ref-133" title=""The Ethernet, A Local Area Network: Data Link Layer and Physical Layer Specification"">133</a>,<a href="#ref-XEROX">XEROX</a>]
23 TRUNK-1 Trunk-1 [<a href="#ref-BWB6">BWB6</a>]
24 TRUNK-2 Trunk-2 [<a href="#ref-BWB6">BWB6</a>]
25 LEAF-1 Leaf-1 [<a href="#ref-BWB6">BWB6</a>]
26 LEAF-2 Leaf-2 [<a href="#ref-BWB6">BWB6</a>]
27 RDP Reliable Data Protocol [<a href="#ref-138" title=""Reliable Data Protocol"">138</a>,<a href="#ref-RH6">RH6</a>]
28 IRTP Internet Reliable Transaction [<a href="#ref-79" title=""Internet Reliable Transaction Protocol"">79</a>,<a href="#ref-TXM">TXM</a>]
29 ISO-TP4 ISO Transport Protocol Class 4 [<a href="#ref-63" title=""ISO Transport Protocol Specification - ISO DP 8073"">63</a>,RC77]
30 NETBLT Bulk Data Transfer Protocol [<a href="#ref-20" title=""NETBLT: A Bulk Data Transfer Protocol"">20</a>,<a href="#ref-DDC1">DDC1</a>]
31 MFE-NSP MFE Network Services Protocol [<a href="#ref-124" title=""A Documentary of MFENet, a National Computer Network"">124</a>,<a href="#ref-BCH2">BCH2</a>]
32 MERIT-INP MERIT Internodal Protocol [<a href="#ref-HWB">HWB</a>]
33 SEP Sequential Exchange Protocol [JC120]
34 3PC Third Party Connect Protocol [<a href="#ref-SAF3">SAF3</a>]
35-60 Unassigned [<a href="#ref-JBP">JBP</a>]
61 any host internal protocol [<a href="#ref-JBP">JBP</a>]
62 CFTP CFTP [<a href="#ref-50" title=""CFTP"">50</a>,<a href="#ref-HCF2">HCF2</a>]
<span class="grey">Reynolds & Postel [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
63 any local network [<a href="#ref-JBP">JBP</a>]
64 SAT-EXPAK SATNET and Backroom EXPAK [<a href="#ref-SHB">SHB</a>]
65 Unassigned [<a href="#ref-JBP">JBP</a>]
66 RVD MIT Remote Virtual Disk Protocol [<a href="#ref-MBG">MBG</a>]
67 IPPC Internet Pluribus Packet Core [<a href="#ref-SHB">SHB</a>]
68 any distributed file system [<a href="#ref-JBP">JBP</a>]
69 SAT-MON SATNET Monitoring [<a href="#ref-SHB">SHB</a>]
70 VISA VISA Protocol [<a href="#ref-GXT1">GXT1</a>]
71 IPCV Internet Packet Core Utility [<a href="#ref-SHB">SHB</a>]
72-75 Unassigned [<a href="#ref-JBP">JBP</a>]
76 BR-SAT-MON Backroom SATNET Monitoring [<a href="#ref-SHB">SHB</a>]
77 SUN-ND SUN ND PROTOCOL-Temporary [<a href="#ref-WM3">WM3</a>]
78 WB-MON WIDEBAND Monitoring [<a href="#ref-SHB">SHB</a>]
79 WB-EXPAK WIDEBAND EXPAK [<a href="#ref-SHB">SHB</a>]
80 ISO-IP ISO Internet Protocol [MTR]
81 VMTP VMTP [<a href="#ref-DRC3">DRC3</a>]
82 SECURE-VMTP SECURE-VMTP [<a href="#ref-DRC3">DRC3</a>]
83 VINES VINES [<a href="#ref-BXH">BXH</a>]
84 TTP TTP [<a href="#ref-JXS">JXS</a>]
85 NSFNET-IGP NSFNET-IGP [<a href="#ref-HWB">HWB</a>]
86 DGP Dissimilar Gateway Protocol [<a href="#ref-74" title=""Dissimilar Gateway Protocol Specification, Draft Version"">74</a>,<a href="#ref-ML109">ML109</a>]
87 TCF TCF [<a href="#ref-GAL5">GAL5</a>]
88 IGRP IGRP [<a href="#ref-18" title=""Gateway Server Reference Manual"">18</a>,<a href="#ref-GXS">GXS</a>]
89 OSPFIGP OSPFIGP [<a href="#ref-83" title=""The OSPF Specification"">83</a>,<a href="#ref-JTM4">JTM4</a>]
90 Sprite-RPC Sprite RPC Protocol [<a href="#ref-143" title=""The Sprite Remote Procedure Call System"">143</a>,<a href="#ref-BXW">BXW</a>]
91 LARP Locus Address Resolution Protocol [<a href="#ref-BXH">BXH</a>]
92-254 Unassigned [<a href="#ref-JBP">JBP</a>]
255 Reserved [<a href="#ref-JBP">JBP</a>]
<span class="grey">Reynolds & Postel [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
PORT NUMBERS
Ports are used in the TCP [<a href="#ref-45" title=""DDN Protocol Handbook"">45</a>,<a href="#ref-106" title=""Transmission Control Protocol - DARPA Internet Program Protocol Specification"">106</a>] to name the ends of logical
connections which carry long term conversations. For the purpose of
providing services to unknown callers, a service contact port is
defined. This list specifies the port used by the server process as its
contact port. The contact port is sometimes called the "well-known
port".
To the extent possible, these same port assignments are used with the
UDP [<a href="#ref-46" title=""Internet Protocol Transition Workbook"">46</a>,<a href="#ref-104" title=""User Datagram Protocol"">104</a>].
To the extent possible, these same port assignments are used with the
ISO-TP4 [<a href="#ref-64" title=""Protocol for Providing the Connectionless-Mode Network Services"">64</a>].
The assigned ports use a small portion of the possible port numbers.
The assigned ports have all except the low order eight bits cleared to
zero. The low order eight bits are specified here.
Port Assignments:
Decimal Keyword Description References
------- ------- ----------- ----------
0 Reserved [<a href="#ref-JBP">JBP</a>]
1 TCPMUX TCP Port Service Multiplexer [<a href="#ref-MKL">MKL</a>]
2-4 Unassigned [<a href="#ref-JBP">JBP</a>]
5 RJE Remote Job Entry [<a href="#ref-12" title=""Remote Job Entry Protocol"">12</a>,<a href="#ref-JBP">JBP</a>]
7 ECHO Echo [<a href="#ref-95" title=""Echo Protocol"">95</a>,<a href="#ref-JBP">JBP</a>]
9 DISCARD Discard [<a href="#ref-94" title=""Discard Protocol"">94</a>,<a href="#ref-JBP">JBP</a>]
11 USERS Active Users [<a href="#ref-89" title=""Active Users"">89</a>,<a href="#ref-JBP">JBP</a>]
13 DAYTIME Daytime [<a href="#ref-93" title=""Daytime Protocol"">93</a>,<a href="#ref-JBP">JBP</a>]
15 Unassigned [<a href="#ref-JBP">JBP</a>]
17 QUOTE Quote of the Day [<a href="#ref-100" title=""Quote of the Day Protocol"">100</a>,<a href="#ref-JBP">JBP</a>]
19 CHARGEN Character Generator [<a href="#ref-92" title=""Character Generator Protocol"">92</a>,<a href="#ref-JBP">JBP</a>]
20 FTP-DATA File Transfer [Default Data] [<a href="#ref-96" title=""File Transfer Protocol"">96</a>,<a href="#ref-JBP">JBP</a>]
21 FTP File Transfer [Control] [<a href="#ref-96" title=""File Transfer Protocol"">96</a>,<a href="#ref-JBP">JBP</a>]
23 TELNET Telnet [<a href="#ref-112" title=""Telnet Protocol Specification"">112</a>,<a href="#ref-JBP">JBP</a>]
25 SMTP Simple Mail Transfer [<a href="#ref-102" title=""Simple Mail Transfer Protocol"">102</a>,<a href="#ref-JBP">JBP</a>]
27 NSW-FE NSW User System FE [<a href="#ref-24" title=""Semi-Annual Technical Report"">24</a>,<a href="#ref-RHT">RHT</a>]
29 MSG-ICP MSG ICP [<a href="#ref-85" title=""MSG: The Interprocess Communication Facility for the National Software Works"">85</a>,<a href="#ref-RHT">RHT</a>]
31 MSG-AUTH MSG Authentication [<a href="#ref-85" title=""MSG: The Interprocess Communication Facility for the National Software Works"">85</a>,<a href="#ref-RHT">RHT</a>]
33 DSP Display Support Protocol [<a href="#ref-EXC">EXC</a>]
35 any private printer server [<a href="#ref-JBP">JBP</a>]
37 TIME Time [<a href="#ref-108" title=""Time Protocol"">108</a>,<a href="#ref-JBP">JBP</a>]
39 RLP Resource Location Protocol [<a href="#ref-MA">MA</a>]
41 GRAPHICS Graphics [<a href="#ref-129" title=""A Networks Graphics Protocol"">129</a>,<a href="#ref-JBP">JBP</a>]
42 NAMESERVER Host Name Server [<a href="#ref-99" title=""Name Server"">99</a>,<a href="#ref-JBP">JBP</a>]
43 NICNAME Who Is [<a href="#ref-55" title=""Nicname/Whois"">55</a>,<a href="#ref-MARY">MARY</a>]
<span class="grey">Reynolds & Postel [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
44 MPM-FLAGS MPM FLAGS Protocol [<a href="#ref-JBP">JBP</a>]
45 MPM Message Processing Module [recv] [<a href="#ref-98" title=""Internet Message Protocol"">98</a>,<a href="#ref-JBP">JBP</a>]
46 MPM-SND MPM [default send] [<a href="#ref-98" title=""Internet Message Protocol"">98</a>,<a href="#ref-JBP">JBP</a>]
47 NI-FTP NI FTP [<a href="#ref-134" title=""A Network Independent File Transfer Protocol"">134</a>,SK8]
49 LOGIN Login Host Protocol [<a href="#ref-PHD1">PHD1</a>]
51 LA-MAINT IMP Logical Address Maintenance [<a href="#ref-76" title=""Logical Addressing Implementation Specification"">76</a>,<a href="#ref-AGM">AGM</a>]
53 DOMAIN Domain Name Server [<a href="#ref-81" title=""Domain Names - Concepts and Facilities"">81</a>,<a href="#ref-95" title=""Echo Protocol"">95</a>,<a href="#ref-PM1">PM1</a>]
55 ISI-GL ISI Graphics Language [<a href="#ref-7" title=""Graphics Language (version 2.1)"">7</a>,RB9]
57 any private terminal access [<a href="#ref-JBP">JBP</a>]
59 any private file service [<a href="#ref-JBP">JBP</a>]
61 NI-MAIL NI MAIL [<a href="#ref-5" title=""A Simple NIFTP-Based Mail System"">5</a>,SK8]
63 VIA-FTP VIA Systems - FTP [<a href="#ref-DXD">DXD</a>]
65 TACACS-DS TACACS-Database Service [<a href="#ref-3" title=""User Manual for TAC User Database Tool"">3</a>,<a href="#ref-KH43">KH43</a>]
67 BOOTPS Bootstrap Protocol Server [<a href="#ref-36" title=""BOOTSTRAP Protocol (BOOTP)"">36</a>,<a href="#ref-WJC2">WJC2</a>]
68 BOOTPC Bootstrap Protocol Client [<a href="#ref-36" title=""BOOTSTRAP Protocol (BOOTP)"">36</a>,<a href="#ref-WJC2">WJC2</a>]
69 TFTP Trivial File Transfer [<a href="#ref-126" title=""The TFTP Protocol (Revision 2)"">126</a>,<a href="#ref-DDC1">DDC1</a>]
71 NETRJS-1 Remote Job Service [<a href="#ref-10" title=""NETRJS Protocol"">10</a>,<a href="#ref-RTB3">RTB3</a>]
72 NETRJS-2 Remote Job Service [<a href="#ref-10" title=""NETRJS Protocol"">10</a>,<a href="#ref-RTB3">RTB3</a>]
73 NETRJS-3 Remote Job Service [<a href="#ref-10" title=""NETRJS Protocol"">10</a>,<a href="#ref-RTB3">RTB3</a>]
74 NETRJS-4 Remote Job Service [<a href="#ref-10" title=""NETRJS Protocol"">10</a>,<a href="#ref-RTB3">RTB3</a>]
75 any private dial out service [<a href="#ref-JBP">JBP</a>]
77 any private RJE service [<a href="#ref-JBP">JBP</a>]
79 FINGER Finger [<a href="#ref-52" title=""Name/Finger"">52</a>,<a href="#ref-KLH">KLH</a>]
81 HOSTS2-NS HOSTS2 Name Server [EAK1]
83 MIT-ML-DEV MIT ML Device [<a href="#ref-DPR">DPR</a>]
85 MIT-ML-DEV MIT ML Device [<a href="#ref-DPR">DPR</a>]
87 any private terminal link [<a href="#ref-JBP">JBP</a>]
89 SU-MIT-TG SU/MIT Telnet Gateway [<a href="#ref-MRC">MRC</a>]
91 MIT-DOV MIT Dover Spooler [<a href="#ref-EBM">EBM</a>]
93 DCP Device Control Protocol [<a href="#ref-DT15">DT15</a>]
95 SUPDUP SUPDUP [<a href="#ref-27" title=""SUPDUP Protocol"">27</a>,<a href="#ref-MRC">MRC</a>]
97 SWIFT-RVF Swift Remote Vitural File Protocol [MXR]
98 TACNEWS TAC News [<a href="#ref-ANM2">ANM2</a>]
99 METAGRAM Metagram Relay [<a href="#ref-GEOF">GEOF</a>]
101 HOSTNAME NIC Host Name Server [<a href="#ref-54" title=""Hostnames Server"">54</a>,<a href="#ref-MARY">MARY</a>]
102 ISO-TSAP ISO-TSAP [<a href="#ref-16" title=""ISO Transport Services on Top of the TCP"">16</a>,MTR]
103 X400 X400 [<a href="#ref-HCF2">HCF2</a>]
104 X400-SND X400-SND [<a href="#ref-HCF2">HCF2</a>]
105 CSNET-NS Mailbox Name Nameserver [<a href="#ref-127" title=""The CSNET Name Server"">127</a>,<a href="#ref-MS56">MS56</a>]
107 RTELNET Remote Telnet Service [<a href="#ref-101" title=""Remote Telnet Service"">101</a>,<a href="#ref-JBP">JBP</a>]
109 POP2 Post Office Protocol - Version 2 [<a href="#ref-14" title="J. Goldberger">14</a>,<a href="#ref-JKR1">JKR1</a>]
110 POP3 Post Office Protocol - Version 3 [<a href="#ref-122" title=""Post Office Protocol - Version 3"">122</a>,MTR]
111 SUNRPC SUN Remote Procedure Call [<a href="#ref-DXG">DXG</a>]
113 AUTH Authentication Service [<a href="#ref-130" title=""Authentication Service"">130</a>,<a href="#ref-MCSJ">MCSJ</a>]
115 SFTP Simple File Transfer Protocol [<a href="#ref-73" title=""Simple File Transfer Protocol"">73</a>,MKL1]
117 UUCP-PATH UUCP Path Service [<a href="#ref-44" title=""Network Mail Path Service"">44</a>,MAE]
119 NNTP Network News Transfer Protocol [<a href="#ref-65" title=""Network News Transfer Protocol"">65</a>,<a href="#ref-PL4">PL4</a>]
121 ERPC Encore Expedited Remote Proc. Call [<a href="#ref-132" title=""ERPC Functional Specification"">132</a>,<a href="#ref-JXO">JXO</a>]
<span class="grey">Reynolds & Postel [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
123 NTP Network Time Protocol [<a href="#ref-80" title=""Network Time Protocol (Version 1), Specification and Implementation"">80</a>,<a href="#ref-DLM1">DLM1</a>]
125 LOCUS-MAP Locus PC-Interface Net Map Server [<a href="#ref-137" title=""Transparent Integration of UNIX and MS-DOS"">137</a>,<a href="#ref-EP53">EP53</a>]
127 LOCUS-CON Locus PC-Interface Conn Server [<a href="#ref-137" title=""Transparent Integration of UNIX and MS-DOS"">137</a>,<a href="#ref-EP53">EP53</a>]
129 PWDGEN Password Generator Protocol [<a href="#ref-141" title=""Password Generator Protocol"">141</a>,<a href="#ref-FJW">FJW</a>]
130 CISCO-FNA CISCO FNATIVE [WXB]
131 CISCO-TNA CISCO TNATIVE [WXB]
132 CISCO-SYS CISCO SYSMAINT [WXB]
133 STATSRV Statistics Service [<a href="#ref-DLM1">DLM1</a>]
134 INGRES-NET INGRES-NET Service [<a href="#ref-MXB">MXB</a>]
135 LOC-SRV Location Service [<a href="#ref-JXP">JXP</a>]
136 PROFILE PROFILE Naming System [<a href="#ref-LLP">LLP</a>]
137 NETBIOS-NS NETBIOS Name Service [<a href="#ref-JBP">JBP</a>]
138 NETBIOS-DGM NETBIOS Datagram Service [<a href="#ref-JBP">JBP</a>]
139 NETBIOS-SSN NETBIOS Session Service [<a href="#ref-JBP">JBP</a>]
140 EMFIS-DATA EMFIS Data Service [<a href="#ref-GB7">GB7</a>]
141 EMFIS-CNTL EMFIS Control Service [<a href="#ref-GB7">GB7</a>]
142 BL-IDM Britton-Lee IDM [<a href="#ref-SXS1">SXS1</a>]
143 IMAP2 Interim Mail Access Protocol v2 [<a href="#ref-MRC">MRC</a>]
144 NEWS NewS [<a href="#ref-JAG">JAG</a>]
145 UAAC UAAC Protocol [<a href="#ref-DAG4">DAG4</a>]
146 ISO-TP0 ISO-IP0 [<a href="#ref-86" title=""ISO-TP0 bridge between TCP and X.25"">86</a>,MTR]
147 ISO-IP ISO-IP [MTR]
148 CRONUS CRONUS-SUPPORT [<a href="#ref-135" title=""The Interhost Protocol to Support CRONUS/DIAMOND Interprocess Communication"">135</a>,<a href="#ref-JXB">JXB</a>]
149 AED-512 AED 512 Emulation Service [<a href="#ref-AXB">AXB</a>]
150 SQL-NET SQL-NET [<a href="#ref-MXP">MXP</a>]
151 HEMS HEMS [<a href="#ref-87" title="C. and G. Trewitt">87</a>,<a href="#ref-CXT">CXT</a>]
152 BFTP Background File Transfer Program [<a href="#ref-AD14">AD14</a>]
153 SGMP SGMP [<a href="#ref-37" title=""A Simple Gateway Monitoring Protocol"">37</a>,<a href="#ref-MS9">MS9</a>]
154 NETSC-PROD NETSC [<a href="#ref-SH37">SH37</a>]
155 NETSC-DEV NETSC [<a href="#ref-SH37">SH37</a>]
156 SQLSRV SQL Service [<a href="#ref-CMR">CMR</a>]
157 KNET-CMP KNET/VM Command/Message Protocol [<a href="#ref-77" title=""KNET/VM Command Message Protocol Functional Overview"">77</a>,<a href="#ref-GSM11">GSM11</a>]
158 PCMail-SRV PCMail Server [<a href="#ref-19" title=""PCMAIL: A Distributed Mail System for Personal Computers"">19</a>,<a href="#ref-MXL">MXL</a>]
159 NSS-Routing NSS-Routing [<a href="#ref-JXR">JXR</a>]
160 SGMP-TRAPS SGMP-TRAPS [<a href="#ref-37" title=""A Simple Gateway Monitoring Protocol"">37</a>,<a href="#ref-MS9">MS9</a>]
161 SNMP SNMP [<a href="#ref-15" title=""A Simple Network Management Protocol"">15</a>,MTR]
162 SNMPTRAP SNMPTRAP [<a href="#ref-15" title=""A Simple Network Management Protocol"">15</a>,MTR]
163 CMIP-Manage CMIP/TCP Manager [<a href="#ref-4" title=""Network Management for TCP/IP Network: An Overview"">4</a>,<a href="#ref-AXB1">AXB1</a>]
164 CMIP-Agent CMIP/TCP Agent [<a href="#ref-4" title=""Network Management for TCP/IP Network: An Overview"">4</a>,<a href="#ref-AXB1">AXB1</a>]
165 XNS-Courier Xerox [<a href="#ref-144" title=""Courier: The Remote Procedure Protocol"">144</a>,<a href="#ref-SXA">SXA</a>]
166 S-Net Sirius Systems [<a href="#ref-BXL">BXL</a>]
167 NAMP NAMP [<a href="#ref-MS9">MS9</a>]
168 RSVD RSVD [<a href="#ref-NT12">NT12</a>]
169 SEND SEND [<a href="#ref-WDW11">WDW11</a>]
170 Print-SRV Network PostScript [<a href="#ref-BKR">BKR</a>]
171 Multiplex Network Innovations Multiplex [<a href="#ref-KXD">KXD</a>]
172 CL/1 Network Innovations CL/1 [<a href="#ref-KXD">KXD</a>]
173 Xyplex-MUX Xyplex [BXS]
<span class="grey">Reynolds & Postel [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
174 MAILQ MAILQ [<a href="#ref-RXZ">RXZ</a>]
175 VMNET VMNET [<a href="#ref-CXT">CXT</a>]
176 GENRAD-MUX GENRAD-MUX [<a href="#ref-RXT">RXT</a>]
177 XDMCP X Display Manager Control Protocol [<a href="#ref-RWS4">RWS4</a>]
178 NextStep NextStep Window Server [<a href="#ref-LXH">LXH</a>]
179 BGP Border Gateway Protocol [<a href="#ref-KSL">KSL</a>]
180 RIS Intergraph [<a href="#ref-DXB">DXB</a>]
181 Unify Unify [<a href="#ref-VXS">VXS</a>]
182 Unisys-Cam Unisys-Cam [<a href="#ref-GXG">GXG</a>]
183 OCBinder OCBinder [<a href="#ref-JXO1">JXO1</a>]
184 OCServer OCServer [<a href="#ref-JXO1">JXO1</a>]
185 Remote-KIS Remote-KIS [<a href="#ref-RXD1">RXD1</a>]
186 KIS KIS Protocol [<a href="#ref-RXD1">RXD1</a>]
187 ACI Application Communication Interface [<a href="#ref-RXC1">RXC1</a>]
188 MUMPS MUMPS [<a href="#ref-HS23">HS23</a>]
189 QFT Queued File Transport [<a href="#ref-WXS">WXS</a>]
190 GACP Gateway Access Control Protocol [<a href="#ref-PCW">PCW</a>]
191 Prospero Prospero [<a href="#ref-BCN">BCN</a>]
192 OSU-NMS OSU Network Monitoring System [<a href="#ref-DXK">DXK</a>]
193 SRMP Spider Remote Monitoring Protocol [<a href="#ref-TXS">TXS</a>]
194 IRC Internet Relay Chat Protocol [<a href="#ref-JXO2">JXO2</a>]
195 DN6-NLM-AUD DNSIX Network Level Module Audit [<a href="#ref-LL69">LL69</a>]
196 DN6-SMM-RED DNSIX Session Mgt Module Audit Redirect[LL69]
197 DLS Directory Location Service [<a href="#ref-SXB">SXB</a>]
198 DLS-Mon Directory Location Service Monitor [<a href="#ref-SXB">SXB</a>]
198-200 Unassigned [<a href="#ref-JBP">JBP</a>]
201 AT-RMTP AppleTalk Routing Maintenance [<a href="#ref-RXC">RXC</a>]
202 AT-NBP AppleTalk Name Binding [<a href="#ref-RXC">RXC</a>]
203 AT-3 AppleTalk Unused [<a href="#ref-RXC">RXC</a>]
204 AT-ECHO AppleTalk Echo [<a href="#ref-RXC">RXC</a>]
205 AT-5 AppleTalk Unused [<a href="#ref-RXC">RXC</a>]
206 AT-ZIS AppleTalk Zone Information [<a href="#ref-RXC">RXC</a>]
207 AT-7 AppleTalk Unused [<a href="#ref-RXC">RXC</a>]
208 AT-8 AppleTalk Unused [<a href="#ref-RXC">RXC</a>]
209-223 Unassigned [<a href="#ref-JBP">JBP</a>]
224-241 Reserved [<a href="#ref-JBP">JBP</a>]
243 SUR-MEAS Survey Measurement [<a href="#ref-6" title=""A Report on the Survey Project"">6</a>,<a href="#ref-DDC1">DDC1</a>]
245 LINK LINK [<a href="#ref-1" title=""TACACS User Identification Telnet Option"">1</a>,RDB2]
246 DSP3270 Display Systems Protocol [<a href="#ref-39" title=""3270 Display System Protocol"">39</a>,<a href="#ref-WJS1">WJS1</a>]
247-255 Reserved [<a href="#ref-JBP">JBP</a>]
<span class="grey">Reynolds & Postel [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
UNIX PORTS
By convention, ports in the range 256 to 1024 are used for "Unix
Standard" services. Listed here are some of the normal uses of these
port numbers.
Service Name Port/Protocol Description
------------ ------------- -----------
echo 7/tcp
discard 9/tcp sink null
systat 11/tcp users
daytime 13/tcp
netstat 15/tcp
qotd 17/tcp quote
chargen 19/tcp ttytst source
ftp-data 20/tcp
ftp 21/tcp
telnet 23/tcp
smtp 25/tcp mail
time 37/tcp timserver
name 42/tcp nameserver
whois 43/tcp nicname
nameserver 53/tcp domain
apts 57/tcp any private terminal service
apfs 59/tcp any private file service
rje 77/tcp netrjs
finger 79/tcp
link 87/tcp ttylink
supdup 95/tcp
newacct 100/tcp [unauthorized use]
hostnames 101/tcp hostname
iso-tsap 102/tcp tsap
x400 103/tcp
x400-snd 104/tcp
csnet-ns 105/tcp CSNET Name Service
pop-2 109/tcp pop postoffice
sunrpc 111/tcp
auth 113/tcp authentication
sftp 115/tcp
uucp-path 117/tcp
nntp 119/tcp usenet readnews untp
ntp 123/tcp network time protocol
statsrv 133/tcp
profile 136/tcp
NeWS 144/tcp news
print-srv 170/tcp
exec 512/tcp remote process execution;
<span class="grey">Reynolds & Postel [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
authentication performed using
passwords and UNIX loppgin names
login 513/tcp remote login a la telnet;
automatic authentication performed
based on priviledged port numbers
and distributed data bases which
identify "authentication domains"
cmd 514/tcp like exec, but automatic
authentication is performed as for
login server
printer 515/tcp spooler
efs 520/tcp extended file name server
tempo 526/tcp newdate
courier 530/tcp rpc
conference 531/tcp chat
netnews 532/tcp readnews
uucp 540/tcp uucpd
klogin 543/tcp
kshell 544/tcp krcmd
dsf 555/tcp
remotefs 556/tcp rfs server
chshell 562/tcp chcmd
meter 570/tcp demon
pcserver 600/tcp Sun IPC server
nqs 607/tcp nqs
mdqs 666/tcp
rfile 750/tcp
pump 751/tcp
qrh 752/tcp
rrh 753/tcp
tell 754/tcp send
nlogin 758/tcp
con 759/tcp
ns 760/tcp
rxe 761/tcp
quotad 762/tcp
cycleserv 763/tcp
omserv 764/tcp
webster 765/tcp
phonebook 767/tcp phone
vid 769/tcp
rtip 771/tcp
cycleserv2 772/tcp
submit 773/tcp
rpasswd 774/tcp
entomb 775/tcp
wpages 776/tcp
wpgs 780/tcp
<span class="grey">Reynolds & Postel [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
mdbs_daemon 800/tcp
device 801/tcp
maitrd 997/tcp
busboy 998/tcp
garcon 999/tcp
blackjack 1025/tcp network blackjack
bbn-mmc 1347/tcp multi media conferencing
bbn-mmx 1348/tcp multi media conferencing
orasrv 1525/tcp oracle
ingreslock 1524/tcp
issd 1600/tcp
nkd 1650/tcp
dc 2001/tcp
mailbox 2004/tcp
berknet 2005/tcp
invokator 2006/tcp
dectalk 2007/tcp
conf 2008/tcp
news 2009/tcp
search 2010/tcp
raid-cc 2011/tcp raid
ttyinfo 2012/tcp
raid-am 2013/tcp
troff 2014/tcp
cypress 2015/tcp
cypress-stat 2017/tcp
terminaldb 2018/tcp
whosockami 2019/tcp
servexec 2021/tcp
down 2022/tcp
ellpack 2025/tcp
shadowserver 2027/tcp
submitserver 2028/tcp
device2 2030/tcp
blackboard 2032/tcp
glogger 2033/tcp
scoremgr 2034/tcp
imsldoc 2035/tcp
objectmanager 2038/tcp
lam 2040/tcp
interbase 2041/tcp
isis 2042/tcp
rimsl 2044/tcp
dls 2047/tcp
dls-monitor 2048/tcp
shilp 2049/tcp
NSWS 3049/tcp
rfa 4672/tcp remote file access server
<span class="grey">Reynolds & Postel [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
commplex-main 5000/tcp
commplex-link 5001/tcp
padl2sim 5236/tcp
man 9535/tcp
echo 7/udp
discard 9/udp sink null
systat 11/udp users
daytime 13/udp
netstat 15/udp
qotd 17/udp quote
chargen 19/udp ttytst source
time 37/udp timserver
rlp 39/udp resource
name 42/udp nameserver
whois 43/udp nicname
nameserver 53/udp domain
bootps 67/udp bootp
bootpc 68/udp
tftp 69/udp
sunrpc 111/udp
erpc 121/udp
ntp 123/udp
statsrv 133/udp
profile 136/udp
snmp 161/udp
snmp-trap 162/udp
at-rtmp 201/udp
at-nbp 202/udp
at-3 203/udp
at-echo 204/udp
at-5 205/udp
at-zis 206/udp
at-7 207/udp
at-8 208/udp
biff 512/udp used by mail system to notify users
of new mail received; currently
receives messages only from
processes on the same machine
who 513/udp maintains data bases showing who's
logged in to machines on a local
net and the load average of the
machine
syslog 514/udp
talk 517/udp like tenex link, but across
machine - unfortunately, doesn't
use link protocol (this is actually
just a rendezvous port from which a
<span class="grey">Reynolds & Postel [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
tcp connection is established)
ntalk 518/udp
utime 519/udp unixtime
router 520/udp local routing process (on site);
uses variant of Xerox NS routing
information protocol
timed 525/udp timeserver
netwall 533/udp for emergency broadcasts
new-rwho 550/udp new-who
rmonitor 560/udp rmonitord
monitor 561/udp
meter 571/udp udemon
elcsd 704/udp errlog copy/server daemon
loadav 750/udp
vid 769/udp
cadlock 770/udp
notify 773/udp
acmaint_dbd 774/udp
acmaint_transd 775/udp
wpages 776/udp
puparp 998/udp
applix 999/udp Applix ac
puprouter 999/udp
cadlock 1000/udp
hermes 1248/udp
wizard 2001/udp curry
globe 2002/udp
emce 2004/udp CCWS mm conf
oracle 2005/udp
raid-cc 2006/udp raid
raid-am 2007/udp
terminaldb 2008/udp
whosockami 2009/udp
pipe_server 2010/udp
servserv 2011/udp
raid-ac 2012/udp
raid-cd 2013/udp
raid-sf 2014/udp
raid-cs 2015/udp
bootserver 2016/udp
bootclient 2017/udp
rellpack 2018/udp
about 2019/udp
xinupageserver 2020/udp
xinuexpansion1 2021/udp
xinuexpansion2 2022/udp
xinuexpansion3 2023/udp
xinuexpansion4 2024/udp
<span class="grey">Reynolds & Postel [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
xribs 2025/udp
scrabble 2026/udp
isis 2042/udp
isis-bcast 2043/udp
rimsl 2044/udp
cdfunc 2045/udp
sdfunc 2046/udp
dls 2047/udp
shilp 2049/udp
rmonitor_secure 5145/udp
xdsxdm 6558/udp
isode-dua 17007/udp
<span class="grey">Reynolds & Postel [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
INTERNET MULTICAST ADDRESSES
Host Extensions for IP Multicasting (<a href="./rfc1112">RFC-1112</a>) [<a href="#ref-43" title=""Host Extensions for IP Multicasting"">43</a>] specifies the
extensions required of a host implementation of the Internet Protocol
(IP) to support multicasting. Current addresses are listed below.
224.0.0.0 Reserved [<a href="#ref-43" title=""Host Extensions for IP Multicasting"">43</a>,<a href="#ref-JBP">JBP</a>]
224.0.0.1 All Hosts on this Subnet [<a href="#ref-43" title=""Host Extensions for IP Multicasting"">43</a>,<a href="#ref-JBP">JBP</a>]
224.0.0.2 All Gateways on this Subnet (proposed) [<a href="#ref-JBP">JBP</a>]
224.0.0.3 Unassigned [<a href="#ref-JBP">JBP</a>]
224.0.0.4 DVMRP Routers [<a href="#ref-140" title=""Distance Vector Multicast Routing Protocol"">140</a>,<a href="#ref-JBP">JBP</a>]
224.0.0.5 OSPFIGP OSPFIGP All Routers [<a href="#ref-83" title=""The OSPF Specification"">83</a>,JXM1]
224.0.0.6 OSPFIGP OSPFIGP Designated Routers [<a href="#ref-83" title=""The OSPF Specification"">83</a>,JXM1]
244.0.0.7-244.0.0.255 Unassigned [<a href="#ref-JBP">JBP</a>]
224.0.1.0 VMTP Managers Group [<a href="#ref-17" title=""VMTP: Versatile Message Transaction Protocol Specification"">17</a>,<a href="#ref-DRC3">DRC3</a>]
224.0.1.1 NTP Network Time Protocol [<a href="#ref-80" title=""Network Time Protocol (Version 1), Specification and Implementation"">80</a>,<a href="#ref-DLM1">DLM1</a>]
224.0.1.2 SGI-Dogfight [<a href="#ref-AXC">AXC</a>]
224.0.1.3 Rwhod [<a href="#ref-SXD">SXD</a>]
224.0.1.4 VNP [<a href="#ref-DRC3">DRC3</a>]
244.0.1.5-244.0.1.255 Unassigned [<a href="#ref-JBP">JBP</a>]
224.0.2.1 "rwho" Group (BSD) (unofficial) [<a href="#ref-JBP">JBP</a>]
232.x.x.x VMTP transient groups [<a href="#ref-17" title=""VMTP: Versatile Message Transaction Protocol Specification"">17</a>,<a href="#ref-DRC3">DRC3</a>]
Note that when used on an Ethernet or IEEE 802 network, the 23
low-order bits of the IP Multicast address are placed in the low-
order 23 bits of the Ethernet or IEEE 802 net multicast address
1.0.94.0.0.0. See the next section on "IANA ETHERNET ADDRESS
BLOCK".
<span class="grey">Reynolds & Postel [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
IANA ETHERNET ADDRESS BLOCK
The IANA owns an Ethernet address block which may be used for
multicast address asignments or other special purposes.
The address block in IEEE binary is (which is in bit transmission
order):
0000 0000 0000 0000 0111 1010
In the normal Internet dotted decimal notation this is 0.0.94 since
the bytes are transmitted higher order first and bits within bytes
are transmitted lower order first (see "Data Notation" in the
Introduction).
IEEE CSMA/CD and Token Bus bit transmission order: 00 00 5E
IEEE Token Ring bit transmission order: 00 00 7A
Appearance on the wire (bits transmitted from left to right):
0 23 47
| | |
1000 0000 0000 0000 0111 1010 xxxx xxx0 xxxx xxxx xxxx xxxx
| |
Multicast Bit 0 = Internet Multicast
1 = Assigned by IANA for
other uses
Appearance in memory (bits transmitted right-to-left within octets,
octets transmitted left-to-right):
0 23 47
| | |
0000 0001 0000 0000 0101 1110 0xxx xxxx xxxx xxxx xxxx xxxx
| |
Multicast Bit 0 = Internet Multicast
1 = Assigned by IANA for other uses
The latter representation corresponds to the Internet standard bit-
order, and is the format that most programmers have to deal with.
Using this representation, the range of Internet Multicast addresses
is:
01-00-5E-00-00-00 to 01-00-5E-7F-FF-FF in hex, or
1.0.94.0.0.0 to 1.0.94.127.255.255 in dotted decimal
<span class="grey">Reynolds & Postel [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
IP TOS PARAMETERS
This documents the default Type-of-Service values that are currently
recommended for the most important Internet protocols.
There are three binary TOS attributes: low delay, high throughput,
and high reliability; in each case, an attribute bit is turned on to
indicate "better". The three attributes cannot all be optimized
simultanously, and in fact the TOS algorithms that have been
discussed tend to make "better" values of the attributes mutually
exclusive. Therefore, the recommended values have at most one bit
on.
Generally, protocols which are involved in direct interaction with a
human should select low delay, while data transfers which may involve
large blocks of data are need high throughput. Finally, high
reliability is most important for datagram-based Internet management
functions.
Application protocols not included in these tables should be able to
make appropriate choice of low delay (1 0 0) or high throughput (0 1
0).
The following are recommended values for TOS:
----- Type-of-Service Value -----
Low High High
Protocol Delay Throughput Reliability
TELNET (1) 1 0 0
FTP
Control 1 0 0
Data (2) 0 1 0
TFTP 1 0 0
SMTP (3)
Cmd phase 1 0 0
DATA phase 0 1 0
Domain Name Service
UDP Query 1 0 0
TCP Query 0 0 0
Zone Tnsfr 0 1 0
NNTP 0 0 0
<span class="grey">Reynolds & Postel [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
ICMP
Errors 0 0 0
Queries 0 0 0
Any IGP 0 0 1
EGP 0 0 0
SNMP 0 0 1
BOOTP 0 0 0
Notes:
(1) Includes all interactive user protocols (e.g., rlogin).
(2) Includes all bulk data transfer protocols (e.g., rcp).
(3) If the implementation does not support changing the TOS
during the lifetime of the connection, then the recommended
TOS on opening the connection is (0,0,0).
<span class="grey">Reynolds & Postel [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
IP TIME TO LIVE PARAMETER
The current recommended default TTL for the Internet Protocol (IP)
<a href="./rfc791">RFC-791</a> [<a href="#ref-45" title=""DDN Protocol Handbook"">45</a>,<a href="#ref-105" title=""Internet Protocol - DARPA Internet Program Protocol Specification"">105</a>] is 32.
<span class="grey">Reynolds & Postel [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
DOMAIN SYSTEM PARAMETERS
The Internet Domain Naming System (DOMAIN) includes several
parameters. These are documented in <a href="./rfc1034">RFC-1034</a>, [<a href="#ref-81" title=""Domain Names - Concepts and Facilities"">81</a>] and <a href="./rfc1035">RFC-1035</a>
[<a href="#ref-82" title=""Domain Names - Implementation and Specification"">82</a>]. The CLASS parameter is listed here. The per CLASS parameters
are defined in separate RFCs as indicated.
Domain System Parameters:
Decimal Name References
------- ---- ----------
0 Reserved [<a href="#ref-PM1">PM1</a>]
1 Internet (IN) [<a href="#ref-81" title=""Domain Names - Concepts and Facilities"">81</a>,<a href="#ref-PM1">PM1</a>]
2 Unassigned [<a href="#ref-PM1">PM1</a>]
3 Chaos (CH) [<a href="#ref-PM1">PM1</a>]
4 Hessoid (HS) [<a href="#ref-PM1">PM1</a>]
5-65534 Unassigned [<a href="#ref-PM1">PM1</a>]
65535 Reserved
<span class="grey">Reynolds & Postel [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
BOOTP PARAMETERS
The Bootstrap Protocol (BOOTP) <a href="./rfc951">RFC-951</a> [<a href="#ref-36" title=""BOOTSTRAP Protocol (BOOTP)"">36</a>] describes an IP/UDP
bootstrap protocol (BOOTP) which allows a diskless client machine to
discover its own IP address, the address of a server host, and the
name of a file to be loaded into memory and executed. The BOOTP
Vendor Information Extensions <a href="./rfc1084">RFC-1084</a> [<a href="#ref-117" title=""BOOTP Vendor Information Extensions"">117</a>] proposes an addition to
the Bootstrap Protocol (BOOTP).
Vendor Extensions are listed below:
Tag Name Data Length Meaning References
--- ---- ----------- ------- ----------
0 Pad 0 None
1 Subnet Mask 4 Subnet Mask Value
2 Time Zone 4 Time Offset in
Seconds from UTC
3 Gateways N N/4 Gateway addresses
4 Time Server N N/4 Timeserver addresses
5 Name Server N N/4 IEN-116 Server addresses
6 Domain Server N N/4 DNS Server addresses
7 Log Server N N/4 Logging Server addresses
8 Quotes Server N N/4 Quotes Server addresses
9 LPR Server N N/4 Printer Server addresses
10 Impress Server N N/4 Impress Server addresses
11 RLP Server N N/4 RLP Server addresses
12 Hostname N Hostname string
13 Boot File Size 2 Size of boot file in 512 byte
checks
14 Merit Dump File Client to dump and name
the file to dump it to
15-127 Unassigned
128-154 Reserved
255 End 0 None
<span class="grey">Reynolds & Postel [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
NETWORK MANAGEMENT PARAMETERS
For the management of hosts and gateways on the Internet a data
structure for the information has been defined. This data structure
should be used with any of several possible management protocols, such
as the "Simple Network Management Protocol" (SNMP) <a href="./rfc1098">RFC-1098</a> [<a href="#ref-15" title=""A Simple Network Management Protocol"">15</a>], or
the "Common Management Information Protocol over TCP" (CMOT) [<a href="#ref-142" title="and L. Besaw">142</a>].
The data structure is the "Structure and Indentification of Management
Information for TCP/IP-based Internets" (SMI) <a href="./rfc1065">RFC-1065</a> [<a href="#ref-120" title=""Structure and Identification of Management Information for TCP/IP-based internets"">120</a>], and the
"Management Information Base for Network Management of TCP/IP-based
Internets" (MIB) [<a href="#ref-121" title=""Management Information Base for Network Management of TCP/IP-based internets"">121</a>].
The SMI includes the provision for parameters or codes to indicate
experimental or private data structures. These parameter assignments
are listed here.
The older "Simple Gateway Monitoring Protocol" (SGMP) <a href="./rfc1028">RFC-1028</a> [<a href="#ref-37" title=""A Simple Gateway Monitoring Protocol"">37</a>]
also defined a data structure. The parameter assignments used with
SGMP are included here for hist orical completeness.
SMI Network Management Experimental Codes:
Prefix: 1.3.6.1.3.
Decimal Name Description References
------- ---- ----------- ----------
0 Reserved [<a href="#ref-JKR1">JKR1</a>]
1 CLNP ISO CLNP Objects [MTR]
2 T1-Carrier T1 Carrier Objects [MTR]
3 IEEE8023 Ethernet-like Objects [MTR]
4 IEEE8025 Token Ring-like Objects [MTR]
SMI Network Management Private Enterprise Codes:
Prefix: 1.3.6.1.4.1.
Decimal Name References
------- ---- ----------
0 Reserved [<a href="#ref-JKR1">JKR1</a>]
1 Proteon [<a href="#ref-GSM11">GSM11</a>]
2 IBM [<a href="#ref-JXR">JXR</a>]
3 CMU [<a href="#ref-SXW">SXW</a>]
4 Unix [<a href="#ref-KXS">KXS</a>]
5 ACC [<a href="#ref-AB20">AB20</a>]
6 TWG [<a href="#ref-KZM">KZM</a>]
7 CAYMAN [<a href="#ref-BP52">BP52</a>]
8 NYSERNET [<a href="#ref-MS9">MS9</a>]
<span class="grey">Reynolds & Postel [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
9 cisco [<a href="#ref-GXS">GXS</a>]
10 NSC [<a href="#ref-GS123">GS123</a>]
11 HP [<a href="#ref-RDXS">RDXS</a>]
12 Epilogue [<a href="#ref-KA4">KA4</a>]
13 U of Tennessee [<a href="#ref-JDC20">JDC20</a>]
14 BBN [<a href="#ref-RH6">RH6</a>]
15 Xylogics, Inc. [<a href="#ref-JRL3">JRL3</a>]
16 Unisys [UXW]
17 Canstar [<a href="#ref-SXP">SXP</a>]
18 Wellfleet [<a href="#ref-JCB1">JCB1</a>]
19 TRW [<a href="#ref-GGB2">GGB2</a>]
20 MIT [<a href="#ref-JR35">JR35</a>]
21 EON [<a href="#ref-MXW">MXW</a>]
22 Spartacus [<a href="#ref-YXK">YXK</a>]
23 Excelan [<a href="#ref-RXB">RXB</a>]
24 Spider Systems [<a href="#ref-VXW">VXW</a>]
25 NSFNET [<a href="#ref-HWB">HWB</a>]
26 Hughes LAN Systems [<a href="#ref-AXC1">AXC1</a>]
27 Intergraph [<a href="#ref-SXC">SXC</a>]
28 Interlan [<a href="#ref-FJK2">FJK2</a>]
29 Vitalink Communications [FXB]
30 Ulana [<a href="#ref-BXA">BXA</a>]
31 NSWC [<a href="#ref-SRN1">SRN1</a>]
32 Santa Cruz Operation [<a href="#ref-KR35">KR35</a>]
33 Xyplex [BXS]
34 Cray [<a href="#ref-HXE">HXE</a>]
35 Bell Northern Research [<a href="#ref-GXW">GXW</a>]
36 DEC [<a href="#ref-RXB1">RXB1</a>]
37 Touch [<a href="#ref-BXB">BXB</a>]
38 Network Research Corp. [<a href="#ref-BXV">BXV</a>]
39 Baylor College of Medicine [<a href="#ref-SB98">SB98</a>]
40 NMFECC-LLNL [<a href="#ref-SXH">SXH</a>]
41 SRI [<a href="#ref-DW181">DW181</a>]
42 Sun Microsystems [DXY]
43 3Com [<a href="#ref-TB6">TB6</a>]
44 CMC [<a href="#ref-DXP">DXP</a>]
45 SynOptics [BXB1]
46 Cheyenne Software [<a href="#ref-RXH">RXH</a>]
47 Prime Computer [<a href="#ref-MXS">MXS</a>]
48 MCNC/North Carolina Data Network [<a href="#ref-KXW">KXW</a>]
49 Chipcom [<a href="#ref-JXC">JXC</a>]
50 Optical Data Systems [<a href="#ref-JXF">JXF</a>]
51 gated [<a href="#ref-JXH">JXH</a>]
52 Cabletron Systems [<a href="#ref-RXD">RXD</a>]
53 Apollo Computers [<a href="#ref-JXB">JXB</a>]
54 DeskTalk Systems, Inc. [<a href="#ref-DXK">DXK</a>]
55 SSDS [<a href="#ref-RXS">RXS</a>]
56 Castle Rock Computing [<a href="#ref-JXS1">JXS1</a>]
<span class="grey">Reynolds & Postel [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
57 MIPS Computer Systems [<a href="#ref-CXM">CXM</a>]
58 TGV, Inc. [<a href="#ref-KAA">KAA</a>]
59 Silicon Graphics, Inc. [<a href="#ref-RXJ">RXJ</a>]
60 University of British Columbia [<a href="#ref-DXM">DXM</a>]
61 Merit [<a href="#ref-BXN">BXN</a>]
62 FiberCom [<a href="#ref-EXR">EXR</a>]
63 Apple Computer Inc [<a href="#ref-JXH1">JXH1</a>]
64 Gandalf [<a href="#ref-HXK">HXK</a>]
65 Dartmouth [<a href="#ref-PXK">PXK</a>]
66 David Systems [<a href="#ref-DXM">DXM</a>]
67 Reuter [<a href="#ref-BXZ">BXZ</a>]
68 Cornell [<a href="#ref-DC126">DC126</a>]
69 TMAC [<a href="#ref-MLS34">MLS34</a>]
70 Locus Computing Corp. [<a href="#ref-AXS">AXS</a>]
71 NASA [<a href="#ref-SS92">SS92</a>]
72 Retix [<a href="#ref-AXM">AXM</a>]
73 Boeing [<a href="#ref-JXG">JXG</a>]
74 AT&T [<a href="#ref-AXC2">AXC2</a>]
75 Ungermann-Bass [<a href="#ref-DXM">DXM</a>]
76 Digital Analysis Corp. [<a href="#ref-SXK">SXK</a>]
77 LAN Manager [<a href="#ref-JXG1">JXG1</a>]
78 Netlabs [<a href="#ref-JB478">JB478</a>]
79 ICL [<a href="#ref-JXI">JXI</a>]
80 Auspex Systems [<a href="#ref-BXE">BXE</a>]
81 Lannet Company [<a href="#ref-EXR">EXR</a>]
82 Network Computing Devices [<a href="#ref-DM280">DM280</a>]
83 Raycom Systems [<a href="#ref-BXW1">BXW1</a>]
84 Pirelli Focom Ltd. [<a href="#ref-SXL">SXL</a>]
85 Datability Software Systems [<a href="#ref-LXF">LXF</a>]
86 Network Application Technology [<a href="#ref-YXW">YXW</a>]
87 LINK (Lokales Informatik-Netz Karlsruhe) [<a href="#ref-GXS">GXS</a>]
88 NYU [<a href="#ref-BJR2">BJR2</a>]
89 RND [<a href="#ref-RXN">RXN</a>]
90 InterCon Systems Corporation [<a href="#ref-AW90">AW90</a>]
SGMP Vendor Specific Codes:
Prefix: 1,255,
Decimal Name References
------- ---- ----------
0 Reserved [<a href="#ref-JKR1">JKR1</a>]
1 Proteon [JS18]
2 IBM [<a href="#ref-JXR">JXR</a>]
3 CMU [<a href="#ref-SXW">SXW</a>]
4 Unix [<a href="#ref-MS9">MS9</a>]
5 ACC [<a href="#ref-AB20">AB20</a>]
6 TWG [MTR]
<span class="grey">Reynolds & Postel [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
7 CAYMAN [<a href="#ref-BP52">BP52</a>]
8 NYSERNET [<a href="#ref-MS9">MS9</a>]
9 cisco [<a href="#ref-GS2">GS2</a>]
10 BBN [<a href="#ref-RH6">RH6</a>]
11 Unassigned [<a href="#ref-JKR1">JKR1</a>]
12 MIT [<a href="#ref-JR35">JR35</a>]
13-254 Unassigned [<a href="#ref-JKR1">JKR1</a>]
255 Reserved [<a href="#ref-JKR1">JKR1</a>]
<span class="grey">Reynolds & Postel [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
ARPANET AND MILNET LOGICAL ADDRESSES
The ARPANET facility for "logical addressing" is described in <a href="./rfc878">RFC-878</a>
[<a href="#ref-57" title=""Telnet Terminal Speed Option"">57</a>] and <a href="./rfc1005">RFC-1005</a> [<a href="#ref-109" title=""Telnet Extended Options - List Option"">109</a>]. A portion of the possible logical addresses
are reserved for standard uses.
There are 49,152 possible logical host addresses. Of these, 256 are
reserved for assignment to well-known functions. Assignments for
well-known functions are made by the IANA. Assignments for other
logical host addresses are made by the NIC.
Logical Address Assignments:
Decimal Description References
------- ----------- ----------
0 Reserved [<a href="#ref-JBP">JBP</a>]
1 The BBN Core Gateways [<a href="#ref-MB">MB</a>]
2-254 Unassigned [<a href="#ref-JBP">JBP</a>]
255 Reserved [<a href="#ref-JBP">JBP</a>]
<span class="grey">Reynolds & Postel [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
ARPANET AND MILNET LINK NUMBERS
The word "link" here refers to a field in the original ARPANET
Host/IMP interface leader. The link was originally defined as an 8-
bit field. Later specifications defined this field as the "message-
id" with a length of 12 bits. The name link now refers to the high
order 8 bits of this 12-bit message-id field. The Host/IMP interface
is defined in BBN Report 1822 [<a href="#ref-2" title=""Specifications for the Interconnection of a Host and an IMP"">2</a>].
The low-order 4 bits of the message-id field are called the sub-link.
Unless explicitly specified otherwise for a particular protocol,
there is no sender to receiver significance to the sub-link. The
sender may use the sub-link in any way he chooses (it is returned in
the RFNM by the destination IMP), the receiver should ignore the
sub-link.
Link Assignments:
Decimal Description References
------- ----------- ----------
0-63 BBNCC Monitoring [<a href="#ref-MB">MB</a>]
64-149 Unassigned [<a href="#ref-JBP">JBP</a>]
150 Xerox NS IDP [<a href="#ref-133" title=""The Ethernet, A Local Area Network: Data Link Layer and Physical Layer Specification"">133</a>,<a href="#ref-XEROX">XEROX</a>]
151 Unassigned [<a href="#ref-JBP">JBP</a>]
152 PARC Universal Protocol [<a href="#ref-8" title=""PUP: An Internetwork Architecture"">8</a>,<a href="#ref-XEROX">XEROX</a>]
153 TIP Status Reporting [<a href="#ref-JGH">JGH</a>]
154 TIP Accounting [<a href="#ref-JGH">JGH</a>]
155 Internet Protocol [regular] [<a href="#ref-105" title=""Internet Protocol - DARPA Internet Program Protocol Specification"">105</a>,<a href="#ref-JBP">JBP</a>]
156-158 Internet Protocol [experimental] [<a href="#ref-105" title=""Internet Protocol - DARPA Internet Program Protocol Specification"">105</a>,<a href="#ref-JBP">JBP</a>]
159 Figleaf Link [<a href="#ref-JBW1">JBW1</a>]
160 Blacker Local Network Protocol [<a href="#ref-DM28">DM28</a>]
161-194 Unassigned [<a href="#ref-JBP">JBP</a>]
195 ISO-IP [<a href="#ref-64" title=""Protocol for Providing the Connectionless-Mode Network Services"">64</a>,<a href="#ref-RXM">RXM</a>]
196-247 Experimental Protocols [<a href="#ref-JBP">JBP</a>]
248-255 Network Maintenance [<a href="#ref-JGH">JGH</a>]
<span class="grey">Reynolds & Postel [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
ARPANET AND MILNET X.25 ADDRESS MAPPINGS
All MILNET hosts are assigned addresses by the Defense Data Network
(DDN). The address of a MILNET host may be obtained from the Network
Information Center (NIC), represented as an ASCII text string in what
is called "host table format". This section describes the process by
which MILNET X.25 addresses may be derived from addresses in the NIC
host table format.
A NIC host table address consists of the ASCII text string
representations of four decimal numbers separated by periods,
corresponding to the four octeted of a thirty-two bit Internet
address. The four decimal numbers are referred to in this section as
"n", "h' "l", and "i". Thus, a host table address may be represented
as: "n.h.l.i". Each of these four numbers will have either one, two,
or three decimal digits and will never have a value greater than 255.
For example, in the host table, address: "10.2.0.124", n=10, h=2,
l=0, and i=124. To convert a host table address to a MILNET X.25
address:
1. If h < 64, the host table address corresponds to the X.25
physical address:
ZZZZ F IIIHHZZ (SS)
where:
ZZZZ = 0000 as required
F = 0 because the address is a physical address;
III is a three decimal digit respresentation of
"i", right-adjusted and padded with leading
zeros if required;
HH is a two decimal digit representation of "h",
right-adjusted and padded with leading zeros
if required;
ZZ = 00 and
(SS) is optional
In the example given above, the host table address 10.2.0.124
corresponds to the X.25 physical address 000001240200.
<span class="grey">Reynolds & Postel [Page 32]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-33" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
2. If h > 64 or h = 64, the host table address corresponds to the
X.25 logical address
ZZZZ F RRRRRZZ (SS)
where:
ZZZZ = 0000 as required
F = 1 because the address is a logical address;
RRRRR is a five decimal digit representation of
the result "r" of the calculation
r = h * 256 + i
(Note that the decimal representation of
"r" will always require five digits);
ZZ = 00 and
(SS) is optional
Thus, the host table address 10.83.0.207 corresponds to the X.25
logical address 000012145500.
In both cases, the "n" and "l" fields of the host table address are
not used.
<span class="grey">Reynolds & Postel [Page 33]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-34" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
IEEE 802 NUMBERS OF INTEREST
Some of the networks of all classes are IEEE 802 Networks. These
systems may use a Link Service Access Point (LSAP) field in much the
same way the ARPANET uses the "link" field. Further, there is an
extension of the LSAP header called the Sub-Network Access Protocol
(SNAP).
The IEEE likes to describe numbers in binary in bit transmission
order, which is the opposite of the big-endian order used throughout
the Internet protocol documentation.
Assignments:
Link Service Access Point Description References
------------------------- ----------- ----------
IEEE Internet
binary binary decimal
00000000 00000000 0 Null LSAP [<a href="#ref-IEEE">IEEE</a>]
01000000 00000010 2 Indiv LLC Sublayer Mgt [<a href="#ref-IEEE">IEEE</a>]
11000000 00000011 3 Group LLC Sublayer Mgt [<a href="#ref-IEEE">IEEE</a>]
00100000 00000100 4 SNA Path Control [<a href="#ref-IEEE">IEEE</a>]
01100000 00000110 6 Reserved (DOD IP) [<a href="#ref-104" title=""User Datagram Protocol"">104</a>,<a href="#ref-JBP">JBP</a>]
01110000 00001110 14 PROWAY-LAN [<a href="#ref-IEEE">IEEE</a>]
01110010 01001110 78 EIA-RS 511 [<a href="#ref-IEEE">IEEE</a>]
01111010 01011110 94 ISI IP [<a href="#ref-JBP">JBP</a>]
01110001 10001110 142 PROWAY-LAN [<a href="#ref-IEEE">IEEE</a>]
01010101 10101010 170 SNAP [<a href="#ref-IEEE">IEEE</a>]
01111111 11111110 254 ISO DIS 8473 [<a href="#ref-64" title=""Protocol for Providing the Connectionless-Mode Network Services"">64</a>,JXJ]
11111111 11111111 255 Global DSAP [<a href="#ref-IEEE">IEEE</a>]
These numbers (and others) are assigned by the IEEE Standards Office.
The address is: IEEE Standards Office, 345 East 47th Street, New
York, N.Y. 10017, Attn: Vince Condello. Phone: (212) 705-7092.
At an ad hoc special session on "IEEE 802 Networks and ARP", held
during the TCP Vendors Workshop (August 1986), an approach to a
consistent way to send DoD-IP datagrams and other IP related
protocols (such as the Address Resolution Protocol (ARP)) on 802
networks was developed, using the SNAP extension (see <a href="./rfc1010">RFC-1010</a> and
<a href="./rfc1042">RFC-1042</a> [<a href="#ref-90" title=""A Standard for the Transmission of IP Datagrams over IEEE 802 Networks"">90</a>]).
<span class="grey">Reynolds & Postel [Page 34]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-35" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
ETHERNET NUMBERS OF INTEREST
Many of the networks of all classes are Ethernets (10Mb) or
Experimental Ethernets (3Mb). These systems use a message "type"
field in much the same way the ARPANET uses the "link" field.
If you need an Ethernet type, contact the Xerox Corporation, Xerox
Systems Institute, 475 Oakmead Parkway, Sunnyvale, CA 94086, Attn:
Ms. Fonda Pallone, (408) 737-4652.
The following list is contributed unverified information from various
sources.
Assignments:
Ethernet Exp. Ethernet Description References
------------- ------------- ----------- ----------
decimal Hex decimal octal
000 0000-05DC - - IEEE802.3 Length Field [<a href="#ref-XEROX">XEROX</a>]
257 0101-01FF - - Experimental [<a href="#ref-XEROX">XEROX</a>]
512 0200 512 1000 XEROX PUP (see 0A00) [<a href="#ref-8" title=""PUP: An Internetwork Architecture"">8</a>,<a href="#ref-XEROX">XEROX</a>]
513 0201 - - PUP Addr Trans (see 0A01)[<a href="#ref-XEROX">XEROX</a>]
1536 0600 1536 3000 XEROX NS IDP [<a href="#ref-133" title=""The Ethernet, A Local Area Network: Data Link Layer and Physical Layer Specification"">133</a>,<a href="#ref-XEROX">XEROX</a>]
2048 0800 513 1001 DOD IP [<a href="#ref-105" title=""Internet Protocol - DARPA Internet Program Protocol Specification"">105</a>,<a href="#ref-JBP">JBP</a>]
2049 0801 - - X.75 Internet [<a href="#ref-XEROX">XEROX</a>]
2050 0802 - - NBS Internet [<a href="#ref-XEROX">XEROX</a>]
2051 0803 - - ECMA Internet [<a href="#ref-XEROX">XEROX</a>]
2052 0804 - - Chaosnet [<a href="#ref-XEROX">XEROX</a>]
2053 0805 - - X.25 Level 3 [<a href="#ref-XEROX">XEROX</a>]
2054 0806 - - ARP [<a href="#ref-88" title=""An Ethernet Address Resolution Protocol or Converting Network Protocol Addresses to 48-bit Ethernet Addresses for Transmission on Ethernet Hardware"">88</a>,<a href="#ref-JBP">JBP</a>]
2055 0807 - - XNS Compatability [<a href="#ref-XEROX">XEROX</a>]
2076 081C - - Symbolics Private [<a href="#ref-DCP1">DCP1</a>]
2184 0888-088A - - Xyplex [<a href="#ref-XEROX">XEROX</a>]
2304 0900 - - Ungermann-Bass net debugr[XEROX]
2560 0A00 - - Xerox IEEE802.3 PUP [<a href="#ref-XEROX">XEROX</a>]
2561 0A01 - - PUP Addr Trans [<a href="#ref-XEROX">XEROX</a>]
2989 0BAD - - Banyan Systems [<a href="#ref-XEROX">XEROX</a>]
4096 1000 - - Berkeley Trailer nego [<a href="#ref-XEROX">XEROX</a>]
4097 1001-100F - - Berkeley Trailer encap/IP[XEROX]
5632 1600 - - Valid Systems [<a href="#ref-XEROX">XEROX</a>]
16962 4242 - - PCS Basic Block Protocol [<a href="#ref-XEROX">XEROX</a>]
21000 5208 - - BBN Simnet [<a href="#ref-XEROX">XEROX</a>]
24576 6000 - - DEC Unassigned (Exp.) [<a href="#ref-XEROX">XEROX</a>]
24577 6001 - - DEC MOP Dump/Load [<a href="#ref-XEROX">XEROX</a>]
24578 6002 - - DEC MOP Remote Console [<a href="#ref-XEROX">XEROX</a>]
24579 6003 - - DEC DECNET Phase IV Route[XEROX]
24580 6004 - - DEC LAT [<a href="#ref-XEROX">XEROX</a>]
24581 6005 - - DEC Diagnostic Protocol [<a href="#ref-XEROX">XEROX</a>]
<span class="grey">Reynolds & Postel [Page 35]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-36" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
24582 6006 - - DEC Customer Protocol [<a href="#ref-XEROX">XEROX</a>]
24583 6007 - - DEC LAVC, SCA [<a href="#ref-XEROX">XEROX</a>]
24584 6008-6009 - - DEC Unassigned [<a href="#ref-XEROX">XEROX</a>]
24586 6010-6014 - - 3Com Corporation [<a href="#ref-XEROX">XEROX</a>]
28672 7000 - - Ungermann-Bass download [<a href="#ref-XEROX">XEROX</a>]
28674 7002 - - Ungermann-Bass dia/loop [<a href="#ref-XEROX">XEROX</a>]
28704 7020-7029 - - LRT [<a href="#ref-XEROX">XEROX</a>]
28720 7030 - - Proteon [<a href="#ref-XEROX">XEROX</a>]
28724 7034 - - Cabletron [<a href="#ref-XEROX">XEROX</a>]
32771 8003 - - Cronus VLN [<a href="#ref-131" title=""The CRONUS Virtual Local Network"">131</a>,<a href="#ref-DT15">DT15</a>]
32772 8004 - - Cronus Direct [<a href="#ref-131" title=""The CRONUS Virtual Local Network"">131</a>,<a href="#ref-DT15">DT15</a>]
32773 8005 - - HP Probe [<a href="#ref-XEROX">XEROX</a>]
32774 8006 - - Nestar [<a href="#ref-XEROX">XEROX</a>]
32776 8008 - - AT&T [<a href="#ref-XEROX">XEROX</a>]
32784 8010 - - Excelan [<a href="#ref-XEROX">XEROX</a>]
32787 8013 - - SGI diagnostics [<a href="#ref-AXC">AXC</a>]
32788 8014 - - SGI network games [<a href="#ref-AXC">AXC</a>]
32789 8015 - - SGI reserved [<a href="#ref-AXC">AXC</a>]
32780 8016 - - SGI bounce server [<a href="#ref-AXC">AXC</a>]
32783 8019 - - Apollo Computers [<a href="#ref-XEROX">XEROX</a>]
32815 802E - - Tymshare [<a href="#ref-XEROX">XEROX</a>]
32816 802F - - Tigan, Inc. [<a href="#ref-XEROX">XEROX</a>]
32821 8035 - - Reverse ARP [<a href="#ref-48" title=""A Reverse Address Resolution Protocol"">48</a>,<a href="#ref-JXM">JXM</a>]
32822 8036 - - Aeonic Systems [<a href="#ref-XEROX">XEROX</a>]
32824 8038 - - DEC LANBridge [<a href="#ref-XEROX">XEROX</a>]
32825 8039-803C - - DEC Unassigned [<a href="#ref-XEROX">XEROX</a>]
32829 803D - - DEC Ethernet Encryption [<a href="#ref-XEROX">XEROX</a>]
32830 803E - - DEC Unassigned [<a href="#ref-XEROX">XEROX</a>]
32831 803F - - DEC LAN Traffic Monitor [<a href="#ref-XEROX">XEROX</a>]
32832 8040-8042 - - DEC Unassigned [<a href="#ref-XEROX">XEROX</a>]
32836 8044 - - Planning Research Corp. [<a href="#ref-XEROX">XEROX</a>]
32838 8046 - - AT&T [<a href="#ref-XEROX">XEROX</a>]
32839 8047 - - AT&T [<a href="#ref-XEROX">XEROX</a>]
32841 8049 - - ExperData [<a href="#ref-XEROX">XEROX</a>]
32859 805B - - Stanford V Kernel exp. [<a href="#ref-XEROX">XEROX</a>]
32860 805C - - Stanford V Kernel prod. [<a href="#ref-XEROX">XEROX</a>]
32861 805D - - Evans & Sutherland [<a href="#ref-XEROX">XEROX</a>]
32864 8060 - - Little Machines [<a href="#ref-XEROX">XEROX</a>]
32866 8062 - - Counterpoint Computers [<a href="#ref-XEROX">XEROX</a>]
32869 8065-8066 - - Univ. of Mass. @ Amherst [<a href="#ref-XEROX">XEROX</a>]
32871 8067 - - Veeco Integrated Auto. [<a href="#ref-XEROX">XEROX</a>]
32872 8068 - - General Dynamics [<a href="#ref-XEROX">XEROX</a>]
32873 8069 - - AT&T [<a href="#ref-XEROX">XEROX</a>]
32874 806A - - Autophon [<a href="#ref-XEROX">XEROX</a>]
32876 806C - - ComDesign [<a href="#ref-XEROX">XEROX</a>]
32877 806D - - Computgraphic Corp. [<a href="#ref-XEROX">XEROX</a>]
32878 806E-8077 - - Landmark Graphics Corp. [<a href="#ref-XEROX">XEROX</a>]
32890 807A - - Matra [<a href="#ref-XEROX">XEROX</a>]
<span class="grey">Reynolds & Postel [Page 36]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-37" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
32891 807B - - Dansk Data Elektronik [<a href="#ref-XEROX">XEROX</a>]
32892 807C - - Merit Internodal [<a href="#ref-HWB">HWB</a>]
32893 807D-807F - - Vitalink Communications [<a href="#ref-XEROX">XEROX</a>]
32896 8080 - - Vitalink TransLAN III [<a href="#ref-XEROX">XEROX</a>]
32897 8081-8083 - - Counterpoint Computers [<a href="#ref-XEROX">XEROX</a>]
32923 809B - - Appletalk [<a href="#ref-XEROX">XEROX</a>]
32924 809C-809E - - Datability [<a href="#ref-XEROX">XEROX</a>]
32927 809F - - Spider Systems Ltd. [<a href="#ref-XEROX">XEROX</a>]
32931 80A3 - - Nixdorf Computers [<a href="#ref-XEROX">XEROX</a>]
32932 80A4-80B3 - - Siemens Gammasonics Inc. [<a href="#ref-XEROX">XEROX</a>]
32960 80C0-80C3 - - DCA Data Exchange Cluster[XEROX]
32966 80C6 - - Pacer Software [<a href="#ref-XEROX">XEROX</a>]
32967 80C7 - - Applitek Corporation [<a href="#ref-XEROX">XEROX</a>]
32968 80C8-80CC - - Intergraph Corporation [<a href="#ref-XEROX">XEROX</a>]
32973 80CD-80CE - - Harris Corporation [<a href="#ref-XEROX">XEROX</a>]
32974 80CF-80D2 - - Taylor Instrument [<a href="#ref-XEROX">XEROX</a>]
32979 80D3-80D4 - - Rosemount Corporation [<a href="#ref-XEROX">XEROX</a>]
32981 80D5 - - IBM SNA Service on Ether [<a href="#ref-XEROX">XEROX</a>]
32989 80DD - - Varian Associates [<a href="#ref-XEROX">XEROX</a>]
32990 80DE-80DF - - Integrated Solutions TRFS[XEROX]
32992 80E0-80E3 - - Allen-Bradley [<a href="#ref-XEROX">XEROX</a>]
32996 80E4-80F0 - - Datability [<a href="#ref-XEROX">XEROX</a>]
33010 80F2 - - Retix [<a href="#ref-XEROX">XEROX</a>]
33011 80F3 - - AppleTalk AARP (Kinetics)[<a href="#ref-XEROX">XEROX</a>]
33012 80F4-80F5 - - Kinetics [<a href="#ref-XEROX">XEROX</a>]
33015 80F7 - - Apollo Computer [<a href="#ref-XEROX">XEROX</a>]
33023 80FF-8103 - - Wellfleet Communications [<a href="#ref-XEROX">XEROX</a>]
33031 8107-8109 - - Symbolics Private [<a href="#ref-XEROX">XEROX</a>]
33072 8130 - - Waterloo Microsystems [<a href="#ref-XEROX">XEROX</a>]
33073 8131 - - VG Laboratory Systems [<a href="#ref-XEROX">XEROX</a>]
33079 8137-8138 - - Novell, Inc. [<a href="#ref-XEROX">XEROX</a>]
33081 8139-813D - - KTI [<a href="#ref-XEROX">XEROX</a>]
33100 814C - - SNMP [<a href="#ref-JKR1">JKR1</a>]
36864 9000 - - Loopback [<a href="#ref-XEROX">XEROX</a>]
36865 9001 - - 3Com(Bridge) XNS Sys Mgmt[XEROX]
36866 9002 - - 3Com(Bridge) TCP-IP Sys [<a href="#ref-XEROX">XEROX</a>]
36867 9003 - - 3Com(Bridge) loop detect [<a href="#ref-XEROX">XEROX</a>]
65280 FF00 - - BBN VITAL-LanBridge cache[XEROX]
The standard for transmission of IP datagrams over Ethernets and
Experimental Ethernets is specified in <a href="./rfc894">RFC-894</a> [<a href="#ref-61" title="C.">61</a>] and <a href="./rfc895">RFC-895</a> [<a href="#ref-91" title="J.">91</a>]
respectively.
NOTE: Ethernet 48-bit address blocks are assigned by the IEEE.
IEEE Standards Office, 345 East 47th Street, New York, N.Y. 10017,
Attn: Vince Condello. Phone: (212) 705-7092.
<span class="grey">Reynolds & Postel [Page 37]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-38" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
ETHERNET VENDOR ADDRESS COMPONENTS
Ethernet hardware addresses are 48 bits, expressed as 12 hexadecimal
digits (0-9, plus A-F, capitalized). These 12 hex digits consist of
the first/left 6 digits (which should match the vendor of the
Ethernet interface within the station) and the last/right 6 digits
which specify the interface serial number for that interface vendor.
Ethernet addresses might be written unhyphenated (e.g.,
123456789ABC), or with one hyphen (e.g., 123456-789ABC), but should
be written hyphenated by octets (e.g., 12-34-56-78-9A-BC).
These addresses are physical station addresses, not multicast nor
broadcast, so the second hex digit (reading from the left) will be
even, not odd.
At present, it is not clear how the IEEE assigns Ethernet block
addresses. Whether in blocks of 2**24 or 2**25, and whether
multicasts are assigned with that block or separately. A portion of
the vendor block address is reportedly assigned serially, with the
other portion intentionally assigned randomly. If there is a global
algorithm for which addresses are designated to be physical (in a
chipset) versus logical (assigned in software), or globally-assigned
versus locally-assigned addresses, some of the known addresses do not
follow the scheme (e.g., AA0003; 02xxxx).
00000C Cisco
00000F NeXT
000010 Sytek
00001D Cabletron
000020 DIAB (Data Intdustrier AB)
000022 Visual Technology
00002A TRW
00005A S & Koch
00005E IANA
000065 Network General
00006B MIPS
000077 MIPS
00007A Ardent
000089 Cayman Systems Gatorbox
000093 Proteon
00009F Ameristar Technology
0000A2 Wellfleet
0000A3 Network Application Technology
0000A6 Network General (internal assignment, not for products)
0000A7 NCD X-terminals
0000A9 Network Systems
0000AA Xerox Xerox machines
<span class="grey">Reynolds & Postel [Page 38]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-39" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
0000B3 CIMLinc
0000B7 Dove Fastnet
0000BC Allen-Bradley
0000C0 Western Digital
0000C6 HP Intelligent Networks Operation (formerly Eon Systems)
0000C8 Altos
0000C9 Emulex Terminal Servers
0000D7 Dartmouth College (NED Router)
0000D8 3Com? Novell? PS/2
0000DD Gould
0000DE Unigraph
0000E2 Acer Counterpoint
0000EF Alantec
0000FD High Level Hardvare (Orion, UK)
000102 BBN BBN internal usage (not registered)
001700 Kabel
00802D Xylogics, Inc. Annex terminal servers
00808C Frontier Software Development
00AA00 Intel
00DD00 Ungermann-Bass
00DD01 Ungermann-Bass
020701 MICOM/Interlan UNIBUS or QBUS machines, Apollo
020406 BBN BBN internal usage (not registered)
026086 Satelcom MegaPac (UK)
02608C 3Com IBM PC; Imagen; Valid; Cisco
02CF1F CMC Masscomp; Silicon Graphics; Prime EXL
080002 3Com (Formerly Bridge)
080003 ACC (Advanced Computer Communications)
080005 Symbolics Symbolics LISP machines
080008 BBN
080009 Hewlett-Packard
08000A Nestar Systems
08000B Unisys
080010 AT&T
080011 Tektronix, Inc.
080014 Excelan BBN Butterfly, Masscomp, Silicon Graphics
080017 NSC
08001A Data General
08001B Data General
08001E Apollo
080020 Sun Sun machines
080022 NBI
080025 CDC
080026 Norsk Data (Nord)
080027 PCS Computer Systems GmbH
080028 TI Explorer
08002B DEC
08002E Metaphor
<span class="grey">Reynolds & Postel [Page 39]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-40" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
08002F Prime Computer Prime 50-Series LHC300
080036 Intergraph CAE stations
080037 Fujitsu-Xerox
080038 Bull
080039 Spider Systems
080041 DCA Digital Comm. Assoc.
080045 ???? (maybe Xylogics, but they claim not to know this number)
080046 Sony
080047 Sequent
080049 Univation
08004C Encore
08004E BICC
080056 Stanford University
080058 ??? DECsystem-20
08005A IBM
080067 Comdesign
080068 Ridge
080069 Silicon Graphics
08006E Excelan
080075 DDE (Danish Data Elektronik A/S)
08007C Vitalink TransLAN III
080080 XIOS
080086 Imagen/QMS
080087 Xyplex terminal servers
080089 Kinetics AppleTalk-Ethernet interface
08008B Pyramid
08008D XyVision XyVision machines
080090 Retix Inc Bridges
484453 HDS ???
800010 AT&T [misrepresentation of 080010?]
AA0000 DEC obsolete
AA0001 DEC obsolete
AA0002 DEC obsolete
AA0003 DEC Global physical address for some DEC machines
AA0004 DEC Local logical address for systems running DECNET
<span class="grey">Reynolds & Postel [Page 40]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-41" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
ETHERNET MULTICAST ADDRESSES
Ethernet Type
Address Field Usage
Multicast Addresses:
01-00-5E-00-00-00- 0800 Internet Multicast (<a href="./rfc1112">RFC-1112</a>) [<a href="#ref-43" title=""Host Extensions for IP Multicasting"">43</a>]
01-00-5E-7F-FF-FF
01-00-5E-80-00-00- ???? Internet reserved by IANA
01-00-5E-FF-FF-FF
01-80-C2-00-00-00 -802- Spanning tree (for bridges)
09-00-02-04-00-01? 8080? Vitalink printer
09-00-02-04-00-02? 8080? Vitalink management
09-00-09-00-00-01 8005 HP Probe
09-00-09-00-00-01 -802- HP Probe
09-00-09-00-00-04 8005? HP DTC
09-00-1E-00-00-00 8019? Apollo DOMAIN
09-00-2B-00-00-00 6009? DEC MUMPS?
09-00-2B-00-00-01 8039? DEC DSM/DTP?
09-00-2B-00-00-02 803B? DEC VAXELN?
09-00-2B-00-00-03 8038 DEC Lanbridge Traffic Monitor (LTM)
09-00-2B-00-00-04 ???? DEC MAP End System Hello?
09-00-2B-00-00-05 ???? DEC MAP Intermediate System Hello?
09-00-2B-00-00-06 803D? DEC CSMA/CD Encryption?
09-00-2B-00-00-07 8040? DEC NetBios Emulator?
09-00-2B-00-00-0F 6004 DEC Local Area Transport (LAT)
09-00-2B-00-00-1x ???? DEC Experimental
09-00-2B-01-00-00 8038 DEC LanBridge Copy packets (All bridges)
09-00-2B-01-00-01 8038 DEC LanBridge Hello packets (All local bridges)
1 packet per second, sent by the
designated LanBridge
09-00-2B-02-00-00 ???? DEC DNA Level 2 Routing Layer routers?
09-00-2B-02-01-00 803C? DEC DNA Naming Service Advertisement?
09-00-2B-02-01-01 803C? DEC DNA Naming Service Solicitation?
09-00-2B-02-01-02 803E? DEC DNA Time Service?
09-00-2B-03-xx-xx ???? DEC default filtering by bridges?
09-00-2B-04-00-00 8041? DEC Local Area System Transport (LAST)?
09-00-2B-23-00-00 803A? DEC Argonaut Console?
09-00-4E-00-00-02? 8137? Novell IPX
09-00-56-00-00-00- ???? Stanford reserved
09-00-56-FE-FF-FF
09-00-56-FF-00-00- 805C Stanford V Kernel, version 6.0
09-00-56-FF-FF-FF
09-00-77-00-00-01 ???? Retix spanning tree bridges
09-00-7C-02-00-05 8080? Vitalink diagnostics
09-00-7C-05-00-01 8080? Vitalink gateway?
0D-1E-15-BA-DD-06 ???? HP
<span class="grey">Reynolds & Postel [Page 41]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-42" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
AB-00-00-01-00-00 6001 DEC Maintenance Operation Protocol (MOP)
Dump/Load Assistance
AB-00-00-02-00-00 6002 DEC Maintenance Operation Protocol (MOP)
Remote Console
1 System ID packet every 8-10 minutes,
by every:
DEC LanBridge
DEC DEUNA interface
DEC DELUA interface
DEC DEQNA interface (in a certain mode)
AB-00-00-03-00-00 6003 DECNET Phase IV end node Hello packets
1 packet every 15 seconds, sent by
each DECNET host
AB-00-00-04-00-00 6003 DECNET Phase IV Router Hello packets
1 packet every 15 seconds, sent by the
DECNET router
AB-00-00-05-00-00 ???? Reserved DEC
through
AB-00-03-FF-FF-FF
AB-00-03-00-00-00 6004 DEC Local Area Transport (LAT) - old
AB-00-04-00-xx-xx ???? Reserved DEC customer private use
AB-00-04-01-xx-yy 6007 DEC Local Area VAX Cluster groups
System Communication Architecture (SCA)
CF-00-00-00-00-00 9000 Ethernet Configuration Test protocol (Loopback)
Broadcast Address:
FF-FF-FF-FF-FF-FF 0600 XNS packets, Hello or gateway search?
6 packets every 15 seconds, per XNS station
FF-FF-FF-FF-FF-FF 0800 IP (e.g. RWHOD via UDP) as needed
FF-FF-FF-FF-FF-FF 0804 CHAOS
FF-FF-FF-FF-FF-FF 0806 ARP (for IP and CHAOS) as needed
FF-FF-FF-FF-FF-FF 0BAD Banyan
FF-FF-FF-FF-FF-FF 1600 VALID packets, Hello or gateway search?
1 packets every 30 seconds, per VALID station
FF-FF-FF-FF-FF-FF 8035 Reverse ARP
FF-FF-FF-FF-FF-FF 807C Merit Internodal (INP)
FF-FF-FF-FF-FF-FF 809B EtherTalk
<span class="grey">Reynolds & Postel [Page 42]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-43" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
XNS PROTOCOL TYPES
Assigned well-known socket numbers
Routing Information 1
Echo 2
Router Error 3
Experimental 40-77
Assigned internet packet types
Routing Information 1
Echo 2
Error 3
Packet Exchange 4
Sequenced Packet 5
PUP 12
DoD IP 13
Experimental 20-37
<span class="grey">Reynolds & Postel [Page 43]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-44" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
PROTOCOL/TYPE FIELD ASSIGNMENTS
Below are two tables describing the arrangement of protocol fields or
type field assignments so that one could send NS Datagrams on the
ARPANET or Internet Datagrams on 10Mb Ethernet, and also protocol and
type fields so one could encapsulate each kind of Datagram in the
other.
\ upper| DoD IP | PUP | NS IP |
lower \ | | | |
--------------|--------|--------|--------|
| Type | Type | Type |
3Mb Ethernet | 1001 | 1000 | 3000 |
| octal | octal | octal |
--------------|--------|--------|--------|
| Type | Type | Type |
10 Mb Ethernet| 0800 | 0200 | 0600 |
| hex | hex | hex |
--------------|--------|--------|--------|
| Link | Link | Link |
ARPANET | 155 | 152 | 150 |
| decimal| decimal| decimal|
--------------|--------|--------|--------|
\ upper| DoD IP | PUP | NS IP |
lower \ | | | |
--------------|--------|--------|--------|
| |Protocol|Protocol|
DoD IP | X | 12 | 22 |
| | decimal| decimal|
--------------|--------|--------|--------|
| | | |
PUP | ? | X | ? |
| | | |
--------------|--------|--------|--------|
| Type | Type | |
NS IP | 13 | 12 | X |
| decimal| decimal| |
--------------|--------|--------|--------|
<span class="grey">Reynolds & Postel [Page 44]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-45" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
PRONET 80 TYPE NUMBERS
Below is the current list of PRONET 80 Type Numbers. Note: a
protocol that is on this list does not necessarily mean that there is
any implementation of it on ProNET.
Of these, protocols 1, 14, and 20 are the only ones that have ever
been seen in ARP packets.
For reference, the header is (one byte/line):
destination hardware address
source hardware address
data link header version (2)
data link header protocol number
data link header reserved (0)
data link header reserved (0)
Some protocols have been known to tuck stuff in the reserved fields.
Those who need a protocol number on ProNET-10/80 should contact John
Shriver (jas@proteon.com).
1 IP
2 IP with trailing headers
3 Address Resoloution Protocol
4 Proteon HDLC
5 VAX Debugging Protocol (MIT)
10 Novell NetWare (IPX and pre-IPX) (old format,
3 byte trailer)
11 Vianetix
12 PUP
13 Watstar protocol (University of Waterloo)
14 XNS
15 Diganostics
16 Echo protocol (link level)
17 Banyan Vines
20 DECnet (DEUNA Emulation)
21 Chaosnet
23 IEEE 802.2 or ISO 8802/2 Data Link
24 Reverse Address Resolution Protocol
29 TokenVIEW-10
31 AppleTalk LAP Data Packet
33 Cornell Boot Server Location Protocol
34 Novell NetWare IPX (new format, no trailer,
new XOR checksum)
<span class="grey">Reynolds & Postel [Page 45]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-46" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
ADDRESS RESOLUTION PROTOCOL PARAMETERS
The Address Resolution Protocol (ARP) specified in <a href="./rfc826">RFC-826</a> [<a href="#ref-88" title=""An Ethernet Address Resolution Protocol or Converting Network Protocol Addresses to 48-bit Ethernet Addresses for Transmission on Ethernet Hardware"">88</a>] has
several parameters. The assigned values for these parameters are
listed here.
Assignments:
Operation Code (op)
1 REQUEST
2 REPLY
Hardware Type (hrd)
Type Description References
---- ----------- ----------
1 Ethernet (10Mb) [<a href="#ref-JBP">JBP</a>]
2 Experimental Ethernet (3Mb) [<a href="#ref-JBP">JBP</a>]
3 Amateur Radio AX.25 [<a href="#ref-PXK">PXK</a>]
4 Proteon ProNET Token Ring [<a href="#ref-JBP">JBP</a>]
5 Chaos [<a href="#ref-GXP">GXP</a>]
6 IEEE 802 Networks [<a href="#ref-JBP">JBP</a>]
7 ARCNET [<a href="#ref-JBP">JBP</a>]
8 Hyperchannel [<a href="#ref-JBP">JBP</a>]
9 Lanstar [<a href="#ref-TU">TU</a>]
10 Autonet Short Address [<a href="#ref-MXB1">MXB1</a>]
11 LocalTalk [<a href="#ref-LXE">LXE</a>]
12 LocalNet (IBM PCNet or SYTEK LocalNET) [<a href="#ref-JXM">JXM</a>]
Protocol Type (pro)
Use the same codes as listed in the section called "Ethernet
Numbers of Interest" (all hardware types use this code set for the
protocol type).
<span class="grey">Reynolds & Postel [Page 46]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-47" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
REVERSE ADDRESS RESOLUTION PROTOCOL OPERATION CODES
The Reverse Address Resolution Protocol (RARP) specified in <a href="./rfc903">RFC-903</a>
[<a href="#ref-48" title=""A Reverse Address Resolution Protocol"">48</a>] has the following operation codes:
Assignments:
Operation Code (op)
3 request Reverse
4 reply Reverse
DYNAMIC REVERSE ARP
Assignments:
Operation Code (op)
5 DRARP-Request
6 DRARP-Reply
7 DRARP-Error
For further information, contact: David Brownell
(suneast!helium!db@Sun.COM).
<span class="grey">Reynolds & Postel [Page 47]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-48" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
X.25 TYPE NUMBERS
CCITT defines the high order two bits of the first octet of call user
data as follows:
00 - Used for other CCITT recomendations (such as X.29)
01 - Reserved for use by "national" administrative
authorities
10 - Reserved for use by international administrative authoorities
11 - Reserved for arbitrary use between consenting DTEs
Call User Data (hex) Protocol Reference
------------------- -------- ---------
01 PAD [<a href="#ref-GS2">GS2</a>]
C5 Blacker front-end descr dev [<a href="#ref-AGM">AGM</a>]
CC IP [<a href="#ref-69" title=""A Standard for the Transmission of IP Datagrams Over Public Data Networks"">69</a>,<a href="#ref-AGM">AGM</a>]*
CD ISO-IP [<a href="#ref-AGM">AGM</a>]
* NOTE: ISO SC6/WG2 approved assignment in ISO 9577 (January 1990).
<span class="grey">Reynolds & Postel [Page 48]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-49" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
PUBLIC DATA NETWORK NUMBERS
One of the Internet Class A Networks is the international system of
Public Data Networks. This section lists the mapping between the
Internet Addresses and the Public Data Network Addresses (X.121).
The numbers below are assigned for networks that are connected to the
Internet, and for independent networks. These independent networks
are marked with an asterisk preceding the number.
Assignments:
* Internet Public Data Net Description References
- -------------- ----------------- ----------- ----------
014.000.000.000 Reserved [<a href="#ref-JBP">JBP</a>]
014.000.000.001 3110-317-00035 00 PURDUE-TN [<a href="#ref-TN">TN</a>]
014.000.000.002 3110-608-00027 00 UWISC-TN [<a href="#ref-TN">TN</a>]
014.000.000.003 3110-302-00024 00 UDEL-TN [<a href="#ref-TN">TN</a>]
014.000.000.004 2342-192-00149 23 UCL-VTEST [<a href="#ref-PK">PK</a>]
014.000.000.005 2342-192-00300 23 UCL-TG [<a href="#ref-PK">PK</a>]
014.000.000.006 2342-192-00300 25 UK-SATNET [<a href="#ref-PK">PK</a>]
014.000.000.007 3110-608-00024 00 UWISC-IBM [<a href="#ref-MS56">MS56</a>]
014.000.000.008 3110-213-00045 00 RAND-TN [<a href="#ref-MO2">MO2</a>]
014.000.000.009 2342-192-00300 23 UCL-CS [<a href="#ref-PK">PK</a>]
014.000.000.010 3110-617-00025 00 BBN-VAN-GW [<a href="#ref-JD21">JD21</a>]
*014.000.000.011 2405-015-50300 00 CHALMERS [UXB]
014.000.000.012 3110-713-00165 00 RICE [<a href="#ref-PAM6">PAM6</a>]
014.000.000.013 3110-415-00261 00 DECWRL [<a href="#ref-PAM6">PAM6</a>]
014.000.000.014 3110-408-00051 00 IBM-SJ [<a href="#ref-SA1">SA1</a>]
014.000.000.015 2041-117-01000 00 SHAPE [<a href="#ref-JFW">JFW</a>]
014.000.000.016 2628-153-90075 00 DFVLR4-X25 [<a href="#ref-GB7">GB7</a>]
014.000.000.017 3110-213-00032 00 ISI-VAN-GW [<a href="#ref-JD21">JD21</a>]
014.000.000.018 2624-522-80900 52 FGAN-SIEMENS-X25 [<a href="#ref-GB7">GB7</a>]
014.000.000.019 2041-170-10000 00 SHAPE-X25 [<a href="#ref-JFW">JFW</a>]
014.000.000.020 5052-737-20000 50 UQNET [AXH]
014.000.000.021 3020-801-00057 50 DMC-CRC1 [<a href="#ref-VXT">VXT</a>]
014.000.000.022 2624-522-80329 02 FGAN-FGANFFMVAX-X25 [<a href="#ref-GB7">GB7</a>]
*014.000.000.023 2624-589-00908 01 ECRC-X25 [PXD]
014.000.000.024 2342-905-24242 83 UK-MOD-RSRE [<a href="#ref-JXE2">JXE2</a>]
014.000.000.025 2342-905-24242 82 UK-VAN-RSRE [<a href="#ref-AXM">AXM</a>]
014.000.000.026 2624-522-80329 05 DFVLRSUN-X25 [<a href="#ref-GB7">GB7</a>]
014.000.000.027 2624-457-11015 90 SELETFMSUN-X25 [BXD]
014.000.000.028 3110-408-00146 00 CDC-SVL [<a href="#ref-RAM57">RAM57</a>]
014.000.000.029 2222-551-04400 00 SUN-CNUCE [<a href="#ref-ABB2">ABB2</a>]
014.000.000.030 2222-551-04500 00 ICNUCEVM-CNUCE [<a href="#ref-ABB2">ABB2</a>]
014.000.000.031 2222-551-04600 00 SPARE-CNUCE [<a href="#ref-ABB2">ABB2</a>]
014.000.000.032 2222-551-04700 00 ICNUCEVX-CNUCE [<a href="#ref-ABB2">ABB2</a>]
014.000.000.033 2222-551-04524 00 CISCO-CNUCE [<a href="#ref-ABB2">ABB2</a>]
<span class="grey">Reynolds & Postel [Page 49]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-50" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
014.000.000.034 2342-313-00260 90 SPIDER-GW [AD67]
014.000.000.035 2342-313-00260 91 SPIDER-EXP [AD67]
014.000.000.036 2342-225-00101 22 PRAXIS-X25A [<a href="#ref-TXR">TXR</a>]
014.000.000.037 2342-225-00101 23 PRAXIS-X25B [<a href="#ref-TXR">TXR</a>]
014.000.000.038 2403-712-30250 00 DIAB-TABY-GW [FXB]
014.000.000.039 2403-715-30100 00 DIAB-LKP-GW [FXB]
014.000.000.040 2401-881-24038 00 DIAB-TABY1-GW [FXB]
014.000.000.041 2041-170-10060 00 STC [<a href="#ref-TC27">TC27</a>]
014.000.000.042-014.255.255.254 Unassigned [<a href="#ref-JBP">JBP</a>]
014.255.255.255 Reserved [<a href="#ref-JBP">JBP</a>]
The standard for transmission of IP datagrams over the Public Data
Network is specified in <a href="./rfc877">RFC-877</a> [<a href="#ref-69" title=""A Standard for the Transmission of IP Datagrams Over Public Data Networks"">69</a>].
<span class="grey">Reynolds & Postel [Page 50]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-51" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
TELNET OPTIONS
The Telnet Protocol has a number of options that may be negotiated.
These options are listed here. "Official Internet Protocols" [<a href="#ref-118" title=""Official Internet Protocols"">118</a>]
provides more detailed information.
Options Name References
------- ----------------------- ----------
0 Binary Transmission [<a href="#ref-110" title=""Telnet Binary Transmission"">110</a>,<a href="#ref-JBP">JBP</a>]
1 Echo [<a href="#ref-111" title=""Telnet Echo Option"">111</a>,<a href="#ref-JBP">JBP</a>]
2 Reconnection [<a href="#ref-42" title=""Telnet Reconnection Option"">42</a>,<a href="#ref-JBP">JBP</a>]
3 Suppress Go Ahead [<a href="#ref-114" title=""Telnet Suppress Go Ahead Option"">114</a>,<a href="#ref-JBP">JBP</a>]
4 Approx Message Size Negotiation [<a href="#ref-133" title=""The Ethernet, A Local Area Network: Data Link Layer and Physical Layer Specification"">133</a>,<a href="#ref-JBP">JBP</a>]
5 Status [<a href="#ref-113" title=""Telnet Status Option"">113</a>,<a href="#ref-JBP">JBP</a>]
6 Timing Mark [<a href="#ref-115" title=""Telnet Timing Mark Option"">115</a>,<a href="#ref-JBP">JBP</a>]
7 Remote Controlled Trans and Echo [<a href="#ref-107" title=""Remote Controlled Transmission and Echoing Telnet Option"">107</a>,<a href="#ref-JBP">JBP</a>]
8 Output Line Width [<a href="#ref-40" title=""Telnet Output Line Width Option"">40</a>,<a href="#ref-JBP">JBP</a>]
9 Output Page Size [<a href="#ref-41" title="">41</a>,<a href="#ref-JBP">JBP</a>]
10 Output Carriage-Return Disposition [<a href="#ref-28" title=""Telnet Output Carriage-Return Disposition Option"">28</a>,<a href="#ref-JBP">JBP</a>]
11 Output Horizontal Tab Stops [<a href="#ref-32" title=""Telnet Output Horizontal Tabstops Option"">32</a>,<a href="#ref-JBP">JBP</a>]
12 Output Horizontal Tab Disposition [<a href="#ref-31" title=""Telnet Output Horizontal Tab Disposition Option"">31</a>,<a href="#ref-JBP">JBP</a>]
13 Output Formfeed Disposition [<a href="#ref-29" title=""Telnet Output Formfeed Disposition Option"">29</a>,<a href="#ref-JBP">JBP</a>]
14 Output Vertical Tabstops [<a href="#ref-34" title=""Telnet Output Vertical Tabstops Option"">34</a>,<a href="#ref-JBP">JBP</a>]
15 Output Vertical Tab Disposition [<a href="#ref-33" title=""Telnet Output Vertical Tab Disposition Option"">33</a>,<a href="#ref-JBP">JBP</a>]
16 Output Linefeed Disposition [<a href="#ref-30" title=""Telnet Output Linefeed Disposition"">30</a>,<a href="#ref-JBP">JBP</a>]
17 Extended ASCII [<a href="#ref-136" title=""Telnet Extended ASCII Option"">136</a>,<a href="#ref-JBP">JBP</a>]
18 Logout [<a href="#ref-25" title=""Telnet Logout Option"">25</a>,<a href="#ref-MRC">MRC</a>]
19 Byte Macro [<a href="#ref-35" title=""Revised Telnet Byte Marco Option"">35</a>,<a href="#ref-JBP">JBP</a>]
20 Data Entry Terminal [<a href="#ref-145" title=""TELNET Data Entry Terminal Option DODIIS Implementation"">145</a>,<a href="#ref-38" title=""Telnet Data Entry Terminal Option"">38</a>,<a href="#ref-JBP">JBP</a>]
22 SUPDUP [<a href="#ref-26" title=""Telnet SUPDUP Option"">26</a>,<a href="#ref-27" title=""SUPDUP Protocol"">27</a>,<a href="#ref-MRC">MRC</a>]
22 SUPDUP Output [<a href="#ref-51" title=""Telnet SUPDUP-OUTPUT Option"">51</a>,<a href="#ref-MRC">MRC</a>]
23 Send Location [<a href="#ref-68" title=""Telnet Send-Location Option"">68</a>,EAK1]
24 Terminal Type [<a href="#ref-128" title=""Telnet Terminal Type Option"">128</a>,<a href="#ref-MS56">MS56</a>]
25 End of Record [<a href="#ref-103" title=""Telnet End of Record Option"">103</a>,<a href="#ref-JBP">JBP</a>]
26 TACACS User Identification [<a href="#ref-1" title=""TACACS User Identification Telnet Option"">1</a>,<a href="#ref-BA4">BA4</a>]
27 Output Marking [<a href="#ref-125" title=""Output Marking Telnet Option"">125</a>,<a href="#ref-SXS">SXS</a>]
28 Terminal Location Number [<a href="#ref-84" title=""Telnet Terminal Location Number Option"">84</a>,<a href="#ref-RN6">RN6</a>]
29 Telnet 3270 Regime [<a href="#ref-116" title=""Telnet 3270 Regime Option"">116</a>,<a href="#ref-JXR">JXR</a>]
30 X.3 PAD [<a href="#ref-70" title=""Telnet X.3 PAD Option"">70</a>,<a href="#ref-SL70">SL70</a>]
31 Negotiate About Window Size [<a href="#ref-139" title=""Telnet Window Size Option"">139</a>,<a href="#ref-DW183">DW183</a>]
32 Terminal Speed [<a href="#ref-57" title=""Telnet Terminal Speed Option"">57</a>,<a href="#ref-CLH3">CLH3</a>]
33 Remote Flow Control [<a href="#ref-58" title=""Telnet Remote Flow Control Option"">58</a>,<a href="#ref-CLH3">CLH3</a>]
34 Linemode [<a href="#ref-9" title=""Telnet Linemode Option"">9</a>,<a href="#ref-DB14">DB14</a>]
35 X Display Location [<a href="#ref-75" title=""Telnet X Display Location Option"">75</a>,<a href="#ref-GM23">GM23</a>]
255 Extended-Options-List [<a href="#ref-109" title=""Telnet Extended Options - List Option"">109</a>,<a href="#ref-JBP">JBP</a>]
<span class="grey">Reynolds & Postel [Page 51]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-52" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
MAIL ENCRYPTION TYPES
<a href="./rfc822">RFC-822</a> specifies that Encryption Types for mail may be assigned.
There are currently no <a href="./rfc822">RFC-822</a> encryption types assigned. Please use
instead the Mail Privacy procedures defined in [<a href="#ref-71" title=""Privacy Enhancement for Internet Electronic Mail: Part I: Message Encipherment and Authentication Procedures"">71</a>,<a href="#ref-72" title=""Privacy Enhancement for Internet Electronic Mail: Part III -- Algorithms, Modes, and Identifiers"">72</a>,<a href="#ref-66" title=""Privacy Enhancement for Internet Electronic Mail: Part II -- Certificate-Based Key Management"">66</a>].
<span class="grey">Reynolds & Postel [Page 52]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-53" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
MACHINE NAMES
These are the Official Machine Names as they appear in the Domain
Name System WKS records and the NIC Host Table. Their use is
described in <a href="./rfc952">RFC-952</a> [<a href="#ref-53" title=""DOD Internet Host Table Specification"">53</a>].
A machine name or CPU type may be up to 40 characters taken from the
set of uppercase letters, digits, and the two punctuation characters
hyphen and slash. It must start with a letter, and end with a letter
or digit.
ALTO DEC-1090
ALTOS-6800 DEC-1090B
AMDAHL-V7 DEC-1090T
APOLLO DEC-2020T
ATARI-104ST DEC-2040
ATT-3B1 DEC-2040T
ATT-3B20 DEC-2050T
ATT-7300 DEC-2060
BBN-C/60 DEC-2060T
BURROUGHS-B/29 DEC-2065
BURROUGHS-B/4800 DEC-FALCON
BUTTERFLY DEC-KS10
C/30 DEC-VAX-11730
C/70 DORADO
CADLINC DPS8/70M
CADR ELXSI-6400
CDC-170 EVEREX-386
CDC-170/750 FOONLY-F2
CDC-173 FOONLY-F3
CELERITY-1200 FOONLY-F4
CLUB-386 GOULD
COMPAQ-386/20 GOULD-6050
COMTEN-3690 GOULD-6080
CP8040 GOULD-9050
CRAY-1 GOULD-9080
CRAY-X/MP H-316
CRAY-2 H-60/68
CTIWS-117 H-68
DANDELION H-68/80
DEC-10 H-89
DEC-1050 HONEYWELL-DPS-6
DEC-1077 HONEYWELL-DPS-8/70
DEC-1080 HP3000
<span class="grey">Reynolds & Postel [Page 53]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-54" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
HP3000/64 PDP-11
IBM-158 PDP-11/3
IBM-360/67 PDP-11/23
IBM-370/3033 PDP-11/24
IBM-3081 PDP-11/34
IBM-3084QX PDP-11/40
IBM-3101 PDP-11/44
IBM-4331 PDP-11/45
IBM-4341 PDP-11/50
IBM-4361 PDP-11/70
IBM-4381 PDP-11/73
IBM-4956 PE-7/32
IBM-6152 PE-3205
IBM-PC PERQ
IBM-PC/AT PLEXUS-P/60
IBM-PC/RT PLI
IBM-PC/XT PLURIBUS
IBM-SERIES/1 PRIME-2350
IMAGEN PRIME-2450
IMAGEN-8/300 PRIME-2755
IMSAI PRIME-9655
INTEGRATED-SOLUTIONS PRIME-9755
INTEGRATED-SOLUTIONS-68K PRIME-9955II
INTEGRATED-SOLUTIONS-CREATOR PRIME-2250
INTEGRATED-SOLUTIONS-CREATOR-8 PRIME-2655
INTEL-386 PRIME-9955
INTEL-IPSC PRIME-9950
IS-1 PRIME-9650
IS-68010 PRIME-9750
LMI PRIME-2250
LSI-11 PRIME-750
LSI-11/2 PRIME-850
LSI-11/23 PRIME-550II
LSI-11/73 PYRAMID-90
M68000 PYRAMID-90MX
MAC-II PYRAMID-90X
MASSCOMP RIDGE
MC500 RIDGE-32
MC68000 RIDGE-32C
MICROPORT ROLM-1666
MICROVAX S1-MKIIA
MICROVAX-I SMI
MV/8000 SEQUENT-BALANCE-8000
NAS3-5 SIEMENS
NCR-COMTEN-3690 SILICON-GRAPHICS
NEXT/N1000-316 SILICON-GRAPHICS-IRIS
NOW SGI-IRIS-2400
ONYX-Z8000 SGI-IRIS-2500
<span class="grey">Reynolds & Postel [Page 54]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-55" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
SGI-IRIS-3010 SUN-3/60
SGI-IRIS-3020 SUN-3/75
SGI-IRIS-3030 SUN-3/80
SGI-IRIS-3110 SUN-3/110
SGI-IRIS-3115 SUN-3/140
SGI-IRIS-3120 SUN-3/150
SGI-IRIS-3130 SUN-3/160
SGI-IRIS-4D/20 SUN-3/180
SGI-IRIS-4D/20G SUN-3/200
SGI-IRIS-4D/25 SUN-3/260
SGI-IRIS-4D/25G SUN-3/280
SGI-IRIS-4D/25S SUN-3/470
SGI-IRIS-4D/50 SUN-3/480
SGI-IRIS-4D/50G SUN-4/60
SGI-IRIS-4D/50GT SUN-4/110
SGI-IRIS-4D/60 SUN-4/150
SGI-IRIS-4D/60G SUN-4/200
SGI-IRIS-4D/60T SUN-4/260
SGI-IRIS-4D/60GT SUN-4/280
SGI-IRIS-4D/70 SUN-4/330
SGI-IRIS-4D/70G SUN-4/370
SGI-IRIS-4D/70GT SUN-4/390
SGI-IRIS-4D/80GT SUN-50
SGI-IRIS-4D/80S SUN-100
SGI-IRIS-4D/120GTX SUN-120
SGI-IRIS-4D/120S SUN-130
SGI-IRIS-4D/210GTX SUN-150
SGI-IRIS-4D/210S SUN-170
SGI-IRIS-4D/220GTX SUN-386i/250
SGI-IRIS-4D/220S SUN-68000
SGI-IRIS-4D/240GTX SYMBOLICS-3600
SGI-IRIS-4D/240S SYMBOLICS-3670
SGI-IRIS-4D/280GTX SYMMETRIC-375
SGI-IRIS-4D/280S SYMULT
SGI-IRIS-CS/12 TANDEM-TXP
SGI-IRIS-4SERVER-8 TANDY-6000
SPERRY-DCP/10 TEK-6130
SUN TI-EXPLORER
SUN-2 TP-4000
SUN-2/50 TRS-80
SUN-2/100 UNIVAC-1100
SUN-2/120 UNIVAC-1100/60
SUN-2/130 UNIVAC-1100/62
SUN-2/140 UNIVAC-1100/63
SUN-2/150 UNIVAC-1100/64
SUN-2/160 UNIVAC-1100/70
SUN-2/170 UNIVAC-1160
SUN-3/50 UNKNOWN
<span class="grey">Reynolds & Postel [Page 55]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-56" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
VAX-11/725
VAX-11/730
VAX-11/750
VAX-11/780
VAX-11/785
VAX-11/790
VAX-11/8600
VAX-8600
WANG-PC002
WANG-VS100
WANG-VS400
WYSE-386
XEROX-1108
XEROX-8010
ZENITH-148
<span class="grey">Reynolds & Postel [Page 56]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-57" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
SYSTEM NAMES
These are the Official System Names as they appear in the Domain Name
System WKS records and the NIC Host Table. Their use is described in
<a href="./rfc952">RFC-952</a> [<a href="#ref-53" title=""DOD Internet Host Table Specification"">53</a>].
A system name may be up to 40 characters taken from the set of upper-
case letters, digits, and the two punctuation characters hyphen and
slash. It must start with a letter, and end with a letter or digit.
AEGIS MACOS TP3010
APOLLO MINOS TRSDOS
BS-2000 MOS ULTRIX
CEDAR MPE5 UNIX
CGW MSDOS UNIX-BSD
CHORUS MULTICS UNIX-V1AT
CHRYSALIS MVS UNIX-V
CMOS MVS/SP UNIX-V.1
CMS NEXUS UNIX-V.2
COS NMS UNIX-V.3
CPIX NONSTOP UNIX-PC
CTOS NOS-2 UNKNOWN
CTSS OS/DDP UT2D
DCN OS4 V
DDNOS OS86 VM
DOMAIN OSX VM/370
DOS PCDOS VM/CMS
EDX PERQ/OS VM/SP
ELF PLI VMS
EMBOS PSDOS/MIT VMS/EUNICE
EMMOS PRIMOS VRTX
EPOS RMX/RDOS WAITS
FOONEX ROS WANG
FUZZ RSX11M X11R3
GCOS SATOPS XDE
GPOS SCO-XENIX/386 XENIX
HDOS SCS
IMAGEN SIMP
INTERCOM SUN
IMPRESS SUN OS 3.5
INTERLISP SUN OS 4.0
IOS SWIFT
IRIX TAC
ISI-68020 TANDEM
ITS TENEX
LISP TOPS10
LISPM TOPS20
LOCUS TOS
<span class="grey">Reynolds & Postel [Page 57]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-58" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
PROTOCOL AND SERVICE NAMES
These are the Official Protocol Names as they appear in the Domain
Name System WKS records and the NIC Host Table. Their use is
described in <a href="./rfc952">RFC-952</a> [<a href="#ref-53" title=""DOD Internet Host Table Specification"">53</a>].
A protocol or service may be up to 40 characters taken from the set
of uppercase letters, digits, and the punctuation character hyphen.
It must start with a letter, and end with a letter or digit.
ARGUS - ARGUS Protocol
ARP - Address Resolution Protocol
AUTH - Authentication Service
BBN-RCC-MON - BBN RCC Monitoring
BL-IDM - Britton Lee Intelligent Database Machine
BOOTP - Bootstrap Protocol
BOOTPC - Bootstrap Protocol Client
BOOTPS - Bootstrap Protocol Server
BR-SAT-MON - Backroom SATNET Monitoring
CFTP - CFTP
CHAOS - CHAOS Protocol
CHARGEN - Character Generator Protocol
CISCO-FNA - CISCO FNATIVE
CISCO-TNA - CISCO TNATIVE
CISCO-SYS - CISCO SYSMAINT
CLOCK - DCNET Time Server Protocol
CMOT - Common Mgmnt Info Services and Protocol over TCP/IP
COOKIE-JAR - Authentication Scheme
CSNET-NS - CSNET Mailbox Nameserver Protocol
DAYTIME - Daytime Protocol
DCN-MEAS - DCN Measurement Subsystems Protocol
DCP - Device Control Protocol
DGP - Dissimilar Gateway Protocol
DISCARD - Discard Protocol
DOMAIN - Domain Name System
ECHO - Echo Protocol
EGP - Exterior Gateway Protocol
EMCON - Emission Control Protocol
EMFIS-CNTL - EMFIS Control Service
EMFIS-DATA - EMFIS Data Service
FINGER - Finger Protocol
FTP - File Transfer Protocol
FTP-DATA - File Transfer Protocol Data
GGP - Gateway Gateway Protocol
GRAPHICS - Graphics Protocol
HMP - Host Monitoring Protocol
HOST2-NS - Host2 Name Server
HOSTNAME - Hostname Protocol
<span class="grey">Reynolds & Postel [Page 58]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-59" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
ICMP - Internet Control Message Protocol
IGMP - Internet Group Management Protocol
IGP - Interior Gateway Protocol
IMAP2 - Interim Mail Access Protocol version 2
INGRES-NET - INGRES-NET Service
IP - Internet Protocol
IPCU - Internet Packet Core Utility
IPPC - Internet Pluribus Packet Core
IP-ARC - Internet Protocol on ARCNET
IP-ARPA - Internet Protocol on ARPANET
IP-DC - Internet Protocol on DC Networks
IP-DVMRP - Distance Vector Multicast Routing Protocol
IP-E - Internet Protocol on Ethernet Networks
IP-EE - Internet Protocol on Exp. Ethernet Nets
IP-FDDI - Transmission of IP over FDDI
IP-HC - Internet Protocol on Hyperchannnel
IP-IEEE - Internet Protocol on IEEE 802
IP-IPX - Transmission of 802.2 over IPX Networks
IP-MTU - IP MTU Discovery Options
IP-NETBIOS - Internet Protocol Datagrams over NetBIOS Networks
IP-SLIP - Transmission of IP over Serial Lines
IP-WB - Internet Protocol on Wideband Network
IP-X25 - Internet Protocol on X.25 Networks
IRTP - Internet Reliable Transaction Protocol
ISI-GL - ISI Graphics Language Protocol
ISO-TP4 - ISO Transport Protocol Class 4
ISO-TSAP - ISO TSAP
LA-MAINT - IMP Logical Address Maintenance
LARP - Locus Address Resoultion Protocol
LDP - Loader Debugger Protocol
LEAF-1 - Leaf-1 Protocol
LEAF-2 - Leaf-2 Protocol
LINK - Link Protocol
LOC-SRV - Location Service
LOGIN - Login Host Protocol
MAIL - Format of Electronic Mail Messages
MERIT-INP - MERIT Internodal Protocol
METAGRAM - Metagram Relay
MIB - Management Information Base
MIT-ML-DEV - MIT ML Device
MFE-NSP - MFE Network Services Protocol
MIT-SUBNET - MIT Subnet Support
MIT-DOV - MIT Dover Spooler
MPM - Internet Message Protocol (Multimedia Mail)
MPM-FLAGS - MPM Flags Protocol
MPM-SND - MPM Send Protocol
MSG-AUTH - MSG Authentication Protocol
MSG-ICP - MSG ICP Protocol
<span class="grey">Reynolds & Postel [Page 59]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-60" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
MUX - Multiplexing Protocol
NAMESERVER - Host Name Server
NETBIOS-DGM - NETBIOS Datagram Service
NETBIOS-NS - NETBIOS Name Service
NETBIOS-SSN - NETBIOS Session Service
NETBLT - Bulk Data Transfer Protocol
NETED - Network Standard Text Editor
NETRJS - Remote Job Service
NI-FTP - NI File Transfer Protocol
NI-MAIL - NI Mail Protocol
NICNAME - Who Is Protocol
NFILE - A File Access Protocol
NNTP - Network News Transfer Protocol
NSW-FE - NSW User System Front End
NTP - Network Time Protocol
NVP-II - Network Voice Protocol
OSPF - Open Shortest Path First Interior GW Protocol
PCMAIL - Pcmail Transport Protocol
POP2 - Post Office Protocol - Version 2
POP3 - Post Office Protocol - Version 3
PPP - Point-to-Point Protocol
PRM - Packet Radio Measurement
PUP - PUP Protocol
PWDGEN - Password Generator Protocol
QUOTE - Quote of the Day Protocol
RARP - A Reverse Address Resolution Protocol
RATP - Reliable Asynchronous Transfer Protocol
RDP - Reliable Data Protocol
RIP - Routing Information Protocol
RJE - Remote Job Entry
RLP - Resource Location Protocol
RTELNET - Remote Telnet Service
RVD - Remote Virtual Disk Protocol
SAT-EXPAK - Satnet and Backroom EXPAK
SAT-MON - SATNET Monitoring
SEP - Sequential Exchange Protocol
SFTP - Simple File Transfer Protocol
SGMP - Simple Gateway Monitoring Protocol
SNMP - Simple Network Management Protocol
SMI - Structure of Management Information
SMTP - Simple Mail Transfer Protocol
SQLSRV - SQL Service
ST - Stream Protocol
STATSRV - Statistics Service
SU-MIT-TG - SU/MIT Telnet Gateway Protocol
SUN-RPC - SUN Remote Procedure Call
SUPDUP - SUPDUP Protocol
SUR-MEAS - Survey Measurement
<span class="grey">Reynolds & Postel [Page 60]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-61" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
SWIFT-RVF - Remote Virtual File Protocol
TACACS-DS - TACACS-Database Service
TACNEWS - TAC News
TCP - Transmission Control Protocol
TELNET - Telnet Protocol
TFTP - Trivial File Transfer Protocol
THINWIRE - Thinwire Protocol
TIME - Time Server Protocol
TP-TCP - ISO Transport Service on top of the TCP
TRUNK-1 - Trunk-1 Protocol
TRUNK-2 - Trunk-2 Protocol
UCL - University College London Protocol
UDP - User Datagram Protocol
NNTP - Network News Transfer Protocol
USERS - Active Users Protocol
UUCP-PATH - UUCP Path Service
VIA-FTP - VIA Systems-File Transfer Protocol
VISA - VISA Protocol
VMTP - Versatile Message Transaction Protocol
WB-EXPAK - Wideband EXPAK
WB-MON - Wideband Monitoring
XNET - Cross Net Debugger
XNS-IDP - Xerox NS IDP
<span class="grey">Reynolds & Postel [Page 61]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-62" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
TERMINAL TYPE NAMES
These are the Official Terminal Type Names. Their use is described in
<a href="./rfc930">RFC-930</a> [<a href="#ref-128" title=""Telnet Terminal Type Option"">128</a>]. The maximum length of a name is 40 characters.
A terminal names may be up to 40 characters taken from the set of upper-
case letters, digits, and the two punctuation characters hyphen and
slash. It must start with a letter, and end with a letter or digit.
ADDS-CONSUL-980 DATAMEDIA-1521
ADDS-REGENT-100 DATAMEDIA-2500
ADDS-REGENT-20 DATAMEDIA-3025
ADDS-REGENT-200 DATAMEDIA-3025A
ADDS-REGENT-25 DATAMEDIA-3045
ADDS-REGENT-40 DATAMEDIA-3045A
ADDS-REGENT-60 DATAMEDIA-DT80/1
ADDS-VIEWPOINT DATAPOINT-2200
ADDS-VIEWPOINT-60 DATAPOINT-3000
AED-512 DATAPOINT-3300
AMPEX-DIALOGUE-210 DATAPOINT-3360
AMPEX-DIALOGUE-80 DEC-DECWRITER-I
AMPEX-210 DEC-DECWRITER-II
AMPEX-230 DEC-GIGI
ANDERSON-JACOBSON-510 DEC-GT40
ANDERSON-JACOBSON-630 DEC-GT40A
ANDERSON-JACOBSON-832 DEC-GT42
ANDERSON-JACOBSON-841 DEC-LA120
ANN-ARBOR-AMBASSADOR DEC-LA30
ANSI DEC-LA36
ARDS DEC-LA38
BITGRAPH DEC-VT05
BUSSIPLEXER DEC-VT100
CALCOMP-565 DEC-VT101
CDC-456 DEC-VT102
CDI-1030 DEC-VT125
CDI-1203 DEC-VT131
C-ITOH-101 DEC-VT132
C-ITOH-50 DEC-VT200
C-ITOH-80 DEC-VT220
CLNZ DEC-VT240
COMPUCOLOR-II DEC-VT241
CONCEPT-100 DEC-VT300
CONCEPT-104 DEC-VT320
CONCEPT-108 DEC-VT340
DATA-100 DEC-VT50
DATA-GENERAL-6053 DEC-VT50H
DATAGRAPHIX-132A DEC-VT52
DATAMEDIA-1520 DEC-VT55
<span class="grey">Reynolds & Postel [Page 62]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-63" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
DEC-VT61 HP-2649A
DEC-VT62 IBM-1050
DELTA-DATA-5000 IBM-2741
DELTA-DATA-NIH-7000 IBM-3101
DELTA-TELTERM-2 IBM-3101-10
DIABLO-1620 IBM-3151
DIABLO-1640 IBM-3275-2
DIGILOG-333 IBM-3276-2
DTC-300S IBM-3276-3
DTC-382 IBM-3276-4
EDT-1200 IBM-3277-2
EXECUPORT-4000 IBM-3278-2
EXECUPORT-4080 IBM-3278-3
FACIT-TWIST-4440 IBM-3278-4
FREEDOM-100 IBM-3278-5
FREEDOM-110 IBM-3279-2
FREEDOM-200 IBM-3279-3
GENERAL-TERMINAL-100A IBM-5151
GENERAL-TERMINAL-101 IBM-5154
GIPSI-TX-M IBM-5081
GIPSI-TX-ME IBM-6153
GIPSI-TX-C4 IBM-6154
GIPSI-TX-C8 IBM-6155
GSI IBM-AED
HAZELTINE-1420 IBM-3278-2-E
HAZELTINE-1500 IBM-3278-3-E
HAZELTINE-1510 IBM-3278-4-E
HAZELTINE-1520 IBM-3278-5-E
HAZELTINE-1552 IBM-3279-2-E
HAZELTINE-2000 IBM-3279-3-E
HAZELTINE-ESPRIT IMLAC
HP-2392 INFOTON-100
HP-2621 INFOTON-400
HP-2621A INFOTONKAS
HP-2621P ISC-8001
HP-2623 LSI-ADM-1
HP-2626 LSI-ADM-11
HP-2626A LSI-ADM-12
HP-2626P LSI-ADM-2
HP-2627 LSI-ADM-20
HP-2640 LSI-ADM-22
HP-2640A LSI-ADM-220
HP-2640B LSI-ADM-3
HP-2645 LSI-ADM-31
HP-2645A LSI-ADM-3A
HP-2648 LSI-ADM-42
HP-2648A LSI-ADM-5
HP-2649 MEMOREX-1240
<span class="grey">Reynolds & Postel [Page 63]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-64" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
MICROBEE TELETEC-DATASCREEN
MICROTERM-ACT-IV TELETERM-1030
MICROTERM-ACT-V TELETYPE-33
MICROTERM-ERGO-301 TELETYPE-35
MICROTERM-MIME-1 TELETYPE-37
MICROTERM-MIME-2 TELETYPE-38
MICROTERM-ACT-5A TELETYPE-40
MICROTERM-TWIST TELETYPE-43
NEC-5520 TELEVIDEO-910
NETRONICS TELEVIDEO-912
NETWORK-VIRTUAL-TERMINAL TELEVIDEO-920
OMRON-8025AG TELEVIDEO-920B
PERKIN-ELMER-550 TELEVIDEO-920C
PERKIN-ELMER-1100 TELEVIDEO-925
PERKIN-ELMER-1200 TELEVIDEO-955
PERQ TELEVIDEO-950
PLASMA-PANEL TELEVIDEO-970
QUME-SPRINT-5 TELEVIDEO-975
QUME-101 TERMINET-1200
QUME-102 TERMINET-300
SOROC TI-700
SOROC-120 TI-733
SOUTHWEST-TECHNICAL-PRODUCTS-CT82 TI-735
SUN TI-743
SUPERBEE TI-745
SUPERBEE-III-M TI-800
TEC TYCOM
TEKTRONIX-4006 UNIVAC-DCT-500
TEKTRONIX-4010 VIDEO-SYSTEMS-1200
TEKTRONIX-4012 VIDEO-SYSTEMS-5000
TEKTRONIX-4013 VOLKER-CRAIG-303
TEKTRONIX-4014 VOLKER-CRAIG-303A
TEKTRONIX-4023 VOLKER-CRAIG-404
TEKTRONIX-4024 VISUAL-200
TEKTRONIX-4025 VISUAL-55
TEKTRONIX-4027 WYSE-30
TEKTRONIX-4105 WYSE-50
TEKTRONIX-4107 WYSE-60
TEKTRONIX-4110 WYSE-75
TEKTRONIX-4112 WYSE-85
TEKTRONIX-4113 XEROX-1720
TEKTRONIX-4114 XTERM
TEKTRONIX-4115 ZENITH-H19
TEKTRONIX-4125 ZENITH-Z29
TEKTRONIX-4404 ZENTEC-30
TELERAY-1061
TELERAY-3700
TELERAY-3800
<span class="grey">Reynolds & Postel [Page 64]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-65" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
DOCUMENTS
[<a id="ref-1">1</a>] Anderson, B., "TACACS User Identification Telnet Option",
<a href="./rfc927">RFC-927</a>, BBN, December 1984.
[<a id="ref-2">2</a>] BBN, "Specifications for the Interconnection of a Host and an
IMP", Report 1822, Bolt Beranek and Newman, Cambridge,
Massachusetts, revised, December 1981.
[<a id="ref-3">3</a>] BBN, "User Manual for TAC User Database Tool", Bolt Beranek
and Newman, September 1984.
[<a id="ref-4">4</a>] Ben-Artzi, Amatzia, "Network Management for TCP/IP Network: An
Overview", 3Com, May 1988.
[<a id="ref-5">5</a>] Bennett, C., "A Simple NIFTP-Based Mail System", IEN 169,
University College, London, January 1981.
[<a id="ref-6">6</a>] Bhushan, A., "A Report on the Survey Project", <a href="./rfc530">RFC-530</a>,
NIC 17375, June 1973.
[<a id="ref-7">7</a>] Bisbey, R., D. Hollingworth, and B. Britt, "Graphics Language
(version 2.1)", ISI/TM-80-18, Information Sciences Institute,
July 1980.
[<a id="ref-8">8</a>] Boggs, D., J. Shoch, E. Taft, and R. Metcalfe, "PUP: An
Internetwork Architecture", XEROX Palo Alto Research Center,
CSL-79-10, July 1979; also in IEEE Transactions on
Communication, Volume COM-28, Number 4, April 1980.
[<a id="ref-9">9</a>] Borman, D., Editor, "Telnet Linemode Option",
<a href="./rfc1116">RFC 1116</a>, Cray Research, Inc., August 1989.
[<a id="ref-10">10</a>] Braden, R., "NETRJS Protocol", <a href="./rfc740">RFC-740</a>, NIC 42423,
Information Sciences Institute, November 1977.
[<a id="ref-11">11</a>] Braden, R., and J. Postel, "Requirements for Internet
Gateways", <a href="./rfc1009">RFC-1009</a>, Obsoletes <a href="./rfc985">RFC-985</a>, Information Sciences
Institute, June 1987.
[<a id="ref-12">12</a>] Bressler, B., "Remote Job Entry Protocol", <a href="./rfc407">RFC-407</a>,
NIC 12112, October 1972.
[<a id="ref-13">13</a>] Bressler, R., "Inter-Entity Communication -- An Experiment",
<a href="./rfc441">RFC-441</a>, NIC 13773, January 1973.
[<a id="ref-14">14</a>] Butler, M., J. Postel, D. Chase, J. Goldberger, and
<span class="grey">Reynolds & Postel [Page 65]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-66" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
J. K. Reynolds, "Post Office Protocol - Version 2", <a href="./rfc937">RFC-937</a>,
Information Sciences Institute, February 1985.
[<a id="ref-15">15</a>] Case, J., M. Fedor, M. Schoffstall, and C. Davin,
"A Simple Network Management Protocol", <a href="./rfc1098">RFC-1098</a>,
(Obsoletes <a href="./rfc1067">RFC-1067</a>), University of Tennessee at
Knoxville, NYSERNet, Inc., Rensselaer Polytechnic
Institute, and MIT Laboratory for Computer Science,
April 1989.
[<a id="ref-16">16</a>] Cass, D., and M. Rose, "ISO Transport Services on Top of
the TCP", <a href="./rfc983">RFC-983</a>, NTRC, April 1986.
[<a id="ref-17">17</a>] Cheriton, D., "VMTP: Versatile Message Transaction
Protocol Specification", <a href="./rfc1045">RFC-1045</a>, pgs 103 & 104,
Stanford University, February 1988.
[<a id="ref-18">18</a>] Cisco Systems, "Gateway Server Reference Manual", Manual
Revision B, January 10, 1988.
[<a id="ref-19">19</a>] Clark, D., "PCMAIL: A Distributed Mail System for Personal
Computers", <a href="./rfc984">RFC-984</a>, MIT, May 1986.
[<a id="ref-20">20</a>] Clark, D., M. Lambert, and L. Zhang, "NETBLT: A Bulk Data
Transfer Protocol", <a href="./rfc969">RFC-969</a>, MIT Laboratory for Computer
Science, December 1985.
[<a id="ref-21">21</a>] Cohen, D., "On Holy Wars and a Plea for Peace", IEEE Computer
Magazine, October 1981.
[<a id="ref-22">22</a>] Cohen, D., "Specifications for the Network Voice Protocol",
<a href="./rfc741">RFC-741</a>, ISI/RR 7539, Information Sciences Institute,
March 1976.
[<a id="ref-23">23</a>] Cohen, D. and J. Postel, "Multiplexing Protocol", IEN 90,
Information Sciences Institute, May 1979.
[<a id="ref-24">24</a>] COMPASS, "Semi-Annual Technical Report", CADD-7603-0411,
Massachusetts Computer Associates, 4 March 1976. Also as,
"National Software Works, Status Report No. 1,"
RADC-TR-76-276, Volume 1, September 1976. And COMPASS. "Second
Semi-Annual Report," CADD-7608-1611, Massachusetts Computer
Associates, August 1976.
[<a id="ref-25">25</a>] Crispin, M., "Telnet Logout Option", Stanford University-AI,
<a href="./rfc727">RFC-727</a>, April 1977.
[<a id="ref-26">26</a>] Crispin, M., "Telnet SUPDUP Option", Stanford University-AI,
<span class="grey">Reynolds & Postel [Page 66]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-67" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
<a href="./rfc736">RFC-736</a>, October 1977.
[<a id="ref-27">27</a>] Crispin, M., "SUPDUP Protocol", <a href="./rfc734">RFC-734</a>, NIC 41953,
October 1977.
[<a id="ref-28">28</a>] Crocker, D., "Telnet Output Carriage-Return Disposition
Option", <a href="./rfc652">RFC-652</a>, October 1974.
[<a id="ref-29">29</a>] Crocker, D., "Telnet Output Formfeed Disposition Option",
<a href="./rfc655">RFC-655</a>, October 1974.
[<a id="ref-30">30</a>] Crocker, D., "Telnet Output Linefeed Disposition", <a href="./rfc658">RFC-658</a>,
October 1974.
[<a id="ref-31">31</a>] Crocker, D., "Telnet Output Horizontal Tab Disposition
Option", <a href="./rfc654">RFC-654</a>, October 1974.
[<a id="ref-32">32</a>] Crocker, D., "Telnet Output Horizontal Tabstops Option",
<a href="./rfc653">RFC-653</a>, October 1974.
[<a id="ref-33">33</a>] Crocker, D., "Telnet Output Vertical Tab Disposition Option",
<a href="./rfc657">RFC-657</a>, October 1974.
[<a id="ref-34">34</a>] Crocker, D., "Telnet Output Vertical Tabstops Option",
<a href="./rfc656">RFC-656</a>, October 1974.
[<a id="ref-35">35</a>] Crocker, D. and R. Gumpertz, "Revised Telnet Byte Marco
Option", <a href="./rfc735">RFC-735</a>, November 1977.
[<a id="ref-36">36</a>] Croft, B., and J. Gilmore, "BOOTSTRAP Protocol (BOOTP)",
<a href="./rfc951">RFC-951</a>, Stanford and SUN Microsytems, September 1985.
[<a id="ref-37">37</a>] Davin, J., J. Case, M. Fedor, and M. Schoffstall, "A Simple
Gateway Monitoring Protocol", <a href="./rfc1028">RFC-1028</a>, November 1987.
[<a id="ref-38">38</a>] Day, J., "Telnet Data Entry Terminal Option", <a href="./rfc732">RFC-732</a>,
September 1977.
[<a id="ref-39">39</a>] DCA, "3270 Display System Protocol", #1981-08.
[<a id="ref-40">40</a>] DDN Protocol Handbook, "Telnet Output Line Width Option",
NIC 50005, December 1985.
[<a id="ref-41">41</a>] DDN Protocol Handbook, "Telnet Output Page Size Option",
NIC 50005, December 1985.
[<a id="ref-42">42</a>] DDN Protocol Handbook, "Telnet Reconnection Option",
NIC 50005, December 1985.
<span class="grey">Reynolds & Postel [Page 67]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-68" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
[<a id="ref-43">43</a>] Deering, S., "Host Extensions for IP Multicasting",
<a href="./rfc1112">RFC-1112</a>, Obsoletes <a href="./rfc988">RFC-988</a>, <a href="./rfc1054">RFC-1054</a>, Stanford University,
August 1989.
[<a id="ref-44">44</a>] Elvy, M., and R. Nedved, "Network Mail Path Service", <a href="./rfc915">RFC-915</a>,
Harvard and CMU, July 1986.
[<a id="ref-45">45</a>] Feinler, E., editor, "DDN Protocol Handbook", Network
Information Center, SRI International, December 1985.
[<a id="ref-46">46</a>] Feinler, E., editor, "Internet Protocol Transition Workbook",
Network Information Center, SRI International, March 1982.
[<a id="ref-47">47</a>] Feinler, E. and J. Postel, eds., "ARPANET Protocol Handbook",
NIC 7104, for the Defense Communications Agency by SRI
International, Menlo Park, California, Revised January 1978.
[<a id="ref-48">48</a>] Finlayson, R., T. Mann, J. Mogul, and M. Theimer, "A Reverse
Address Resolution Protocol", <a href="./rfc903">RFC-903</a>, Stanford University,
June 1984.
[<a id="ref-49">49</a>] Forgie, J., "ST - A Proposed Internet Stream Protocol",
IEN 119, MIT Lincoln Laboratory, September 1979.
[<a id="ref-50">50</a>] Forsdick, H., "CFTP", Network Message, Bolt Beranek and
Newman, January 1982.
[<a id="ref-51">51</a>] Greenberg, B., "Telnet SUPDUP-OUTPUT Option", <a href="./rfc749">RFC-749</a>,
MIT-Multics, September 1978.
[<a id="ref-52">52</a>] Harrenstien, K., "Name/Finger", <a href="./rfc742">RFC-742</a>, NIC 42758,
SRI International, December 1977.
[<a id="ref-53">53</a>] Harrenstien, K., M. Stahl, and E. Feinler, "DOD Internet Host
Table Specification", <a href="./rfc952">RFC-952</a>, Obsoletes <a href="./rfc810">RFC-810</a>,
October 1985.
[<a id="ref-54">54</a>] Harrenstien, K., V. White, and E. Feinler, "Hostnames Server",
<a href="./rfc811">RFC-811</a>, SRI International, March 1982.
[<a id="ref-55">55</a>] Harrenstien, K., and V. White, "Nicname/Whois", <a href="./rfc812">RFC-812</a>,
SRI International, March 1982.
[<a id="ref-56">56</a>] Haverty, J., "XNET Formats for Internet Protocol Version 4",
IEN 158, October 1980.
[<a id="ref-57">57</a>] Hedrick, C., "Telnet Terminal Speed Option", <a href="./rfc1079">RFC-1079</a>,
Rutgers University, December 1988.
<span class="grey">Reynolds & Postel [Page 68]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-69" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
[<a id="ref-58">58</a>] Hedrick, C., "Telnet Remote Flow Control Option",
<a href="./rfc1080">RFC-1080</a>, Rutgers University, December 1988.
[<a id="ref-59">59</a>] Hinden, R., "A Host Monitoring Protocol", <a href="./rfc869">RFC-869</a>,
Bolt Beranek and Newman, December 1983.
[<a id="ref-60">60</a>] Hinden, R., and A. Sheltzer, "The DARPA Internet Gateway",
<a href="./rfc823">RFC-823</a>, September 1982.
[<a id="ref-61">61</a>] Hornig, C., "A Standard for the Transmission of IP Datagrams
over Ethernet Networks, <a href="./rfc894">RFC-894</a>, Symbolics, April 1984.
[<a id="ref-62">62</a>] Internet Activities Board, J. Postel, Editor, "IAB Official
Protocol Standards", <a href="./rfc1130">RFC-1130</a>, Internet Activities
October 1989.
[<a id="ref-63">63</a>] International Standards Organization, "ISO Transport Protocol
Specification - ISO DP 8073", <a href="./rfc905">RFC-905</a>, April 1984.
[<a id="ref-64">64</a>] International Standards Organization, "Protocol for Providing
the Connectionless-Mode Network Services", <a href="./rfc926">RFC-926</a>, ISO,
December 1984.
[<a id="ref-65">65</a>] Kantor, B., and P. Lapsley, "Network News Transfer Protocol",
<a href="./rfc977">RFC-977</a>, UC San Diego & UC Berkeley, February 1986.
[<a id="ref-66">66</a>] Kent, S., and J. Linn, "Privacy Enhancement for Internet
Electronic Mail: Part II -- Certificate-Based Key Management",
BBNCC and DEC, August 1989.
[<a id="ref-67">67</a>] Khanna, A., and A. Malis, "The ARPANET AHIP-E Host Access
Protocol (Enhanced AHIP)", <a href="./rfc1005">RFC-1005</a>, BBN Communications
Corporation, May 1987.
[<a id="ref-68">68</a>] Killian, E., "Telnet Send-Location Option", <a href="./rfc779">RFC-779</a>,
April 1981.
[<a id="ref-69">69</a>] Korb, J., "A Standard for the Transmission of IP Datagrams
Over Public Data Networks", <a href="./rfc877">RFC-877</a>, Purdue University,
September 1983.
[<a id="ref-70">70</a>] Levy, S., and T. Jacobson, "Telnet X.3 PAD Option", <a href="./rfc1053">RFC-1053</a>,
Minnesota Supercomputer Center, April 1988.
[<a id="ref-71">71</a>] Linn, J., "Privacy Enhancement for Internet Electronic
Mail: Part I: Message Encipherment and Authentication
Procedures", <a href="./rfc1113">RFC-1113</a>, Obsoletes <a href="./rfc989">RFC-989</a> and <a href="./rfc1040">RFC-1040</a>, DEC,
August 1989.
<span class="grey">Reynolds & Postel [Page 69]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-70" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
[<a id="ref-72">72</a>] Linn, J., "Privacy Enhancement for Internet Electronic
Mail: Part III -- Algorithms, Modes, and Identifiers",
<a href="./rfc1115">RFC-1115</a>, DEC, August 1989.
[<a id="ref-73">73</a>] Lottor, M., "Simple File Transfer Protocol", <a href="./rfc913">RFC-913</a>, MIT,
September 1984.
[<a id="ref-74">74</a>] M/A-COM Government Systems, "Dissimilar Gateway Protocol
Specification, Draft Version", Contract no. CS901145,
November 16, 1987.
[<a id="ref-75">75</a>] Marcy, G., "Telnet X Display Location Option", <a href="./rfc1096">RFC-1096</a>,
Carnegie Mellon University, March 1989.
[<a id="ref-76">76</a>] Malis, A., "Logical Addressing Implementation Specification",
BBN Report 5256, pp 31-36, May 1983.
[<a id="ref-77">77</a>] Malkin, G., "KNET/VM Command Message Protocol Functional
Overview", Spartacus, Inc., January 4, 1988.
[<a id="ref-78">78</a>] Metcalfe, R. M. and D. R. Boggs, "Ethernet: Distributed Packet
Switching for Local Computer Networks", Communications of the
ACM, 19 (7), pp 395-402, July 1976.
[<a id="ref-79">79</a>] Miller, T., "Internet Reliable Transaction Protocol", <a href="./rfc938">RFC-938</a>,
ACC, February 1985.
[<a id="ref-80">80</a>] Mills, D., "Network Time Protocol (Version 1), Specification
and Implementation", <a href="./rfc1059">RFC-1059</a>, University of Delaware,
July 1988.
[<a id="ref-81">81</a>] Mockapetris, P., "Domain Names - Concepts and
Facilities", <a href="./rfc1034">RFC-1034</a>, Obsoletes RFCs 882, 883, and
973, Information Sciences Institute, November 1987.
[<a id="ref-82">82</a>] Mockapetris, P., "Domain Names - Implementation and
Specification", <a href="./rfc1035">RFC-1035</a>, Obsoletes RFCs 882, 883, and
973, Information Sciences Institute, November 1987.
[<a id="ref-83">83</a>] Moy, J., "The OSPF Specification", <a href="./rfc1131">RFC 1131</a>, Proteon,
October 1989.
[<a id="ref-84">84</a>] Nedved, R., "Telnet Terminal Location Number Option", <a href="./rfc946">RFC-946</a>,
Carnegie-Mellon University, May 1985.
[<a id="ref-85">85</a>] NSW Protocol Committee, "MSG: The Interprocess Communication
Facility for the National Software Works", CADD-7612-2411,
Massachusetts Computer Associates, BBN 3237, Bolt Beranek and
<span class="grey">Reynolds & Postel [Page 70]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-71" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
Newman, Revised December 1976.
[<a id="ref-86">86</a>] Onions, J., and M. Rose, "ISO-TP0 bridge between TCP
and X.25", <a href="./rfc1086">RFC-1086</a>, Nottingham, TWG, December 1988.
[<a id="ref-87">87</a>] Partridge, C. and G. Trewitt, The High-Level Entity Management
System (HEMS), RFCs 1021, 1022, 1023, and 1024, BBN/NNSC,
Stanford, October, 1987.
[<a id="ref-88">88</a>] Plummer, D., "An Ethernet Address Resolution Protocol or
Converting Network Protocol Addresses to 48-bit Ethernet
Addresses for Transmission on Ethernet Hardware", <a href="./rfc826">RFC-826</a>,
MIT-LCS, November 1982.
[<a id="ref-89">89</a>] Postel, J., "Active Users", <a href="./rfc866">RFC-866</a>, Information
Sciences Institute, May 1983.
[<a id="ref-90">90</a>] Postel, J., and J. Reynolds, "A Standard for the Transmission
of IP Datagrams over IEEE 802 Networks", <a href="./rfc1042">RFC-1042</a>,
USC/Information Sciences Institute, February 1988.
[<a id="ref-91">91</a>] Postel, J., "A Standard for the Transmission of IP Datagrams
over Experimental Ethernet Networks, <a href="./rfc895">RFC-895</a>, Information
Sciences Institute, April 1984.
[<a id="ref-92">92</a>] Postel, J., "Character Generator Protocol", <a href="./rfc864">RFC-864</a>,
Information Sciences Institute, May 1983.
[<a id="ref-93">93</a>] Postel, J., "Daytime Protocol", <a href="./rfc867">RFC-867</a>, Information Sciences
Institute, May 1983.
[<a id="ref-94">94</a>] Postel, J., "Discard Protocol", <a href="./rfc863">RFC-863</a>, Information Sciences
Institute, May 1983.
[<a id="ref-95">95</a>] Postel, J., "Echo Protocol", <a href="./rfc862">RFC-862</a>, Information Sciences
Institute, May 1983.
[<a id="ref-96">96</a>] Postel, J. and J. Reynolds, "File Transfer Protocol", <a href="./rfc959">RFC-959</a>,
Information Sciences Institute, October 1985.
[<a id="ref-97">97</a>] Postel, J., "Internet Control Message Protocol - DARPA
Internet Program Protocol Specification", <a href="./rfc792">RFC-792</a>,
Information Sciences Institute, September 1981.
[<a id="ref-98">98</a>] Postel, J., "Internet Message Protocol", <a href="./rfc759">RFC-759</a>, IEN 113,
Information Sciences Institute, August 1980.
[<a id="ref-99">99</a>] Postel, J., "Name Server", IEN 116, Information Sciences
<span class="grey">Reynolds & Postel [Page 71]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-72" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
Institute, August 1979.
[<a id="ref-100">100</a>] Postel, J., "Quote of the Day Protocol", <a href="./rfc865">RFC-865</a>,
Information Sciences Institute, May 1983.
[<a id="ref-101">101</a>] Postel, J., "Remote Telnet Service", <a href="./rfc818">RFC-818</a>,
Information Sciences Institute, November 1982.
[<a id="ref-102">102</a>] Postel, J., "Simple Mail Transfer Protocol", <a href="./rfc821">RFC-821</a>,
Information Sciences Institute, August 1982.
[<a id="ref-103">103</a>] Postel, J., "Telnet End of Record Option", <a href="./rfc885">RFC-885</a>,
Information Sciences Institute, December 1983.
[<a id="ref-104">104</a>] Postel, J., "User Datagram Protocol", <a href="./rfc768">RFC-768</a>
Information Sciences Institute, August 1980.
[<a id="ref-105">105</a>] Postel, J., ed., "Internet Protocol - DARPA Internet Program
Protocol Specification", <a href="./rfc791">RFC-791</a>, Information Sciences
Institute, September 1981.
[<a id="ref-106">106</a>] Postel, J., ed., "Transmission Control Protocol - DARPA
Internet Program Protocol Specification", <a href="./rfc793">RFC-793</a>,
Information Sciences Institute, September 1981.
[<a id="ref-107">107</a>] Postel, J. and D. Crocker, "Remote Controlled Transmission and
Echoing Telnet Option", <a href="./rfc726">RFC-726</a>, March 1977.
[<a id="ref-108">108</a>] Postel, J., and K. Harrenstien, "Time Protocol", <a href="./rfc868">RFC-868</a>,
Information Sciences Institute, May 1983.
[<a id="ref-109">109</a>] Postel, J. and J. Reynolds, "Telnet Extended Options - List
Option", <a href="./rfc861">RFC-861</a>, Information Sciences Institute, May 1983.
[<a id="ref-110">110</a>] Postel, J. and J. Reynolds, "Telnet Binary Transmission",
<a href="./rfc856">RFC-856</a>, Information Sciences Institute, May 1983.
[<a id="ref-111">111</a>] Postel, J. and J. Reynolds, "Telnet Echo Option", <a href="./rfc857">RFC-857</a>,
Information Sciences Institute, May 1983.
[<a id="ref-112">112</a>] Postel, J., and J. Reynolds, "Telnet Protocol Specification",
<a href="./rfc854">RFC-854</a>, Information Sciences Institute, May 1983.
[<a id="ref-113">113</a>] Postel, J. and J. Reynolds, "Telnet Status Option", <a href="./rfc859">RFC-859</a>,
Information Sciences Institute, May 1983.
[<a id="ref-114">114</a>] Postel, J. and J. Reynolds, "Telnet Suppress Go Ahead Option",
<a href="./rfc858">RFC-858</a>, Information Sciences Institute, May 1983.
<span class="grey">Reynolds & Postel [Page 72]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-73" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
[<a id="ref-115">115</a>] Postel, J. and J. Reynolds, "Telnet Timing Mark Option",
<a href="./rfc860">RFC-860</a>, Information Sciences Institute, May 1983.
[<a id="ref-116">116</a>] Rekhter, J., "Telnet 3270 Regime Option", <a href="./rfc1041">RFC-1041</a>,
IBM, January 1988.
[<a id="ref-117">117</a>] Reynolds, J., "BOOTP Vendor Information Extensions",
<a href="./rfc1084">RFC 1084</a>, Information Sciences Institute, December 1988.
[<a id="ref-118">118</a>] Reynolds, J. and J. Postel, "Official Internet Protocols",
<a href="./rfc1011">RFC-1011</a>, USC/Information Sciences Institute, May 1987.
[<a id="ref-119">119</a>] Romano, S., M. Stahl, and M. Recker, "Internet Numbers",
<a href="./rfc1117">RFC-1117</a>, SRI-NIC, August 1989.
[<a id="ref-120">120</a>] Rose, M., and K. McCloghrie, "Structure and Identification of
Management Information for TCP/IP-based internets", <a href="./rfc1065">RFC-1065</a>,
TWG, August 1988.
[<a id="ref-121">121</a>] Rose, M., and K. McCloghrie, "Management Information Base for
Network Management of TCP/IP-based internets", <a href="./rfc1066">RFC-1066</a>,
TWG, August 1988.
[<a id="ref-122">122</a>] Rose, M., "Post Office Protocol - Version 3", <a href="./rfc1081">RFC-1081</a>,
TWG, November 1988.
[<a id="ref-123">123</a>] Seamonson, L. J., and E. C. Rosen, "STUB" Exterior Gateway
Protocol", <a href="./rfc888">RFC-888</a>, BBN Communications Corporation,
January 1984.
[<a id="ref-124">124</a>] Shuttleworth, B., "A Documentary of MFENet, a National
Computer Network", UCRL-52317, Lawrence Livermore Labs,
Livermore, California, June 1977.
[<a id="ref-125">125</a>] Silverman, S., "Output Marking Telnet Option", <a href="./rfc933">RFC-933</a>, MITRE,
January 1985.
[<a id="ref-126">126</a>] Sollins, K., "The TFTP Protocol (Revision 2)", <a href="./rfc783">RFC-783</a>,
MIT/LCS, June 1981.
[<a id="ref-127">127</a>] Solomon, M., L. Landweber, and D. Neuhengen, "The CSNET Name
Server", Computer Networks, v.6, n.3, pp. 161-172, July 1982.
[<a id="ref-128">128</a>] Solomon, M., and E. Wimmers, "Telnet Terminal Type Option",
<a href="./rfc930">RFC-930</a>, Supercedes <a href="./rfc884">RFC-884</a>, University of Wisconsin, Madison,
January 1985.
[<a id="ref-129">129</a>] Sproull, R., and E. Thomas, "A Networks Graphics Protocol",
<span class="grey">Reynolds & Postel [Page 73]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-74" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
NIC 24308, August 1974.
[<a id="ref-130">130</a>] St. Johns, M., "Authentication Service", <a href="./rfc931">RFC-931</a>, TPSC,
January 1985.
[<a id="ref-131">131</a>] Tappan, D., "The CRONUS Virtual Local Network", <a href="./rfc824">RFC-824</a>,
Bolt Beranek and Newman, August 1982.
[<a id="ref-132">132</a>] Taylor, J., "ERPC Functional Specification", Version 1.04,
HYDRA Computer Systems, Inc., July 1984.
[<a id="ref-133">133</a>] "The Ethernet, A Local Area Network: Data Link Layer and
Physical Layer Specification", AA-K759B-TK, Digital Equipment
Corporation, Maynard, MA. Also as: "The Ethernet - A Local
Area Network", Version 1.0, Digital Equipment Corporation,
Intel Corporation, Xerox Corporation, September 1980. And:
"The Ethernet, A Local Area Network: Data Link Layer and
Physical Layer Specifications", Digital, Intel and Xerox,
November 1982. And: XEROX, "The Ethernet, A Local Area
Network: Data Link Layer and Physical Layer Specification",
X3T51/80-50, Xerox Corporation, Stamford, CT., October 1980.
[<a id="ref-134">134</a>] The High Level Protocol Group, "A Network Independent File
Transfer Protocol", INWG Protocol Note 86, December 1977.
[<a id="ref-135">135</a>] Thomas, Bob, "The Interhost Protocol to Support CRONUS/DIAMOND
Interprocess Communication", BBN, September 1983.
[<a id="ref-136">136</a>] Tovar, "Telnet Extended ASCII Option", <a href="./rfc698">RFC-698</a>, Stanford
University-AI, July 1975.
[<a id="ref-137">137</a>] Uttal, J., J. Rothschild, and C. Kline, "Transparent
Integration of UNIX and MS-DOS", Locus Computing Corporation.
[<a id="ref-138">138</a>] Velten, D., R. Hinden, and J. Sax, "Reliable Data Protocol",
<a href="./rfc908">RFC-908</a>, BBN Communications Corporation, July 1984.
[<a id="ref-139">139</a>] Waitzman, D., "Telnet Window Size Option", <a href="./rfc1073">RFC-1073</a>,
BBN STC, October, 1988.
[<a id="ref-140">140</a>] Waitzman, D., C. Partridge, and S. Deering
"Distance Vector Multicast Routing Protocol", <a href="./rfc1075">RFC-1075</a>,
BBN STC and Stanford University, November 1988.
[<a id="ref-141">141</a>] Wancho, F., "Password Generator Protocol", <a href="./rfc972">RFC-972</a>, WSMR,
January 1986.
[<a id="ref-142">142</a>] Warrier, U., and L. Besaw, "The Common Management
<span class="grey">Reynolds & Postel [Page 74]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-75" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
Information Services and Protocol over TCP/IP (CMOT)",
<a href="./rfc1095">RFC-1095</a>, Unisys Corp. and Hewlett-Packard, April 1989.
[<a id="ref-143">143</a>] Welch, B., "The Sprite Remote Procedure Call System",
Technical Report, UCB/Computer Science Dept., 86/302,
University of California at Berkeley, June 1986.
[<a id="ref-144">144</a>] Xerox, "Courier: The Remote Procedure Protocol", XSIS 038112,
December 1981.
[<a id="ref-145">145</a>] Yasuda, A., and T. Thompson, "TELNET Data Entry Terminal
Option DODIIS Implementation", <a href="./rfc1043">RFC-1043</a>, DIA, February 1988.
<span class="grey">Reynolds & Postel [Page 75]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-76" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
PEOPLE
[<a id="ref-AB20">AB20</a>] Art Berggreen ACC art@SALT.ACC.ARPA
[<a id="ref-ABB2">ABB2</a>] A. Blasco Bonito CNUCE blasco@ICNUCEVM.CNUCE.CNR.IT
[<a id="ref-AD14">AD14</a>] Annette DeSchon ISI DESCHON@ISI.EDU
[<a id="ref-AGM">AGM</a>] Andy Malis BBN Malis@BBN.COM
[<a id="ref-AKH5">AKH5</a>] Arthur Hartwig UQNET
munnari!wombat.decnet.uq.oz.au!ccarthur@UUNET.UU.NET
[<a id="ref-ANM2">ANM2</a>] April N. Marine SRI APRIL@NIC.DDN.MIL
[<a id="ref-AW90">AW90</a>] Amanda Walker Intercon AMANDA@INTERCON.COM
[<a id="ref-AXB">AXB</a>] Albert G. Broscius UPENN broscius@DSL.CIS.UPENN.EDU
[<a id="ref-AXB1">AXB1</a>] Amatzia Ben-Artzi ---none---
[<a id="ref-AXC">AXC</a>] Andrew Cherenson SGI arc@SGI.COM
[<a id="ref-AXC1">AXC1</a>] Anthony Chung Sytek
sytek!syteka!anthony@HPLABS.HP.COM
[<a id="ref-AXC2">AXC2</a>] Asheem Chandna AT&T ac0@mtuxo.att.com
[<a id="ref-AXM">AXM</a>] Alex Martin Retix ---none---
[<a id="ref-AXS">AXS</a>] Arthur Salazar Locus lcc.arthur@SEAS.UCLA.EDU
[<a id="ref-BA4">BA4</a>] Brian Anderson BBN baanders@CCQ.BBN.COM
[<a id="ref-BB257">BB257</a>] Brian W. Brown SynOptics BBROWN@MVIS1.SYNOPTICS.COM
[<a id="ref-BCH2">BCH2</a>] Barry Howard LLL Howard@NMFECC.ARPA
[<a id="ref-BCN">BCN</a>] Clifford B. Newman UWASH bcn@CS.WASHINGTON.EDU
[<a id="ref-BD70">BD70</a>] Bernd Doleschal SEL Doleschal@A.ISI.EDU
[<a id="ref-BH144">BH144</a>] Bridget Halsey Banyan bah@BANYAN.BANYAN.COM
[<a id="ref-BJR2">BJR2</a>] Bill Russell NYU russell@cmcl2.NYU.EDU
[<a id="ref-BKR">BKR</a>] Brian Reid DEC reid@DECWRL.DEC.COM
<span class="grey">Reynolds & Postel [Page 76]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-77" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
[<a id="ref-BP52">BP52</a>] Brad Parker CAYMAN brad@cayman.Cayman.COM
[<a id="ref-BS221">BS221</a>] Bob Stewart Xyplex STEWART@XYPLEX.COM
[<a id="ref-BWB6">BWB6</a>] Barry Boehm DARPA boehm@DARPA.MIL
[<a id="ref-BXA">BXA</a>] Bill Anderson MITRE wda@MITRE-BEDFORD.ORG
[<a id="ref-BXB">BXB</a>] Brad Benson Touch ---none---
[<a id="ref-BXE">BXE</a>] Brian A. Ehrmantraut Auspex Systems bae@auspex.com
[<a id="ref-BXH">BXH</a>] Brian Horn Locus ---none---
[<a id="ref-BXL">BXL</a>] Brian Lloyd SIRIUS ---none---
[<a id="ref-BXN">BXN</a>] Bill Norton Merit wbn@MERIT.EDU
[<a id="ref-BXV">BXV</a>] Bill Versteeg NRC bvs@NRC.COM
[<a id="ref-BXW">BXW</a>] Brent Welch Sprite
brent%sprite.berkeley.edu@GINGER.BERKELEY.EDU
[<a id="ref-BXW1">BXW1</a>] Bruce Willins Raycom ---none---
[<a id="ref-BXZ">BXZ</a>] Bob Zaniolo Reuter ---none---
[<a id="ref-CLH3">CLH3</a>] Charles Hedrick RUTGERS HEDRICK@ARAMIS.RUTGERS.EDU
[<a id="ref-CMR">CMR</a>] Craig Rogers ISI Rogers@ISI.EDU
[<a id="ref-CXM">CXM</a>] Charles Marker II MIPS marker@MIPS.COM
[<a id="ref-CXT">CXT</a>] Christopher Tengi Princeton tengi@Princeton.EDU
[<a id="ref-DAG4">DAG4</a>] David A. Gomberg MITRE gomberg@GATEWAY.MITRE.ORG
[<a id="ref-DB14">DB14</a>] Dave Borman Cray dab@CRAY.COM
[<a id="ref-DC126">DC126</a>] Dick Cogger Cornell rhx@CORNELLC.CIT.CORNELL.EDU
[<a id="ref-DCP1">DCP1</a>] David Plummer MIT DCP@SCRC-QUABBIN.ARPA
[<a id="ref-DDC1">DDC1</a>] David Clark MIT ddc@LCS.MIT.EDU
[<a id="ref-DJK13">DJK13</a>] David Kaufman DeskTalk ---none---
[<a id="ref-DLM1">DLM1</a>] David Mills LINKABIT Mills@HUEY.UDEL.EDU
<span class="grey">Reynolds & Postel [Page 77]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-78" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
[<a id="ref-DM28">DM28</a>] Dennis Morris DCA Morrisd@IMO-UVAX.DCA.MIL
[<a id="ref-DM280">DM280</a>] Dave Mackie NCD lupine!djm@UUNET.UU.NET
[<a id="ref-DM354">DM354</a>] Don McWilliam UBC mcwillm@CC.UBC.CA
[<a id="ref-DPR">DPR</a>] David Reed MIT-LCS Reed@MIT-MULTICS.ARPA
[<a id="ref-DRC3">DRC3</a>] Dave Cheriton STANFORD
cheriton@PESCADERO.STANFORD.EDU
[<a id="ref-DT15">DT15</a>] Daniel Tappan BBN Tappan@BBN.COM
[<a id="ref-DW181">DW181</a>] David Wolfe SRI ctabka@TSCA.ISTC.SRI.COM
[<a id="ref-DW183">DW183</a>] David Waitzman BBN dwaitzman@BBN.COM
[<a id="ref-DXB">DXB</a>] Dave Buehmann Intergraph ingr!daveb@UUNET.UU.NET
[<a id="ref-DXD">DXD</a>] Dennis J.W. Dube VIA SYSTEMS ---none---
[<a id="ref-DXG">DXG</a>] David Goldberg SMI sun!dg@UCBARPA.BERKELEY.EDU
[<a id="ref-DXK">DXK</a>] Doug Karl OSU
KARL-D@OSU-20.IRCC.OHIO-STATE.EDU
[<a id="ref-DXM">DXM</a>] Didier Moretti Ungermann-Bass ---none---
[<a id="ref-DXM1">DXM1</a>] Donna McMalster David Systems ---none---
[<a id="ref-DXP">DXP</a>] Dave Preston CMC ---none---
[<a id="ref-DY26">DY26</a>] Dennis Yaro SUN yaro@SUN.COM
[<a id="ref-EAK4">EAK4</a>] Earl Killian LLL EAK@MORDOR.S1.GOV
[<a id="ref-EBM">EBM</a>] Eliot Moss MIT EBM@XX.LCS.MIT.EDU
[<a id="ref-EP53">EP53</a>] Eric Peterson Locus lcc.eric@SEAS.UCLA.EDU
[<a id="ref-EXC">EXC</a>] Ed Cain DCA cain@edn-unix.dca.mil
[<a id="ref-EXR">EXR</a>] Eric Rubin FiberCom err@FIBERCOM.COM
[<a id="ref-EXR1">EXR1</a>] Efrat Ramati Lannet Co. ---none---
[<a id="ref-FB77">FB77</a>] Fred Baker Vitalink baker%vitam6@UUNET.UU.NET
<span class="grey">Reynolds & Postel [Page 78]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-79" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
[<a id="ref-FJK2">FJK2</a>] Frank Kastenholz Interlan KASTEN@MITVMA.MIT.EDU
[<a id="ref-FJW">FJW</a>] Frank J. Wancho WSMR WANCHO@SIMTEL20.ARPA
[<a id="ref-FXB1">FXB1</a>] Felix Burton DIAB FB@DIAB.SE
[<a id="ref-GAL5">GAL5</a>] Guillermo A. Loyola IBM LOYOLA@IBM.COM
[<a id="ref-GB7">GB7</a>] Gerd Beling FGAN GBELING@ISI.EDU
[<a id="ref-GEOF">GEOF</a>] Geoff Goodfellow OSD Geoff@FERNWOOD.MPK.CA.US
[<a id="ref-GGB2">GGB2</a>] Geoff Baehr SUN geoffb@ENG.SUN.COM
[<a id="ref-GM23">GM23</a>] Glenn Marcy CMU Glenn.Marcy@A.CS.CMU.EDU
[<a id="ref-GS2">GS2</a>] Greg Satz cisco satz@CISCO.COM
[<a id="ref-GS123">GS123</a>] Geof Stone NSC geof@NETWORK.COM
[<a id="ref-GSM11">GSM11</a>] Gary S. Malkin Proteon gmalkin@PROTEON.COM
[<a id="ref-GXG">GXG</a>] Gil Greebaum Unisys gcole@nisd.cam.unisys.com
[<a id="ref-GXP">GXP</a>] Gill Pratt MIT gill%mit-ccc@MC.LCS.MIT.EDU
[<a id="ref-GXS">GXS</a>] Guenther Schreiner LINK
guenther%ira.uka.de@RELAY.CS.NET
[<a id="ref-GXT">GXT</a>] Glenn Trewitt STANFORD trewitt@AMADEUS.STANFORD.EDU
[<a id="ref-GXT1">GXT1</a>] Gene Tsudik USC tsudik@USC.EDU
[<a id="ref-GXW">GXW</a>] Glenn Waters Bell Northern gwaters@BNR.CA
[<a id="ref-HCF2">HCF2</a>] Harry Forsdick BBN Forsdick@BBN.COM
[<a id="ref-HS23">HS23</a>] Hokey Stenn Plus5 hokey@PLUS5.COM
[<a id="ref-HWB">HWB</a>] Hans-Werner Braun MICHIGAN HWB@MCR.UMICH.EDU
[<a id="ref-HXE">HXE</a>] Hunaid Engineer Cray hunaid@OPUS.CRAY.COM
[<a id="ref-HXK">HXK</a>] Henry Kaijak Gandalf ---none---
[<a id="ref-IEEE">IEEE</a>] Vince Condello IEEE ---none---
[<a id="ref-JAG">JAG</a>] James Gosling SUN JAG@SUN.COM
<span class="grey">Reynolds & Postel [Page 79]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-80" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
[<a id="ref-JB478">JB478</a>] Jonathan Biggar Netlabs jon@netlabs.com
[<a id="ref-JBP">JBP</a>] Jon Postel ISI Postel@ISI.EDU
[<a id="ref-JBW1">JBW1</a>] Joseph Walters, Jr. BBN JWalters@BBN.COM
[<a id="ref-JCB1">JCB1</a>] John Burruss BBN JBurruss@VAX.BBN.COM
[<a id="ref-JCM48">JCM48</a>] Jeff Mogul DEC mogul@DECWRL.DEC.COM
[<a id="ref-JD21">JD21</a>] Jonathan Dreyer BBN Dreyer@CCV.BBN.COM
[<a id="ref-JDC20">JDC20</a>] Jeffrey Case UTK case@UTKUX1.UTK.EDU
[<a id="ref-JFH2">JFH2</a>] Jack Haverty BBN JHaverty@BBN.COM
[<a id="ref-JFW">JFW</a>] Jon F. Wilkes STC Wilkes@CCINT1.RSRE.MOD.UK
[<a id="ref-JGH">JGH</a>] Jim Herman BBN Herman@CCJ.BBN.COM
[<a id="ref-JJB25">JJB25</a>] John Bowe BBN jbowe@PINEAPPLE.BBN.COM
[<a id="ref-JKR1">JKR1</a>] Joyce K. Reynolds ISI JKRey@ISI.EDU
[<a id="ref-JR35">JR35</a>] Jon Rochlis MIT jon@ATHENA.MIT.EDU
[<a id="ref-JRL3">JRL3</a>] John LoVerso Xylogics loverso@XYLOGICS.COM
[<a id="ref-JS28">JS28</a>] John A. Shriver Proteon jas@PROTEON.COM
[<a id="ref-JTM4">JTM4</a>] John Moy Proteon jmoy@PROTEON.COM
[<a id="ref-JWF">JWF</a>] Jim Forgie MIT/LL FORGIE@XN.LL.MIT.EDU
[<a id="ref-JXB">JXB</a>] Jeffrey Buffun Apollo jbuffum@APOLLO.COM
[<a id="ref-JXC">JXC</a>] John Cook Chipcom cook@chipcom.com
[<a id="ref-JXE2">JXE2</a>] Jeanne Evans UKMOD JME%RSRE.MOD.UK@CS.UCL.AC.UK
[<a id="ref-JXF">JXF</a>] Josh Fielk Optical Data Systems ---none---
[<a id="ref-JXG">JXG</a>] Jerry Geisler Boeing ---none---
[<a id="ref-JXG1">JXG1</a>] Jim Greuel HP jimg%hpcndpc@hplabs.hp.com
[<a id="ref-JXH">JXH</a>] Jeff Honig Cornell jch@sonne.tn.cornell.edu
<span class="grey">Reynolds & Postel [Page 80]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-81" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
[<a id="ref-JXH1">JXH1</a>] Jim Hayes Apple Hayes@APPLE.COM
[<a id="ref-JXI">JXI</a>] Jon Infante ICL ---none---
[<a id="ref-JXM">JXM</a>] Joseph Murdock Network Resources Corporation
---none---
[<a id="ref-JXO">JXO</a>] Jack O'Neil ENCORE ---none---
[<a id="ref-JXO1">JXO1</a>] Jerrilynn Okamura Ontologic ---none---
[<a id="ref-JXO2">JXO2</a>] Jarkko Oikarinen Tolsun jto@TOLSUN.OULU.FI
[<a id="ref-JXP">JXP</a>] Joe Pato Apollo apollo!pato@EDDIE.MIT.EDU
[<a id="ref-JXR">JXR</a>] Jacob Rekhter IBM Yakov@IBM.COM
[<a id="ref-JXS">JXS</a>] Jim Stevens Rockwell Stevens@ISI.EDU
[<a id="ref-JXS1">JXS1</a>] John Sancho CastleRock ---none---
[<a id="ref-KAA">KAA</a>] Ken Adelman TGV, Inc. Adelman@TGV.COM
[<a id="ref-KA4">KA4</a>] Karl Auerbach Epilogue auerbach@csl.sri.com
[<a id="ref-KH43">KH43</a>] Kathy Huber BBN khuber@bbn.com
[<a id="ref-KLH">KLH</a>] Ken Harrenstien SRI KLH@NIC.DDN.MIL
[<a id="ref-KR35">KR35</a>] Keith Reynolds SCO keithr@SCO.COM
[<a id="ref-KSL">KSL</a>] Kirk Lougheed cisco LOUGHEED@MATHOM.CISCO.COM
[<a id="ref-KXD">KXD</a>] Kevin DeVault NI ---none---
[<a id="ref-KXS">KXS</a>] Keith Sklower Berkeley sklower@okeeffe.berkeley.edu
[<a id="ref-KXW">KXW</a>] Ken Whitfield MCNC ken@MCNC.ORG
[<a id="ref-KZM">KZM</a>] Keith McCloghrie TWG kzm@TWG.ARPA
[<a id="ref-LL69">LL69</a>] Lawrence Lebahn DIA DIA3@PAXRV-NES.NAVY.MIL
[<a id="ref-LLP">LLP</a>] Larry Peterson ARIZONA llp@ARIZONA.EDU
[<a id="ref-LXE">LXE</a>] Len Edmondson SUN len@TOPS.SUN.COM
[<a id="ref-LXF">LXF</a>] Larry Fischer DSS lfischer@dss.com
<span class="grey">Reynolds & Postel [Page 81]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-82" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
[<a id="ref-LXH">LXH</a>] Leo Hourvitz NeXt leo@NEXT.COM
[<a id="ref-MA">MA</a>] Mike Accetta CMU MIKE.ACCETTA@CMU-CS-A.EDU
[<a id="ref-MARY">MARY</a>] Mary K. Stahl SRI Stahl@NIC.DDN.MIL
[<a id="ref-MAR10">MAR10</a>] Mark A. Rosenstein MIT mar@ATHENA.MIT.EDU
[<a id="ref-MB">MB</a>] Michael Brescia BBN Brescia@CCV.BBN.COM
[<a id="ref-MBG">MBG</a>] Michael Greenwald SYMBOLICS
Greenwald@SCRC-STONY-BROOK.ARPA
[<a id="ref-MCSJ">MCSJ</a>] Mike StJohns TPSC StJohns@MIT-MULTICS.ARPA
[<a id="ref-ME38">ME38</a>] Marc A. Elvy Marble ELVY@CARRARA.MARBLE.COM
[<a id="ref-MKL">MKL</a>] Mark Lottor SRI MKL@NIC.DDN.MIL
[<a id="ref-ML109">ML109</a>] Mike Little MACOM little@MACOM4.ARPA
[<a id="ref-MLS34">MLS34</a>] L. Michael Sabo TMAC darth!eniac!sabo@Sun.Com
[<a id="ref-MO2">MO2</a>] Michael O'Brien AEROSPACE obrien@AEROSPACE.AERO.ORG
[<a id="ref-MRC">MRC</a>] Mark Crispin Simtel MRC@SIMTEL20.ARPA
[<a id="ref-MS9">MS9</a>] Marty Schoffstahl Nysernet schoff@NISC.NYSER.NET
[<a id="ref-MS56">MS56</a>] Marvin Solomon WISC solomon@CS.WISC.EDU
[<a id="ref-MXB">MXB</a>] Mike Berrow Relational Technology ---none---
[<a id="ref-MXB1">MXB1</a>] Mike Burrows DEC burrows@SRC.DEC.COM
[<a id="ref-MXL">MXL</a>] Mark L. Lambert MIT markl@PTT.LCS.MIT.EDU
[<a id="ref-MXP">MXP</a>] Martin Picard Oracle ---none---
[<a id="ref-MXS">MXS</a>] Mike Spina Prime
WIZARD%enr.prime.com@RELAY.CS.NET
[<a id="ref-MXW">MXW</a>] Michael Waters EON ---none---
[<a id="ref-NC3">NC3</a>] J. Noel Chiappa MIT JNC@XX.LCS.MIT.EDU
[<a id="ref-NT12">NT12</a>] Neil Todd IST
mcvax!ist.co.uk!neil@UUNET.UU.NET
<span class="grey">Reynolds & Postel [Page 82]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-83" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
[<a id="ref-PAM6">PAM6</a>] Paul McNabb RICE pam@PURDUE.EDU
[<a id="ref-PCW">PCW</a>] C. Philip Wood LANL cpw@LANL.GOV
[<a id="ref-PD39">PD39</a>] Pete Delaney ECRC
pete%ecrcvax@CSNET-RELAY.ARPA
[<a id="ref-PHD1">PHD1</a>] Pieter Ditmars BBN pditmars@BBN.COM
[<a id="ref-PK">PK</a>] Peter Kirstein UCL Kirstein@NSS.CS.UCL.AC.UK
[<a id="ref-PL4">PL4</a>] Phil Lapsley BERKELEY phil@UCBARPA.BERKELEY.EDU
[<a id="ref-PM1">PM1</a>] Paul Mockapetris ISI PVM@ISI.EDU
[<a id="ref-PXK">PXK</a>] Philip Koch Dartmouth Philip.Koch@DARTMOUTH.EDU
[<a id="ref-RAM57">RAM57</a>] Rex Mann CDC ---none---
[<a id="ref-RDXS">RDXS</a>] R. Dwight Schettler HP rds%hpcndm@HPLABS.HP.COM
[<a id="ref-RH6">RH6</a>] Robert Hinden BBN Hinden@CCV.BBN.COM
[<a id="ref-RHT">RHT</a>] Robert Thomas BBN BThomas@F.BBN.COM
[<a id="ref-RN6">RN6</a>] Rudy Nedved CMU Rudy.Nedved@CMU-CS-A.EDU
[<a id="ref-RTB3">RTB3</a>] Bob Braden ISI Braden@ISI.EDU
[<a id="ref-RWS4">RWS4</a>] Robert W. Scheifler ARGUS RWS@XX.LCS.MIT.EDU
[<a id="ref-RXB">RXB</a>] Ramesh Babu Excelan
mtxinu!excelan!ramesh@UCBVAX.BERKELEY.EDU
[<a id="ref-RXB1">RXB1</a>] Ron Bhanukitsiri DEC rbhank@DECVAX.DEC.COM
[<a id="ref-RXC">RXC</a>] Rob Chandhok CMU chandhok@gnome.cs.cmu.edu
[<a id="ref-RXC1">RXC1</a>] Rick Carlos TI rick.ticipa.csc.ti.com
[<a id="ref-RXD">RXD</a>] Roger Dev Cabletron ---none---
[<a id="ref-RXD1">RXD1</a>] Ralph Droms NRI rdroms@NRI.RESTON.VA.US
[<a id="ref-RXH">RXH</a>] Reijane Huai Cheyenne sibal@CSD2.NYU.EDU
[<a id="ref-RXJ">RXJ</a>] Ronald Jacoby SGI rj@SGI.COM
<span class="grey">Reynolds & Postel [Page 83]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-84" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
[<a id="ref-RXM">RXM</a>] Robert Myhill BBN Myhill@CCS.BBN.COM
[<a id="ref-RXN">RXN</a>] Rina Nethaniel RND ---none---
[<a id="ref-RXS">RXS</a>] Ron Strich SSDS ---none---
[<a id="ref-RXT">RXT</a>] Ron Thornton GenRad thornton@qm7501.genrad.com
[<a id="ref-RXZ">RXZ</a>] Rayan Zachariassen Toronto rayan@AI.TORONTO.EDU
[<a id="ref-SA1">SA1</a>] Sten Andler IBM
andler.ibm-sj@RAND-RELAY.ARPA
[<a id="ref-SAF3">SAF3</a>] Stuart A. Friedberg UWISC stuart@CS.WISC.EDU
[<a id="ref-SB98">SB98</a>] Stan Barber BCM SOB@BCM.TMC.EDU
[<a id="ref-SC3">SC3</a>] Steve Casner ISI Casner@ISI.EDU
[<a id="ref-SGC">SGC</a>] Steve Chipman BBN Chipman@F.BBN.COM
[<a id="ref-SHB">SHB</a>] Steven Blumenthal BBN BLUMENTHAL@VAX.BBN.COM
[<a id="ref-SH37">SH37</a>] Sergio Heker JVNC heker@JVNCC.CSC.ORG
[<a id="ref-SL70">SL70</a>] Stuart Levy UMN slevy@UC.MSC.UMN.EDU
[<a id="ref-SRN1">SRN1</a>] Stephen Northcutt NSWC SNORTHC@RELAY-NSWC.NAVY.MIL
[<a id="ref-SS92">SS92</a>] Steve Schoch NASA SCHOCH@AMES.ARC.NASA.GOV
[<a id="ref-SXA">SXA</a>] Susie Armstrong XEROX Armstrong.wbst128@XEROX.COM
[<a id="ref-SXB">SXB</a>] Scott Bellows Purdue smb@cs.purdue.edu
[<a id="ref-SXC">SXC</a>] Steve Conklin Intergraph tesla!steve@ingr.com
[<a id="ref-SXD">SXD</a>] Steve Deering Stanford deering@PECASERO.STANFORD.EDU
[<a id="ref-SXH">SXH</a>] Steven Hunter LLNL hunter@CCC.MFECC.LLNL.GOV
[<a id="ref-SXK">SXK</a>] Skip Koppenhaver DAC stubby!skip@uunet.UU.NET
[<a id="ref-SXL">SXL</a>] Sam Lau Pirelli/Focom ---none---
[<a id="ref-SXP">SXP</a>] Sanand Patel Canstar sanand@HUB.TORONTO.EDU
[<a id="ref-SXS">SXS</a>] Steve Silverman MITRE Blankert@MITRE-GATEWAY.ORG
<span class="grey">Reynolds & Postel [Page 84]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-85" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
[<a id="ref-SXS1">SXS1</a>] Susie Snitzer Britton-Lee ---none---
[<a id="ref-SXW">SXW</a>] Steve Waldbusser CMU sw01+@andrew.cmu.edu
[<a id="ref-TB6">TB6</a>] Todd Baker 3COM tzb@BRIDGE2.3COM.COM
[<a id="ref-TC27">TC27</a>] Thomas Calderwood BBN TCALDERW@BBN.COM
[<a id="ref-TN">TN</a>] Thomas Narten Purdue narten@PURDUE.EDU
[<a id="ref-TU">TU</a>] Tom Unger UMich tom@CITI.UMICH.EDU
[<a id="ref-TXM">TXM</a>] Trudy Miller ACC Trudy@ACC.ARPA
[<a id="ref-TXR">TXR</a>] Tim Rylance Praxis praxis!tkr@UUNET.UU.NET
[<a id="ref-TXS">TXS</a>] Ted J. Socolofsky Spider Teds@SPIDER.CO.UK
[<a id="ref-UB3">UB3</a>] Ulf Bilting CHALMERS bilting@PURDUE.EDU
[<a id="ref-UW2">UW2</a>] Unni Warrier Netlabs unni@NETLABS.COM
[<a id="ref-VXS">VXS</a>] Vinod Singh Unify ---none---
[<a id="ref-VXT">VXT</a>] V. Taylor CANADA vktaylor@NCS.DND.CA
[<a id="ref-WDW11">WDW11</a>] William D. Wisner wisner@HAYES.FAI.ALASKA.EDU
[<a id="ref-WJC2">WJC2</a>] Bill Croft STANFORD Croft@SUMEX-AIM.STANFORD.EDU
[<a id="ref-WJS1">WJS1</a>] Weldon J. Showalter DCA Gamma@EDN-UNIX.ARPA
[<a id="ref-WLB8">WLB8</a>] William L. Biagi Advintech
CSS002.BLBIAGI@ADVINTECH-MVS.ARPA
[<a id="ref-WM3">WM3</a>] William Melohn SUN Melohn@SUN.COM
[<a id="ref-WXS">WXS</a>] Wayne Schroeder SDSC schroeder@SDS.SDSC.EDU
[<a id="ref-VXW">VXW</a>] Val Wilson Spider
cvax!spider.co.uk!val@uunet.UU.NET
[<a id="ref-YXK">YXK</a>] Yoav Kluger Spartacus ykluger@HAWK.ULOWELL.EDU
[<a id="ref-YXW">YXW</a>] Y.C. Wang Network Application Technology
---none---
[<a id="ref-XEROX">XEROX</a>] Fonda Pallone Xerox ---none---
<span class="grey">Reynolds & Postel [Page 85]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-86" ></span>
<span class="grey"><a href="./rfc1060">RFC 1060</a> Assigned Numbers March 1990</span>
[<a id="ref-ZSU">ZSU</a>] Zaw-Sing Su SRI ZSu@TSCA.ISTC.SRI.COM
Security Considerations
Security issues are not discussed in this memo.
Authors' Addresses:
Joyce K. Reynolds
University of Southern California
Information Sciences Institute
4676 Admiralty Way
Marina del Rey, CA 90292
Phone: (213) 822-1511
Email: JKREY@ISI.EDU
Jon Postel
University of Southern California
Information Sciences Institute
4676 Admiralty Way
Marina del Rey, CA 90292
Phone: (213) 822-1511
Email: POSTEL@ISI.EDU
Reynolds & Postel [Page 86]
</pre>
|