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
|
<pre>Network Working Group J. Reynolds
Request for Comments: 1010 J. Postel
ISI
Obsoletes RFCs: <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>, May 1987
<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, 503, 433, 349
Obsoletes IENs: 127, 117, 93
<span class="h1">ASSIGNED NUMBERS</span>
Status of this Memo
This memo is an official status report on the numbers used in
protocols in the Internet community. Distribution of this memo is
unlimited.
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 Joyce Reynolds. If you are developing a protocol or application
that will require the use of a link, socket, port, protocol, etc.,
please contact Joyce to receive a number assignment.
Joyce K. Reynolds
USC - Information Sciences Institute
4676 Admiralty Way
Marina del Rey, California 90292-6695
Phone: (213) 822-1511
Electronic mail: JKREYNOLDS@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-91" title=""Official Internet Protocols"">91</a>]. The more prominent and more generally used are
documented in the "DDN Protocol Handbook, Volume Two, DARPA Internet
Protocols" [<a href="#ref-36" title=""DDN Protocol Handbook"">36</a>] prepared by the NIC. Other collections of older or
obsolete protocols are contained in the "Internet Protocol Transition
Workbook" [<a href="#ref-57" title=""Logical Addressing Implementation Specification"">57</a>], or in the "ARPANET Protocol Transition Handbook"
[<a href="#ref-38" title=""ARPANET Protocol Handbook"">38</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, Meno Park,
CA., 94025; or call: 1-800-235-3155.
In the entries below, the name and mailbox of the responsible
individual is indicated. The bracketed entry, e.g., [nn,iii], at the
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
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.
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-14" title=""On Holy Wars and a Plea for Peace"">14</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
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.
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Version Numbers
VERSION NUMBERS
In the Internet Protocol (IP) [<a href="#ref-36" title=""DDN Protocol Handbook"">36</a>,<a href="#ref-80" title=""Internet Protocol - DARPA Internet Program Protocol Specification"">80</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-80" title=""Internet Protocol - DARPA Internet Program Protocol Specification"">80</a>,<a href="#ref-JBP">JBP</a>]
5 ST ST Datagram Mode [<a href="#ref-41" title=""ST - A Proposed Internet Stream Protocol"">41</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 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Protocol Numbers
PROTOCOL NUMBERS
In the Internet Protocol (IP) [<a href="#ref-36" title=""DDN Protocol Handbook"">36</a>,<a href="#ref-80" title=""Internet Protocol - DARPA Internet Program Protocol Specification"">80</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-72" title=""Internet Control Message Protocol - DARPA Internet Program Protocol Specification"">72</a>,<a href="#ref-JBP">JBP</a>]
2 IGMP Internet Group Management [<a href="#ref-34" title=""Host Extensions for IP Multicasting"">34</a>,<a href="#ref-JBP">JBP</a>]
3 GGP Gateway-to-Gateway [<a href="#ref-49" title=""The DARPA Internet Gateway"">49</a>,<a href="#ref-MB">MB</a>]
4 Unassigned [<a href="#ref-JBP">JBP</a>]
5 ST Stream [<a href="#ref-41" title=""ST - A Proposed Internet Stream Protocol"">41</a>,<a href="#ref-JWF">JWF</a>]
6 TCP Transmission Control [<a href="#ref-81" title=""Transmission Control Protocol - DARPA Internet Program Protocol Specification"">81</a>,<a href="#ref-JBP">JBP</a>]
7 UCL UCL [<a href="#ref-PK">PK</a>]
8 EGP Exterior Gateway Protocol [<a href="#ref-92" title=""STUB"">92</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-15" title=""Specifications for the Network Voice Protocol"">15</a>,<a href="#ref-SC3">SC3</a>]
12 PUP PUP [<a href="#ref-7" title=""PUP: An Internetwork Architecture"">7</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-47" title=""XNET Formats for Internet Protocol Version 4"">47</a>,<a href="#ref-JFH2">JFH2</a>]
16 CHAOS Chaos [<a href="#ref-NC3">NC3</a>]
17 UDP User Datagram [<a href="#ref-79" title=""User Datagram Protocol"">79</a>,<a href="#ref-JBP">JBP</a>]
18 MUX Multiplexing [<a href="#ref-16" title=""Multiplexing Protocol"">16</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-48" title=""A Host Monitoring Protocol"">48</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-102" title=""The Ethernet, A Local Area Network: Data Link Layer and Physical Layer Specification"">102</a>,<a href="#ref-XEROX">XEROX</a>]
23 TRUNK-1 Trunk-1 [<a href="#ref-SA2">SA2</a>]
24 TRUNK-2 Trunk-2 [<a href="#ref-SA2">SA2</a>]
25 LEAF-1 Leaf-1 [<a href="#ref-SA2">SA2</a>]
26 LEAF-2 Leaf-2 [<a href="#ref-SA2">SA2</a>]
27 RDP Reliable Data Protocol [<a href="#ref-106" title=""Reliable Data Protocol"">106</a>,<a href="#ref-RH6">RH6</a>]
28 IRTP Internet Reliable Transaction [<a href="#ref-59" title=""Internet Reliable Transaction Protocol"">59</a>,<a href="#ref-TXM">TXM</a>]
29 ISO-TP4 ISO Transport Protocol Class 4 [<a href="#ref-51" title=""ISO Transport Protocol Specification - ISO DP 8073"">51</a>,RC77]
30 NETBLT Bulk Data Transfer Protocol [<a href="#ref-13" title=""NETBLT: A Bulk Data Transfer Protocol"">13</a>,<a href="#ref-DDC1">DDC1</a>]
31 MFE-NSP MFE Network Services Protocol [<a href="#ref-93" title=""A Documentary of MFENet, a National Computer Network"">93</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-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-42" title=""CFTP"">42</a>,<a href="#ref-HCF2">HCF2</a>]
63 any local network [<a href="#ref-JBP">JBP</a>]
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Protocol Numbers
64 SAT-EXPAK SATNET and Backroom EXPAK [<a href="#ref-SHB">SHB</a>]
65 MIT-SUBNET MIT Subnet Support [<a href="#ref-NC3">NC3</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 Unassigned [<a href="#ref-JBP">JBP</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 Unassigned [<a href="#ref-JBP">JBP</a>]
78 WB-MON WIDEBAND Monitoring [<a href="#ref-SHB">SHB</a>]
79 WB-EXPAK WIDEBAND EXPAK [<a href="#ref-SHB">SHB</a>]
80-254 Unassigned [<a href="#ref-JBP">JBP</a>]
255 Reserved [<a href="#ref-JBP">JBP</a>]
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Port Numbers
PORT NUMBERS
Ports are used in the TCP [<a href="#ref-36" title=""DDN Protocol Handbook"">36</a>,<a href="#ref-81" title=""Transmission Control Protocol - DARPA Internet Program Protocol Specification"">81</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-37" title=""Internet Protocol Transition Workbook"">37</a>,<a href="#ref-79" title=""User Datagram Protocol"">79</a>].
To the extent possible, these same port assignments are used with the
ISO-TP4 [<a href="#ref-52" title=""Protocol for Providing the Connectionless-Mode Network Services"">52</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-4 Unassigned [<a href="#ref-JBP">JBP</a>]
5 RJE Remote Job Entry [<a href="#ref-9" title=""Remote Job Entry Protocol"">9</a>,<a href="#ref-JBP">JBP</a>]
7 ECHO Echo [<a href="#ref-70" title=""Echo Protocol"">70</a>,<a href="#ref-JBP">JBP</a>]
9 DISCARD Discard [<a href="#ref-69" title=""Discard Protocol"">69</a>,<a href="#ref-JBP">JBP</a>]
11 USERS Active Users [<a href="#ref-65" title=""Active Users"">65</a>,<a href="#ref-JBP">JBP</a>]
13 DAYTIME Daytime [<a href="#ref-68" title=""Daytime Protocol"">68</a>,<a href="#ref-JBP">JBP</a>]
15 Unassigned [<a href="#ref-JBP">JBP</a>]
17 QUOTE Quote of the Day [<a href="#ref-75" title=""Quote of the Day Protocol"">75</a>,<a href="#ref-JBP">JBP</a>]
19 CHARGEN Character Generator [<a href="#ref-67" title=""Character Generator Protocol"">67</a>,<a href="#ref-JBP">JBP</a>]
20 FTP-DATA File Transfer [Default Data] [<a href="#ref-71" title=""File Transfer Protocol"">71</a>,<a href="#ref-JBP">JBP</a>]
21 FTP File Transfer [Control] [<a href="#ref-71" title=""File Transfer Protocol"">71</a>,<a href="#ref-JBP">JBP</a>]
23 TELNET Telnet [<a href="#ref-87" title=""Telnet Protocol Specification"">87</a>,<a href="#ref-JBP">JBP</a>]
25 SMTP Simple Mail Transfer [<a href="#ref-77" title=""Simple Mail Transfer Protocol"">77</a>,<a href="#ref-JBP">JBP</a>]
27 NSW-FE NSW User System FE [<a href="#ref-17" title=""Semi-Annual Technical Report"">17</a>,<a href="#ref-RHT">RHT</a>]
29 MSG-ICP MSG ICP [<a href="#ref-63" title=""MSG: The Interprocess Communication Facility for the National Software Works"">63</a>,<a href="#ref-RHT">RHT</a>]
31 MSG-AUTH MSG Authentication [<a href="#ref-63" title=""MSG: The Interprocess Communication Facility for the National Software Works"">63</a>,<a href="#ref-RHT">RHT</a>]
33 DSP Display Support Protocol [<a href="#ref-MLC">MLC</a>]
35 any private printer server [<a href="#ref-JBP">JBP</a>]
37 TIME Time [<a href="#ref-83" title=""Time Protocol"">83</a>,<a href="#ref-JBP">JBP</a>]
39 RLP Resource Location Protocol [<a href="#ref-MA">MA</a>]
41 GRAPHICS Graphics [<a href="#ref-98" title=""A Networks Graphics Protocol"">98</a>,<a href="#ref-JBP">JBP</a>]
42 NAMESERVER Host Name Server [<a href="#ref-74" title=""Name Server"">74</a>,<a href="#ref-JBP">JBP</a>]
43 NICNAME Who Is [<a href="#ref-46" title=""Nicname/Whois"">46</a>,<a href="#ref-JAKE">JAKE</a>]
44 MPM-FLAGS MPM FLAGS Protocol [<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Port Numbers
45 MPM Message Processing Module [recv] [<a href="#ref-73" title=""Internet Message Protocol"">73</a>,<a href="#ref-JBP">JBP</a>]
46 MPM-SND MPM [default send] [<a href="#ref-73" title=""Internet Message Protocol"">73</a>,<a href="#ref-JBP">JBP</a>]
47 NI-FTP NI FTP [<a href="#ref-103" title=""A Network Independent File Transfer Protocol"">103</a>,SK8]
49 LOGIN Login Host Protocol [<a href="#ref-PHD1">PHD1</a>]
51 LA-MAINT IMP Logical Address Maintenance [<a href="#ref-58" title=""Ethernet: Distributed Packet Switching for Local Computer Networks"">58</a>,<a href="#ref-AGM">AGM</a>]
53 DOMAIN Domain Name Server [<a href="#ref-61" title=""Domain Names - Implementation and Specification"">61</a>,<a href="#ref-70" title=""Echo Protocol"">70</a>,<a href="#ref-PM1">PM1</a>]
55 ISI-GL ISI Graphics Language [<a href="#ref-6" title=""Graphics Language (version 2.1)"">6</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-4" title=""A Simple NIFTP-Based Mail System"">4</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-RHT">RHT</a>]
67 BOOTPS Bootstrap Protocol Server [<a href="#ref-29" title=""BOOTSTRAP Protocol (BOOTP)"">29</a>,<a href="#ref-WJC2">WJC2</a>]
68 BOOTPC Bootstrap Protocol Client [<a href="#ref-29" title=""BOOTSTRAP Protocol (BOOTP)"">29</a>,<a href="#ref-WJC2">WJC2</a>]
69 TFTP Trivial File Transfer [<a href="#ref-95" title=""The TFTP Protocol (Revision 2)"">95</a>,<a href="#ref-DDC1">DDC1</a>]
71 NETRJS-1 Remote Job Service [<a href="#ref-8" title=""NETRJS Protocol"">8</a>,<a href="#ref-RTB3">RTB3</a>]
72 NETRJS-2 Remote Job Service [<a href="#ref-8" title=""NETRJS Protocol"">8</a>,<a href="#ref-RTB3">RTB3</a>]
73 NETRJS-3 Remote Job Service [<a href="#ref-8" title=""NETRJS Protocol"">8</a>,<a href="#ref-RTB3">RTB3</a>]
74 NETRJS-4 Remote Job Service [<a href="#ref-8" title=""NETRJS Protocol"">8</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-44" title=""Name/Finger"">44</a>,<a href="#ref-KLH">KLH</a>]
81 HOSTS2-NS HOSTS2 Name Server [<a href="#ref-EAK1">EAK1</a>]
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-20" title=""SUPDUP Protocol"">20</a>,<a href="#ref-MRC">MRC</a>]
97 SWIFT-RVF Swift Remote Vitural File Protocol [<a href="#ref-MXR">MXR</a>]
98 TACNEWS TAC News [<a href="#ref-FRAN">FRAN</a>]
99 METAGRAM Metagram Relay [<a href="#ref-GEOF">GEOF</a>]
101 HOSTNAME NIC Host Name Server [<a href="#ref-45" title=""Hostnames Server"">45</a>,<a href="#ref-JAKE">JAKE</a>]
102 ISO-TSAP ISO-TSAP [<a href="#ref-12" title=""ISO Transport Services on Top of the TCP"">12</a>,<a href="#ref-MTR">MTR</a>]
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-96" title=""The CSNET Name Server"">96</a>,<a href="#ref-MAS3">MAS3</a>]
107 RTELNET Remote Telnet Service [<a href="#ref-76" title=""Remote Telnet Service"">76</a>,<a href="#ref-JBP">JBP</a>]
109 POP-2 Post Office Protocol - Version 2 [<a href="#ref-11" title=""Post Office Protocol - Version 2"">11</a>,JKR1]
111 SUNRPC SUN Remote Procedure Call [<a href="#ref-DXG">DXG</a>]
113 AUTH Authentication Service [<a href="#ref-99" title=""Authentication Service"">99</a>,<a href="#ref-MCSJ">MCSJ</a>]
115 SFTP Simple File Transfer Protocol [<a href="#ref-56" title=""Simple File Transfer Protocol"">56</a>,<a href="#ref-MKL1">MKL1</a>]
117 UUCP-PATH UUCP Path Service [<a href="#ref-35" title=""Network Mail Path Service"">35</a>,<a href="#ref-MAE">MAE</a>]
119 NNTP Network News Transfer Protocol [<a href="#ref-53" title=""Network News Transfer Protocol"">53</a>,<a href="#ref-PL4">PL4</a>]
121 ERPC HYDRA Expedited Remote Procedure Call[101,JXO]
123 NTP Network Time Protocol [<a href="#ref-60" title=""Network Time Protocol"">60</a>,<a href="#ref-DLM1">DLM1</a>]
125 LOCUS-MAP Locus PC-Interface Net Map Server [<a href="#ref-105" title=""Transparent Integration of UNIX and MS-DOS"">105</a>,BXG]
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Port Numbers
127 LOCUS-CON Locus PC-Interface Conn Server [<a href="#ref-105" title=""Transparent Integration of UNIX and MS-DOS"">105</a>,BXG]
129 PWDGEN Password Generator Protocol [<a href="#ref-107" title=""Password Generator Protocol"">107</a>,<a href="#ref-FJW">FJW</a>]
130 CISCO-FNA CISCO FNATIVE [<a href="#ref-WXB">WXB</a>]
131 CISCO-TNA CISCO TNATIVE [<a href="#ref-WXB">WXB</a>]
132 CISCO-SYS CISCO SYSMAINT [<a href="#ref-WXB">WXB</a>]
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-159 Unassigned [<a href="#ref-JBP">JBP</a>]
160-223 Reserved [<a href="#ref-JBP">JBP</a>]
224-241 Unassigned [<a href="#ref-JBP">JBP</a>]
243 SUR-MEAS Survey Measurement [<a href="#ref-5" title=""A Report on the Survey Project"">5</a>,<a href="#ref-AV">AV</a>]
245 LINK LINK [<a href="#ref-10" title=""Inter-Entity Communication -- An Experiment"">10</a>,<a href="#ref-RDB2">RDB2</a>]
247-255 Unassigned [<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Domain System Parameters
DOMAIN SYSTEM PARAMETERS
The Internet Domain Naming System (DOMAIN) includes several
parameters. These are documented in <a href="./rfc883">RFC 883</a> [<a href="#ref-61" title=""Domain Names - Implementation and Specification"">61</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 [<a href="#ref-61" title=""Domain Names - Implementation and Specification"">61</a>,<a href="#ref-PM1">PM1</a>]
2 Unassigned [<a href="#ref-PM1">PM1</a>]
3 Chaos [<a href="#ref-PM1">PM1</a>]
4-65534 Unassigned [<a href="#ref-PM1">PM1</a>]
65535 Reserved [<a href="#ref-PM1">PM1</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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
ARPANET Logical Addresses
ARPANET LOGICAL ADDRESSES
The ARPANET facility for "logical addressing" is described in
<a href="./rfc878">RFC 878</a> [<a href="#ref-57" title=""Logical Addressing Implementation Specification"">57</a>] and <a href="./rfc1005">RFC 1005</a> [<a href="#ref-109" title=""The ARPANET AHIP-E Host Access Protocol (Enhanced AHIP)"">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 Joyce Reynolds. 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 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
ARPANET Link Numbers
ARPANET 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 Reserved [<a href="#ref-JBP">JBP</a>]
1-149 Unassigned [<a href="#ref-JBP">JBP</a>]
150 Xerox NS IDP [<a href="#ref-102" title=""The Ethernet, A Local Area Network: Data Link Layer and Physical Layer Specification"">102</a>,<a href="#ref-XEROX">XEROX</a>]
151 Unassigned [<a href="#ref-JBP">JBP</a>]
152 PARC Universal Protocol [<a href="#ref-7" title=""PUP: An Internetwork Architecture"">7</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-80" title=""Internet Protocol - DARPA Internet Program Protocol Specification"">80</a>,<a href="#ref-JBP">JBP</a>]
156-158 Internet Protocol [experimental] [<a href="#ref-80" title=""Internet Protocol - DARPA Internet Program Protocol Specification"">80</a>,<a href="#ref-JBP">JBP</a>]
159 Figleaf Link [<a href="#ref-JBW1">JBW1</a>]
160-194 Unassigned [<a href="#ref-JBP">JBP</a>]
195 ISO-IP [<a href="#ref-52" title=""Protocol for Providing the Connectionless-Mode Network Services"">52</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 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
IEEE 802 SAP Numbers
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 DOD IP [<a href="#ref-79" title=""User Datagram Protocol"">79</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>]
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-52" title=""Protocol for Providing the Connectionless-Mode Network Services"">52</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 on 802 networks was developed.
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
IEEE 802 SAP Numbers
Due to some evolution of the IEEE 802.2 standards and the need to
provide for a standard way to do additional DoD-IP related protocols
(such as the Address Resolution Protocol (ARP) on IEEE 802 network,
the following new policy is established, which will replace the old
policy (see <a href="./rfc960">RFC 960</a> and <a href="./rfc948">RFC 948</a> [<a href="#ref-108" title=""Two Methods for the Transmission of IP Datagrams Over IEEE 802.3 Networks"">108</a>]).
The new policy is for the Internet community to use the IEEE 802.2
encapsulation on 802.3, 802.4, and 802.5 networks by using the SNAP
with an organization code indicating that the following 16 bits
specify the EtherType code (where IP = 2048 (0800 hex), see Ethernet
Numbers of Interest).
Header
...--------+--------+--------+
MAC Header| Length | 802.{3/4/5} MAC
...--------+--------+--------+
+--------+--------+--------+
| Dsap=K1| Ssap=K1| control| 802.2 SAP
+--------+--------+--------+
+--------+--------+---------+--------+--------+
|protocol id or org code =K2| Ether Type | 802.2 SNAP
+--------+--------+---------+--------+--------+
The total length of the SAP Header and the SNAP header is 8-octets,
making the 802.2 protocol overhead come out on a nice boundary.
K1 is 170. The IEEE likes to talk about things in little-endian bit
transmission order and specifies this value as 01010101. In
big-endian order, as used in Internet specifications, this becomes
10101010 binary, or AA hex, or 170 decimal.
K2 is 0 (zero).
The use of the IP LSAP (K1 = 6) is to be phased out as quickly as
possible.
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Ethernet Numbers
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, 2300
Geng Road, Palo Alto, California 94303, ATTN: Ms. Pam Cance.
Assignments:
Ethernet Exp. Ethernet Description References
------------- ------------- ----------- ----------
decimal Hex decimal octal
512 0200 512 1000 XEROX PUP [<a href="#ref-7" title=""PUP: An Internetwork Architecture"">7</a>,<a href="#ref-XEROX">XEROX</a>]
513 0201 - - PUP Addr. Trans. [<a href="#ref-XEROX">XEROX</a>]
1536 0600 1536 3000 XEROX NS IDP [<a href="#ref-102" title=""The Ethernet, A Local Area Network: Data Link Layer and Physical Layer Specification"">102</a>,<a href="#ref-XEROX">XEROX</a>]
2048 0800 513 1001 DOD IP [<a href="#ref-80" title=""Internet Protocol - DARPA Internet Program Protocol Specification"">80</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-64" title=""An Ethernet Address Resolution Protocol or Converting Network Protocol Addresses to 48-bit Ethernet Addresses for Transmission on Ethernet Hardware"">64</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>]
4096 1000 - - Berkeley Trailer [<a href="#ref-XEROX">XEROX</a>]
5632 1600 - - Valid [<a href="#ref-XEROX">XEROX</a>]
21000 5208 - - BBN Simnet [<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 [<a href="#ref-XEROX">XEROX</a>]
24580 6004 - - DEC LAT [<a href="#ref-XEROX">XEROX</a>]
24581 6005 - - DEC [<a href="#ref-XEROX">XEROX</a>]
24582 6006 - - DEC [<a href="#ref-XEROX">XEROX</a>]
32771 8003 - - Cronus VLN [<a href="#ref-100" title=""The CRONUS Virtual Local Network"">100</a>,<a href="#ref-DT15">DT15</a>]
32772 8004 - - Cronus Direct [<a href="#ref-100" title=""The CRONUS Virtual Local Network"">100</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>]
32784 8010 - - Excelan [<a href="#ref-XEROX">XEROX</a>]
32821 8035 - - Reverse ARP [<a href="#ref-40" title=""A Reverse Address Resolution Protocol"">40</a>,<a href="#ref-JXM">JXM</a>]
32824 8038 - - DEC LANBridge [<a href="#ref-XEROX">XEROX</a>]
32859 805B - - Stanford V Kernel experimental
[<a href="#ref-XEROX">XEROX</a>]
32860 805C - - Stanford V Kernel production
[<a href="#ref-XEROX">XEROX</a>]
32892 807C - - Merit Internodal [<a href="#ref-HWB">HWB</a>]
32923 809B - - Appletalk [<a href="#ref-XEROX">XEROX</a>]
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Ethernet Numbers
36864 9000 - - Loopback [<a href="#ref-XEROX">XEROX</a>]
The standard for transmission of IP datagrams over Ethernets and
Experimental Ethernets is specified in <a href="./rfc894">RFC 894</a> [<a href="#ref-50" title="C.">50</a>] and <a href="./rfc895">RFC 895</a> [<a href="#ref-66" title="J.">66</a>]
respectively.
NOTE: Ethernet 48-bit address blocks are now 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 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Address Resolution Protocol
ADDRESS RESOLUTION PROTOCOL PARAMETERS
The Address Resolution Protocol (ARP) specified in <a href="./rfc826">RFC 826</a> [<a href="#ref-64" title=""An Ethernet Address Resolution Protocol or Converting Network Protocol Addresses to 48-bit Ethernet Addresses for Transmission on Ethernet Hardware"">64</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 [PXK]
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>]
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 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Public Data Network Numbers
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-CAK">CAK</a>]
014.000.000.002 3110-608-00027 00 UWISC-TN [<a href="#ref-CAK">CAK</a>]
014.000.000.003 3110-302-00024 00 UDEL-TN [<a href="#ref-CAK">CAK</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-MAS3">MAS3</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 [<a href="#ref-UXB">UXB</a>]
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 DFVLR5-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 [<a href="#ref-AXH">AXH</a>]
014.000.000.021 3020-801-00057 50 DMC-CRC1 [<a href="#ref-JR17">JR17</a>]
014.000.000.022 2624-522-80902 77 DFVLRVAX-X25 [<a href="#ref-GB7">GB7</a>]
*014.000.000.023 2624-589-00908 01 ECRC-X25 [<a href="#ref-PXD">PXD</a>]
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 [AXM]
014.000.000.026-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-55" title=""A Standard for the Transmission of IP Datagrams Over Public Data Networks"">55</a>].
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Telnet Options
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-91" title=""Official Internet Protocols"">91</a>]
provides more detailed information.
Options Name References
------- ----------------------- ----------
0 Binary Transmission [<a href="#ref-85" title=""Telnet Binary Transmission"">85</a>,<a href="#ref-JBP">JBP</a>]
1 Echo [<a href="#ref-86" title=""Telnet Echo Option"">86</a>,<a href="#ref-JBP">JBP</a>]
2 Reconnection [<a href="#ref-33" title=""Telnet Reconnection Option"">33</a>,<a href="#ref-JBP">JBP</a>]
3 Suppress Go Ahead [<a href="#ref-89" title=""Telnet Suppress Go Ahead Option"">89</a>,<a href="#ref-JBP">JBP</a>]
4 Approx Message Size Negotiation [<a href="#ref-102" title=""The Ethernet, A Local Area Network: Data Link Layer and Physical Layer Specification"">102</a>,<a href="#ref-JBP">JBP</a>]
5 Status [<a href="#ref-88" title=""Telnet Status Option"">88</a>,<a href="#ref-JBP">JBP</a>]
6 Timing Mark [<a href="#ref-90" title=""Telnet Timing Mark Option"">90</a>,<a href="#ref-JBP">JBP</a>]
7 Remote Controlled Trans and Echo [<a href="#ref-82" title=""Remote Controlled Transmission and Echoing Telnet Option"">82</a>,<a href="#ref-JBP">JBP</a>]
8 Output Line Width [<a href="#ref-31" title=""Telnet Output Line Width Option"">31</a>,<a href="#ref-JBP">JBP</a>]
9 Output Page Size [<a href="#ref-32" title="">32</a>,<a href="#ref-JBP">JBP</a>]
10 Output Carriage-Return Disposition [<a href="#ref-21" title=""Telnet Output Carriage-Return Disposition Option"">21</a>,<a href="#ref-JBP">JBP</a>]
11 Output Horizontal Tab Stops [<a href="#ref-25" title=""Telnet Output Horizontal Tabstops Option"">25</a>,<a href="#ref-JBP">JBP</a>]
12 Output Horizontal Tab Disposition [<a href="#ref-24" title=""Telnet Output Horizontal Tab Disposition Option"">24</a>,<a href="#ref-JBP">JBP</a>]
13 Output Formfeed Disposition [<a href="#ref-22" title=""Telnet Output Formfeed Disposition Option"">22</a>,<a href="#ref-JBP">JBP</a>]
14 Output Vertical Tabstops [<a href="#ref-27" title=""Telnet Output Vertical Tabstops Option"">27</a>,<a href="#ref-JBP">JBP</a>]
15 Output Vertical Tab Disposition [<a href="#ref-26" title=""Telnet Output Vertical Tab Disposition Option"">26</a>,<a href="#ref-JBP">JBP</a>]
16 Output Linefeed Disposition [<a href="#ref-23" title=""Telnet Output Linefeed Disposition"">23</a>,<a href="#ref-JBP">JBP</a>]
17 Extended ASCII [<a href="#ref-104" title=""Telnet Extended ASCII Option"">104</a>,<a href="#ref-JBP">JBP</a>]
18 Logout [<a href="#ref-18" title=""Telnet Logout Option"">18</a>,<a href="#ref-MRC">MRC</a>]
19 Byte Macro [<a href="#ref-28" title=""Revised Telnet Byte Marco Option"">28</a>,<a href="#ref-JBP">JBP</a>]
20 Data Entry Terminal [<a href="#ref-30" title=""Telnet Data Entry Terminal Option"">30</a>,<a href="#ref-JBP">JBP</a>]
22 SUPDUP [<a href="#ref-19" title=""Telnet SUPDUP Option"">19</a>,<a href="#ref-20" title=""SUPDUP Protocol"">20</a>,<a href="#ref-MRC">MRC</a>]
22 SUPDUP Output [<a href="#ref-43" title=""Telnet SUPDUP-OUTPUT Option"">43</a>,<a href="#ref-MRC">MRC</a>]
23 Send Location [<a href="#ref-54" title=""Telnet Send-Location Option"">54</a>,<a href="#ref-EAK1">EAK1</a>]
24 Terminal Type [<a href="#ref-97" title=""Telnet Terminal Type Option"">97</a>,<a href="#ref-MAS3">MAS3</a>]
25 End of Record [<a href="#ref-78" title=""Telnet End of Record Option"">78</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-94" title=""Output Marking Telnet Option"">94</a>,<a href="#ref-SXS">SXS</a>]
28 Terminal Location Number [<a href="#ref-62" title=""Telnet Terminal Location Number Option"">62</a>,<a href="#ref-RN6">RN6</a>]
255 Extended-Options-List [<a href="#ref-84" title=""Telnet Extended Options - List Option"">84</a>,<a href="#ref-JBP">JBP</a>]
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Machine Names
MACHINE NAMES
These are the Official Machine Names as they appear in the NIC Host
Table. Their use is described in <a href="./rfc810">RFC 810</a> [<a href="#ref-39" title=""DoD Internet Host Table Specification"">39</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
AMDAHL-V7
APOLLO
ATT-3B20
BBN-C/60
BURROUGHS-B/29
BURROUGHS-B/4800
BUTTERFLY
C/30
C/70
CADLINC
CADR
CDC-170
CDC-170/750
CDC-173
CELERITY-1200
COMTEN-3690
CP8040
CRAY-1
CRAY-X/MP
CRAY-2
CTIWS-117
DANDELION
DEC-10
DEC-1050
DEC-1077
DEC-1080
DEC-1090
DEC-1090B
DEC-1090T
DEC-2020T
DEC-2040
DEC-2040T
DEC-2050T
DEC-2060
DEC-2060T
DEC-2065
DEC-FALCON
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Machine Names
DEC-KS10
DORADO
DPS8/70M
ELXSI-6400
FOONLY-F2
FOONLY-F3
FOONLY-F4
GOULD
GOULD-6050
GOULD-6080
GOULD-9050
GOULD-9080
H-316
H-60/68
H-68
H-68/80
H-89
HONEYWELL-DPS-6
HONEYWELL-DPS-8/70
HP3000
HP3000/64
IBM-158
IBM-360/67
IBM-370/3033
IBM-3081
IBM-3084QX
IBM-3101
IBM-4331
IBM-4341
IBM-4361
IBM-4381
IBM-4956
IBM-PC
IBM-PC/AT
IBM-PC/XT
IBM-SERIES/1
IMAGEN
IMAGEN-8/300
IMSAI
INTEGRATED-SOLUTIONS
INTEGRATED-SOLUTIONS-68K
INTEGRATED-SOLUTIONS-CREATOR
INTEGRATED-SOLUTIONS-CREATOR-8
INTEL-IPSC
IS-1
IS-68010
LMI
LSI-11
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Machine Names
LSI-11/2
LSI-11/23
LSI-11/73
M68000
MASSCOMP
MC500
MC68000
MICROVAX
MICROVAX-I
MV/8000
NAS3-5
NCR-COMTEN-3690
NOW
ONYX-Z8000
PDP-11
PDP-11/3
PDP-11/23
PDP-11/24
PDP-11/34
PDP-11/40
PDP-11/44
PDP-11/45
PDP-11/50
PDP-11/70
PDP-11/73
PE-7/32
PE-3205
PERQ
PLEXUS-P/60
PLI
PLURIBUS
PRIME-2350
PRIME-2450
PRIME-2755
PRIME-9655
PRIME-9755
PRIME-9955II
PRIME-2250
PRIME-2655
PRIME-9955
PRIME-9950
PRIME-9650
PRIME-9750
PRIME-2250
PRIME-750
PRIME-850
PRIME-550II
PYRAMID-90
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Machine Names
PYRAMID-90MX
PYRAMID-90X
RIDGE
RIDGE-32
RIDGE-32C
ROLM-1666
S1-MKIIA
SMI
SEQUENT-BALANCE-8000
SIEMENS
SILICON-GRAPHICS
SILICON-GRAPHICS-IRIS
SPERRY-DCP/10
SUN
SUN-2
SUN-2/50
SUN-2/100
SUN-2/120
SUN-2/140
SUN-2/150
SUN-2/160
SUN-2/170
SUN-3/160
SUN-3/50
SUN-3/75
SUN-3/110
SUN-50
SUN-100
SUN-120
SUN-130
SUN-150
SUN-170
SUN-68000
SYMBOLICS-3600
SYMBOLICS-3670
TANDEM-TXP
TEK-6130
TI-EXPLORER
TP-4000
TRS-80
UNIVAC-1100
UNIVAC-1100/60
UNIVAC-1100/62
UNIVAC-1100/63
UNIVAC-1100/64
UNIVAC-1100/70
UNIVAC-1160
VAX-11/725
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Machine Names
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
XEROX-1108
XEROX-8010
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
System Names
SYSTEM NAMES
These are the Official System Names as they appear in the NIC Host
Table. Their use is described in <a href="./rfc810">RFC 810</a> [<a href="#ref-39" title=""DoD Internet Host Table Specification"">39</a>].
A system name 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.
AEGIS
APOLLO
BS-2000
CEDAR
CGW
CHRYSALIS
CMOS
CMS
COS
CPIX
CTOS
CTSS
DCN
DDNOS
DOMAIN
EDX
ELF
EMBOS
EMMOS
EPOS
FOONEX
FUZZ
GCOS
GPOS
HDOS
IMAGEN
INTERCOM
IMPRESS
INTERLISP
IOS
ITS
LISP
LISPM
LOCUS
MINOS
MOS
MPE5
MSDOS
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
System Names
MULTICS
MVS
MVS/SP
NEXUS
NMS
NONSTOP
NOS-2
OS/DDP
OS4
OS86
OSX
PCDOS
PERQ/OS
PLI
PSDOS/MIT
PRIMOS
RMX/RDOS
ROS
RSX11M
SATOPS
SCS
SIMP
SWIFT
TAC
TANDEM
TENEX
TOPS10
TOPS20
TP3010
TRSDOS
ULTRIX
UNIX
UT2D
V
VM
VM/370
VM/CMS
VM/SP
VMS
VMS/EUNICE
VRTX
WAITS
WANG
XDE
XENIX
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Protocol Names
PROTOCOL AND SERVICE NAMES
These are the Official Protocol Names. Their use is described in
greater detail in <a href="./rfc810">RFC 810</a> [<a href="#ref-39" title=""DoD Internet Host Table Specification"">39</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
AUTH - Authentication Service
BBN-RCC-MON - BBN RCC Monitoring
BL-IDM - Britton Lee Intelligent Database Machine
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
COOKIE-JAR - Cookie Jar Authentication Procedure
CSNET-NS - CSNET Mailbox Nameserver Protocol
DAYTIME - Daytime Protocol
DCN-MEAS - DCN Measurement Subsystems Protocol
DCP - Device Control Protocol
DISCARD - Discard Protocol
DOMAIN - Domain Name Server
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
ICMP - Internet Control Message Protocol
IGMP - Internet Group Management Protocol
IGP - Interior Gateway Protocol
INGRES-NET - INGRES-NET Service
IP - Internet Protocol
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Protocol Names
IPCU - Internet Packet Core Utility
IPPC - Internet Pluribus Packet Core
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
LEAF-1 - Leaf-1 Protocol
LEAF-2 - Leaf-2 Protocol
LINK - Link Protocol
LOC-SRV - Location Service
LOGIN - Login Host Protocol
MERIT-INP - MERIT Internodal Protocol
METAGRAM - Metagram Relay
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
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
NSW-FE - NSW User System Front End
NTP - Network Time Protocol
NVP-II - Network Voice Protocol
POP2 - Post Office Protocol - Version 2
PRM - Packet Radio Measurement
PUP - PUP Protocol
PWDGEN - Password Generator Protocol
QUOTE - Quote of the Day Protocol
RDP - Reliable Data Protocol
RJE - Remote Job Entry
RLP - Resource Location Protocol
RTELNET - Remote Telnet Service
RVD - Remote Virtual Disk Protocol
SAT-EXPAK - Satnet and Backroom EXPAK
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Protocol Names
SAT-MON - SATNET Monitoring
SEP - Sequential Exchange Protocol
SFTP - Simple File Transfer Protocol
SMTP - Simple Mail Transfer Protocol
ST - Stream Protocol
STATSRV - Statistics Service
SU-MIT-TG - SU/MIT Telnet Gateway Protocol
SUNRPC - SUN Remote Procedure Call
SUPDUP - SUPDUP Protocol
SUR-MEAS - Survey Measurement
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
TIME - Time Server Protocol
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
WB-EXPAK - Wideband EXPAK
WB-MON - Wideband Monitoring
XNET - Cross Net Debugger
XNS-IDP - Xerox NS IDP
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Terminal Type Names
TERMINAL TYPE NAMES
These are the Official Terminal Type Names. Their use is described
in <a href="./rfc930">RFC 930</a> [<a href="#ref-97" title=""Telnet Terminal Type Option"">97</a>]. The maximum length of a name is 40 characters.
A terminal names 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.
ADDS-CONSUL-980
ADDS-REGENT-100
ADDS-REGENT-20
ADDS-REGENT-200
ADDS-REGENT-25
ADDS-REGENT-40
ADDS-REGENT-60
AMPEX-DIALOGUE-80
ANDERSON-JACOBSON-630
ANDERSON-JACOBSON-832
ANDERSON-JACOBSON-841
ANN-ARBOR-AMBASSADOR
ARDS
BITGRAPH
BUSSIPLEXER
CALCOMP-565
CDC-456
CDI-1030
CDI-1203
CLNZ
COMPUCOLOR-II
CONCEPT-100
CONCEPT-104
CONCEPT-108
DATA-100
DATA-GENERAL-6053
DATAGRAPHIX-132A
DATAMEDIA-1520
DATAMEDIA-1521
DATAMEDIA-2500
DATAMEDIA-3025
DATAMEDIA-3025A
DATAMEDIA-3045
DATAMEDIA-3045A
DATAMEDIA-DT80/1
DATAPOINT-2200
DATAPOINT-3000
DATAPOINT-3300
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Terminal Type Names
DATAPOINT-3360
DEC-DECWRITER-I
DEC-DECWRITER-II
DEC-GT40
DEC-GT40A
DEC-GT42
DEC-LA120
DEC-LA30
DEC-LA36
DEC-LA38
DEC-VT05
DEC-VT100
DEC-VT132
DEC-VT50
DEC-VT50H
DEC-VT52
DELTA-DATA-5000
DELTA-TELTERM-2
DIABLO-1620
DIABLO-1640
DIGILOG-333
DTC-300S
EDT-1200
EXECUPORT-4000
EXECUPORT-4080
GENERAL-TERMINAL-100A
GSI
HAZELTINE-1500
HAZELTINE-1510
HAZELTINE-1520
HAZELTINE-2000
HP-2621
HP-2621A
HP-2621P
HP-2626
HP-2626A
HP-2626P
HP-2640
HP-2640A
HP-2640B
HP-2645
HP-2645A
HP-2648
HP-2648A
HP-2649
HP-2649A
IBM-3101
IBM-3101-10
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Terminal Type Names
IBM-3275-2
IBM-3276-2
IBM-3276-3
IBM-3276-4
IBM-3277-2
IBM-3278-2
IBM-3278-3
IBM-3278-4
IBM-3278-5
IBM-3279-2
IBM-3279-3
IMLAC
INFOTON-100
INFOTONKAS
ISC-8001
LSI-ADM-3
LSI-ADM-31
LSI-ADM-3A
LSI-ADM-42
MEMOREX-1240
MICROBEE
MICROTERM-ACT-IV
MICROTERM-ACT-V
MICROTERM-MIME-1
MICROTERM-MIME-2
NETRONICS
NETWORK-VIRTUAL-TERMINAL
OMRON-8025AG
PERKIN-ELMER-1100
PERKIN-ELMER-1200
PERQ
PLASMA-PANEL
QUME-SPRINT-5
SOROC
SOROC-120
SOUTHWEST-TECHNICAL-PRODUCTS-CT82
SUPERBEE
SUPERBEE-III-M
TEC
TEKTRONIX-4010
TEKTRONIX-4012
TEKTRONIX-4013
TEKTRONIX-4014
TEKTRONIX-4023
TEKTRONIX-4024
TEKTRONIX-4025
TEKTRONIX-4027
TELERAY-1061
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Terminal Type Names
TELERAY-3700
TELERAY-3800
TELETEC-DATASCREEN
TELETERM-1030
TELETYPE-33
TELETYPE-35
TELETYPE-37
TELETYPE-38
TELETYPE-43
TELEVIDEO-912
TELEVIDEO-920
TELEVIDEO-920B
TELEVIDEO-920C
TELEVIDEO-950
TERMINET-1200
TERMINET-300
TI-700
TI-733
TI-735
TI-743
TI-745
TYCOM
UNIVAC-DCT-500
VIDEO-SYSTEMS-1200
VIDEO-SYSTEMS-5000
VISUAL-200
XEROX-1720
ZENITH-H19
ZENTEC-30
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Documents
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>] Bennett, C., "A Simple NIFTP-Based Mail System", IEN 169,
University College, London, January 1981.
[<a id="ref-5">5</a>] Bhushan, A., "A Report on the Survey Project", <a href="./rfc530">RFC 530</a>,
NIC 17375, June 1973.
[<a id="ref-6">6</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-7">7</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-8">8</a>] Braden, R., "NETRJS Protocol", <a href="./rfc740">RFC 740</a>, NIC 42423,
November 1977.
[<a id="ref-9">9</a>] Bressler, B., "Remote Job Entry Protocol", <a href="./rfc407">RFC 407</a>,
NIC 12112, October 1972.
[<a id="ref-10">10</a>] Bressler, R., "Inter-Entity Communication -- An Experiment",
<a href="./rfc441">RFC 441</a>, NIC 13773, January 1973.
[<a id="ref-11">11</a>] Butler, M., J. Postel, D. Chase, J. Goldberger, and
J. K. Reynolds, "Post Office Protocol - Version 2", <a href="./rfc937">RFC 937</a>,
Information Sciences Institute, February 1985.
[<a id="ref-12">12</a>] Cass, D. E., and M. T. Rose, "ISO Transport Services on Top of
the TCP", <a href="./rfc983">RFC 983</a>, NTRC, April 1986.
[<a id="ref-13">13</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.
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Documents
[<a id="ref-14">14</a>] Cohen, D., "On Holy Wars and a Plea for Peace", IEEE Computer
Magazine, October 1981.
[<a id="ref-15">15</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-16">16</a>] Cohen, D. and J. Postel, "Multiplexing Protocol", IEN 90,
Information Sciences Institute, May 1979.
[<a id="ref-17">17</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-18">18</a>] Crispin, M., "Telnet Logout Option", Stanford University-AI,
<a href="./rfc727">RFC 727</a>, April 1977.
[<a id="ref-19">19</a>] Crispin, M., "Telnet SUPDUP Option", Stanford University-AI,
<a href="./rfc736">RFC 736</a>, October 1977.
[<a id="ref-20">20</a>] Crispin, M., "SUPDUP Protocol", <a href="./rfc734">RFC 734</a>, NIC 41953,
October 1977.
[<a id="ref-21">21</a>] Crocker, D., "Telnet Output Carriage-Return Disposition
Option", <a href="./rfc652">RFC 652</a>, October 1974.
[<a id="ref-22">22</a>] Crocker, D., "Telnet Output Formfeed Disposition Option",
<a href="./rfc655">RFC 655</a>, October 1974.
[<a id="ref-23">23</a>] Crocker, D., "Telnet Output Linefeed Disposition", <a href="./rfc658">RFC 658</a>,
October 1974.
[<a id="ref-24">24</a>] Crocker, D., "Telnet Output Horizontal Tab Disposition
Option", <a href="./rfc654">RFC 654</a>, October 1974.
[<a id="ref-25">25</a>] Crocker, D., "Telnet Output Horizontal Tabstops Option",
<a href="./rfc653">RFC 653</a>, October 1974.
[<a id="ref-26">26</a>] Crocker, D., "Telnet Output Vertical Tab Disposition Option",
<a href="./rfc657">RFC 657</a>, October 1974.
[<a id="ref-27">27</a>] Crocker, D., "Telnet Output Vertical Tabstops Option",
<a href="./rfc656">RFC 656</a>, October 1974.
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Documents
[<a id="ref-28">28</a>] Crocker, D. H. and R. H. Gumpertz, "Revised Telnet Byte Marco
Option", <a href="./rfc735">RFC 735</a>, November 1977.
[<a id="ref-29">29</a>] Croft, B., and J. Gilmore, "BOOTSTRAP Protocol (BOOTP)",
<a href="./rfc951">RFC 951</a>, Stanford and SUN Microsytems, September 1985.
[<a id="ref-30">30</a>] Day, J., "Telnet Data Entry Terminal Option", <a href="./rfc732">RFC 732</a>,
September 1977.
[<a id="ref-31">31</a>] DDN Protocol Handbook, "Telnet Output Line Width Option",
NIC 50005, December 1985.
[<a id="ref-32">32</a>] DDN Protocol Handbook, "Telnet Output Page Size Option",
NIC 50005, December 1985.
[<a id="ref-33">33</a>] DDN Protocol Handbook, "Telnet Reconnection Option",
NIC 50005, December 1985.
[<a id="ref-34">34</a>] Deering, S. E., "Host Extensions for IP Multicasting",
<a href="./rfc988">RFC 988</a>, Stanford University, December 1985.
[<a id="ref-35">35</a>] Elvy, M., and R. Nedved, "Network Mail Path Service", <a href="./rfc915">RFC 915</a>,
Harvard and CMU, July 1986.
[<a id="ref-36">36</a>] Feinler, E., editor, "DDN Protocol Handbook", Network
Information Center, SRI International, December 1985.
[<a id="ref-37">37</a>] Feinler, E., editor, "Internet Protocol Transition Workbook",
Network Information Center, SRI International, March 1982.
[<a id="ref-38">38</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-39">39</a>] Feinler, E., K. Harrenstien, Z. Su, and V. White, "DoD
Internet Host Table Specification", <a href="./rfc810">RFC 810</a>, SRI
International, March 1982.
[<a id="ref-40">40</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-41">41</a>] Forgie, J., "ST - A Proposed Internet Stream Protocol",
IEN 119, MIT Lincoln Laboratory, September 1979.
[<a id="ref-42">42</a>] Forsdick, H., "CFTP", Network Message, Bolt Beranek and
Newman, January 1982.
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Documents
[<a id="ref-43">43</a>] Greenberg, B., "Telnet SUPDUP-OUTPUT Option", <a href="./rfc749">RFC 749</a>,
MIT-Multics, September 1978.
[<a id="ref-44">44</a>] Harrenstien, K., "Name/Finger", <a href="./rfc742">RFC 742</a>, NIC 42758,
SRI International, December 1977.
[<a id="ref-45">45</a>] Harrenstien, K., V. White, and E. Feinler, "Hostnames Server",
<a href="./rfc811">RFC 811</a>, SRI International, March 1982.
[<a id="ref-46">46</a>] Harrenstien, K., and V. White, "Nicname/Whois", <a href="./rfc812">RFC 812</a>,
SRI International, March 1982.
[<a id="ref-47">47</a>] Haverty, J., "XNET Formats for Internet Protocol Version 4",
IEN 158, October 1980.
[<a id="ref-48">48</a>] Hinden, R. M., "A Host Monitoring Protocol", <a href="./rfc869">RFC 869</a>,
Bolt Beranek and Newman, December 1983.
[<a id="ref-49">49</a>] Hinden, R., and A. Sheltzer, "The DARPA Internet Gateway",
<a href="./rfc823">RFC 823</a>, September 1982.
[<a id="ref-50">50</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-51">51</a>] International Standards Organization, "ISO Transport Protocol
Specification - ISO DP 8073", <a href="./rfc905">RFC 905</a>, April 1984.
[<a id="ref-52">52</a>] International Standards Organization, "Protocol for Providing
the Connectionless-Mode Network Services", <a href="./rfc926">RFC 926</a>, ISO,
December 1984.
[<a id="ref-53">53</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-54">54</a>] Killian, E., "Telnet Send-Location Option", <a href="./rfc779">RFC 779</a>,
April 1981.
[<a id="ref-55">55</a>] Korb, J. T., "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-56">56</a>] Lottor, M. K., "Simple File Transfer Protocol", <a href="./rfc913">RFC 913</a>, MIT,
September 1984.
[<a id="ref-57">57</a>] Malis, A., "Logical Addressing Implementation Specification",
BBN Report 5256, pp 31-36, May 1983.
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Documents
[<a id="ref-58">58</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-59">59</a>] Miller, T., "Internet Reliable Transaction Protocol", <a href="./rfc938">RFC 938</a>,
ACC, February 1985.
[<a id="ref-60">60</a>] Mills, D., "Network Time Protocol", <a href="./rfc958">RFC 958</a>, M/A-COM Linkabit,
September 1985.
[<a id="ref-61">61</a>] Mockapetris, P., "Domain Names - Implementation and
Specification", <a href="./rfc883">RFC 883</a>, Information Sciences Institute,
November 1983.
[<a id="ref-62">62</a>] Nedved, R., "Telnet Terminal Location Number Option", <a href="./rfc946">RFC 946</a>,
Carnegie-Mellon University, May 1985.
[<a id="ref-63">63</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
Newman, Revised December 1976.
[<a id="ref-64">64</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-65">65</a>] Postel, J., "Active Users", <a href="./rfc866">RFC 866</a>, Information
Sciences Institute, May 1983.
[<a id="ref-66">66</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-67">67</a>] Postel, J., "Character Generator Protocol", <a href="./rfc864">RFC 864</a>,
Information Sciences Institute, May 1983.
[<a id="ref-68">68</a>] Postel, J., "Daytime Protocol", <a href="./rfc867">RFC 867</a>, Information Sciences
Institute, May 1983.
[<a id="ref-69">69</a>] Postel, J., "Discard Protocol", <a href="./rfc863">RFC 863</a>, Information Sciences
Institute, May 1983.
[<a id="ref-70">70</a>] Postel, J., "Echo Protocol", <a href="./rfc862">RFC 862</a>, Information Sciences
Institute, May 1983.
[<a id="ref-71">71</a>] Postel, J. and J. Reynolds, "File Transfer Protocol", <a href="./rfc959">RFC 959</a>,
Information Sciences Institute, October 1985.
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Documents
[<a id="ref-72">72</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-73">73</a>] Postel, J., "Internet Message Protocol", <a href="./rfc759">RFC 759</a>, IEN 113,
Information Sciences Institute, August 1980.
[<a id="ref-74">74</a>] Postel, J., "Name Server", IEN 116, Information Sciences
Institute, August 1979.
[<a id="ref-75">75</a>] Postel, J., "Quote of the Day Protocol", <a href="./rfc865">RFC 865</a>,
Information Sciences Institute, May 1983.
[<a id="ref-76">76</a>] Postel, J., "Remote Telnet Service", <a href="./rfc818">RFC 818</a>,
Information Sciences Institute, November 1982.
[<a id="ref-77">77</a>] Postel, J., "Simple Mail Transfer Protocol", <a href="./rfc821">RFC 821</a>,
Information Sciences Institute, August 1982.
[<a id="ref-78">78</a>] Postel, J., "Telnet End of Record Option", <a href="./rfc885">RFC 885</a>,
Information Sciences Institute, December 1983.
[<a id="ref-79">79</a>] Postel, J., "User Datagram Protocol", <a href="./rfc768">RFC 768</a>
Information Sciences Institute, August 1980.
[<a id="ref-80">80</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-81">81</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-82">82</a>] Postel, J. and D. Crocker, "Remote Controlled Transmission and
Echoing Telnet Option", <a href="./rfc726">RFC 726</a>, March 1977.
[<a id="ref-83">83</a>] Postel, J., and K. Harrenstien, "Time Protocol", <a href="./rfc868">RFC 868</a>,
Information Sciences Institute, May 1983.
[<a id="ref-84">84</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-85">85</a>] Postel, J. and J. Reynolds, "Telnet Binary Transmission",
<a href="./rfc856">RFC 856</a>, Information Sciences Institute, May 1983.
[<a id="ref-86">86</a>] Postel, J. and J. Reynolds, "Telnet Echo Option", <a href="./rfc857">RFC 857</a>,
Information Sciences Institute, May 1983.
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Documents
[<a id="ref-87">87</a>] Postel, J., and J. Reynolds, "Telnet Protocol Specification",
<a href="./rfc854">RFC 854</a>, Information Sciences Institute, May 1983.
[<a id="ref-88">88</a>] Postel, J. and J. Reynolds, "Telnet Status Option", <a href="./rfc859">RFC 859</a>,
Information Sciences Institute, May 1983.
[<a id="ref-89">89</a>] Postel, J. and J. Reynolds, "Telnet Suppress Go Ahead Option",
<a href="./rfc858">RFC 858</a>, Information Sciences Institute, May 1983.
[<a id="ref-90">90</a>] Postel, J. and J. Reynolds, "Telnet Timing Mark Option",
<a href="./rfc860">RFC 860</a>, Information Sciences Institute, May 1983.
[<a id="ref-91">91</a>] Reynolds, J. and J. Postel, "Official Internet Protocols",
<a href="./rfc1011">RFC 1011</a>, Information Sciences Institute, May 1987.
[<a id="ref-92">92</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-93">93</a>] Shuttleworth, B., "A Documentary of MFENet, a National
Computer Network", UCRL-52317, Lawrence Livermore Labs,
Livermore, California, June 1977.
[<a id="ref-94">94</a>] Silverman, S., "Output Marking Telnet Option", <a href="./rfc933">RFC 933</a>, MITRE,
January 1985.
[<a id="ref-95">95</a>] Sollins, K., "The TFTP Protocol (Revision 2)", <a href="./rfc783">RFC 783</a>,
MIT/LCS, June 1981.
[<a id="ref-96">96</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-97">97</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-98">98</a>] Sproull, R., and E. Thomas, "A Networks Graphics Protocol",
NIC 24308, August 1974.
[<a id="ref-99">99</a>] StJohns, M., "Authentication Service", <a href="./rfc931">RFC 931</a>, TPSC,
January 1985.
[<a id="ref-100">100</a>] Tappan, D. C., "The CRONUS Virtual Local Network", <a href="./rfc824">RFC 824</a>,
Bolt Beranek and Newman, August 1982.
[<a id="ref-101">101</a>] Taylor, J., "ERPC Functional Specification", Version 1.04,
HYDRA Computer Systems, Inc., July 1984.
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
Documents
[<a id="ref-102">102</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-103">103</a>] The High Level Protocol Group, "A Network Independent File
Transfer Protocol", INWG Protocol Note 86, December 1977.
[<a id="ref-104">104</a>] Tovar, "Telnet Extended ASCII Option", <a href="./rfc698">RFC 698</a>, Stanford
University-AI, July 1975.
[<a id="ref-105">105</a>] Uttal, J, J. Rothschild, and C. Kline, "Transparent
Integration of UNIX and MS-DOS", Locus Computing Corporation.
[<a id="ref-106">106</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-107">107</a>] Wancho, F., "Password Generator Protocol", <a href="./rfc972">RFC 972</a>, WSMR,
January 1986.
[<a id="ref-108">108</a>] Winston, I., "Two Methods for the Transmission of IP Datagrams
Over IEEE 802.3 Networks", <a href="./rfc948">RFC 948</a>, University Of
Pennsylvania, June 1985.
[<a id="ref-109">109</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.
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
People
PEOPLE
[<a id="ref-AGM">AGM</a>] Andy Malis BBN Malis@CCS.BBN.COM
[<a id="ref-AV">AV</a>] Al Vezza MIT AV@XX.LCS.MIT.EDU
[<a id="ref-AXH">AXH</a>] Arthur Hartwig UQNET ---none---
[<a id="ref-BA4">BA4</a>] Brian Anderson BBN baanders@CCQ.BBN.COM
[<a id="ref-BCH2">BCH2</a>] Barry Howard LLL Howard@LLL-MFE.ARPA
[<a id="ref-BN4">BN4</a>] Bill Nowicki SUN Nowicki@SUN.COM
[<a id="ref-CAK">CAK</a>] Chris Kent PURDUE CAK@PURDUE.EDU
[<a id="ref-DCP1">DCP1</a>] David Plummer MIT DCP@SYMBOLICS.ARPA
[<a id="ref-DDC1">DDC1</a>] David Clark MIT DClark@MIT-MULTICS.ARPA
[<a id="ref-DLM1">DLM1</a>] David Mills LINKABIT Mills@D.ISI.EDU
[<a id="ref-DPR">DPR</a>] David Reed MIT-LCS Reed@MIT-MULTICS.ARPA
[<a id="ref-DT15">DT15</a>] Daniel Tappan BBN Tappan@BBN.COM
[<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-EAK1">EAK1</a>] Earl Killian LLL EAK@S1-C.ARPA
[<a id="ref-EBM">EBM</a>] Eliot Moss MIT EBM@XX.LCS.MIT.EDU
[<a id="ref-FJW">FJW</a>] Frank J. Wancho WSMR WANCHO@SIMTEL20.ARPA
[<a id="ref-FRAN">FRAN</a>] Francine Perillo SRI Perillo@NIC.SRI.COM
[<a id="ref-GB7">GB7</a>] Gerd Beling DFVLR GBELING@ISI.EDU
[<a id="ref-GEOF">GEOF</a>] Geoff Goodfellow SRI Geoff@SRI-CSL.ARPA
[<a id="ref-GXP">GXP</a>] Gill Pratt MIT gill%mit-ccc@MC.LCS.MIT.EDU
[<a id="ref-HCF2">HCF2</a>] Harry Forsdick BBN Forsdick@A.BBN.COM
[<a id="ref-HWB">HWB</a>] Hans-Werner Braun MICHIGAN HWB@MCR.UMICH.EDU
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
People
[<a id="ref-IEEE">IEEE</a>] Vince Condello IEEE ---none---
[<a id="ref-JAKE">JAKE</a>] Jake Feinler SRI Feinler@SRI-NIC.ARPA
[<a id="ref-JBP">JBP</a>] Jon Postel ISI Postel@ISI.EDU
[<a id="ref-JBW1">JBW1</a>] Joseph Walters, Jr. BBN JWalters@CCX.BBN.COM
[<a id="ref-JD21">JD21</a>] Jonathan Dreyer BBN JDreyer@CCV.BBN.COM
[<a id="ref-JFH2">JFH2</a>] Jack Haverty BBN Haverty@CCV.BBN.COM
[<a id="ref-JFW">JFW</a>] Jon F. Wilkes STC Wilkes@STC.ARPA
[<a id="ref-JGH">JGH</a>] Jim Herman BBN Herman@CCJ.BBN.COM
[<a id="ref-JR17">JR17</a>] John L. Robinson CANADA Robinson@DMC-CRC.ARPA
[<a id="ref-JWF">JWF</a>] Jim Forgie LL jwf@LL-EN.ARPA
[<a id="ref-JXE2">JXE2</a>] Jeanne Evans UKMOD JME%RSRE.MOD.UK@CS.UCL.AC.UK
[<a id="ref-JXM">JXM</a>] Jeff Mogul Stanford ---none---
[<a id="ref-JXO">JXO</a>] Jack O'Neil ENCORE ---none---
[<a id="ref-JXP">JXP</a>] Joe Pato Apollo apollo!pato@EDDIE.MIT.EDU
[<a id="ref-KLH">KLH</a>] Ken Harrenstien SRI KLH@NIC.SRI.COM
[<a id="ref-LLP">LLP</a>] Larry Peterson PURDUE llp@PURDUE.EDU
[<a id="ref-MA">MA</a>] Mike Accetta CMU MIKE.ACCETTA@CMU-CS-A.EDU
[<a id="ref-MAE">MAE</a>] Marc A. Elvy HARVARD elvy@HARVARD.EDU
[<a id="ref-MAS3">MAS3</a>] Marc Solomon MDAC solomon@OFFICE-1.ARPA
[<a id="ref-MB">MB</a>] Michael Brescia BBN Brescia@CCV.BBN.COM
[<a id="ref-MBG">MBG</a>] Michael Greenwald MIT-LCS Greenwald@MIT-MULTICS.ARPA
[<a id="ref-MCSJ">MCSJ</a>] Mike StJohns TPSC StJohns@MIT-MULTICS.ARPA
[<a id="ref-MKL1">MKL1</a>] Mark Lottor MIT MKL@NIC.SRI.COM
[<a id="ref-MLC">MLC</a>] Mike Corrigan DDN Corrigan@DDN1.ARPA
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
People
[<a id="ref-MO2">MO2</a>] Michael O'Brien RAND OBrien@RAND-UNIX.ARPA
[<a id="ref-MRC">MRC</a>] Mark Crispin STANFORD
Admin.MRC@SU-SCORE.STANFORD.EDU
[<a id="ref-MTR">MTR</a>] Marshall Rose NRTC MRose@NRTC.ARPA
[<a id="ref-MXB">MXB</a>] Mike Berrow Relational Technology ---none---
[<a id="ref-MXR">MXR</a>] Mark A. Rosenstein MIT mark@BORAX.LCS.MIT.EDU
[<a id="ref-NC3">NC3</a>] J. Noel Chiappa MIT JNC@XX.LCS.MIT.EDU
[<a id="ref-PAM6">PAM6</a>] Paul McNabb RICE pam@PURDUE.EDU
[<a id="ref-PHD1">PHD1</a>] Pieter Ditmars BBN pditmars@CCX.BBN.COM
[<a id="ref-PK">PK</a>] Peter Kirstein UCL Kirstein@ISI.EDU
[<a id="ref-PL4">PL4</a>] Phil Lapsley BERKELEY phil@UCBARPA.BERKELEY.EDU
[<a id="ref-PM1">PM1</a>] Paul Mockapetris ISI Mockapetris@ISI.EDU
[<a id="ref-PXD">PXD</a>] Pete Delaney ECRC pete%ecrcvax@CSNET-RELAY.ARPA
[<a id="ref-RDB2">RDB2</a>] Robert Bressler BBN Bressler@CCW.BBN.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-RXM">RXM</a>] Robert Myhill BBN Myhill@CCS.BBN.COM
[<a id="ref-SA1">SA1</a>] Sten Andler ARPA andler.ibm-sj@RAND-RELAY.ARPA
[<a id="ref-SA2">SA2</a>] Saul Amarel ARPA Amarel@ISI.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
<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="./rfc1010">RFC 1010</a> - Assigned Numbers May 1987</span>
People
[<a id="ref-SXS">SXS</a>] Steve Silverman MITRE Blankert@MITRE-GATEWAY.ORG
[<a id="ref-SXS1">SXS1</a>] Susie Snitzer Britton-Lee ---none---
[<a id="ref-TXM">TXM</a>] Trudy Miller ACC Trudy@ACC.ARPA
[<a id="ref-UXB">UXB</a>] Ulf Bilting CHALMERS bilting@PURDUE.EDU
[<a id="ref-WJC2">WJC2</a>] Bill Croft STANFORD Croft@SUMEX-AIM.ARPA
[<a id="ref-WXB">WXB</a>] William L. Biagi CISCO ---none---
[<a id="ref-XEROX">XEROX</a>] Pam Cance XEROX Cance.OSBUnorth@XEROX.COM
[<a id="ref-ZSU">ZSU</a>] Zaw-Sing Su SRI ZSu@SRI-TSC.ARPA
Reynolds & Postel [Page 44]
</pre>
|