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
|
<pre>Network Working Group J. Reynolds
Request for Comments: 870 J. Postel
ISI
Obsoletes RFCs: <a href="./rfc820">820</a>, October 1983
<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>, <a href="./rfc755">755</a>,
750, 739, 604, 503, 433, 349
Obsoletes IENs: 127, 117, 93
<span class="h1">ASSIGNED NUMBERS</span>
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. The assignment
of numbers is also handled by Joyce. If you are developing a protocol
or application that will require the use of a link, socket, port,
protocol, or network number please contact Joyce to receive a number
assignment.
Joyce Reynolds
USC - Information Sciences Institute
4676 Admiralty Way
Marina del Rey, California 90292
phone: (213) 822-1511
ARPA mail: JKREYNOLDS@USC-ISIF
Most of the protocols mentioned here are documented in the RFC series of
notes. The more prominent and more generally used are documented in the
"Internet Protocol Transition Workbook" [<a href="#ref-16" title=""Internet Protocol Transition Workbook"">16</a>] or in the old "ARPANET
Protocol Handbook" [<a href="#ref-17" title=""ARPANET Protocol Handbook"">17</a>] prepared by the NIC. Some of the items listed
are undocumented. Further information on protocols can be found in the
memo "Official Protocols" [<a href="#ref-52" title=""Official Protocols"">52</a>].
In all cases the name and mailbox of the responsible individual is
indicated. In the lists that follow, a bracketed entry, e.g., [<a href="#ref-16" title=""Internet Protocol Transition Workbook"">16</a>,iii],
at the right hand margin of the page indicates a reference for the
listed protocol, where the number cites the document and the "iii" cites
the person.
<span class="grey">Reynolds & Postel [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey">Assigned Numbers <a href="./rfc870">RFC 870</a></span>
Network Numbers
ASSIGNED NETWORK NUMBERS
The network numbers listed here are used as internet addresses by the
Internet Protocol (IP) [<a href="#ref-16" title=""Internet Protocol Transition Workbook"">16</a>,<a href="#ref-47" title=""Internet Protocol - DARPA Internet Program Protocol Specification"">47</a>]. The IP uses a 32-bit address field
and divides that address into a network part and a "rest" or local
address part. The division takes 3 forms or classes.
The first type of address, or class A, has a 7-bit network number
and a 24-bit local address. The highest-order bit is set to 0.
This allows 128 class A networks.
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0| NETWORK | Local Address |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Class A Address
The second type of address, class B, has a 14-bit network number
and a 16-bit local address. The two highest-order bits are set to
1-0. This allows 16,384 class B networks.
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 0| NETWORK | Local Address |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Class B Address
The third type of address, class C, has a 21-bit network number
and a 8-bit local address. The three highest-order bits are set
to 1-1-0. This allows 2,097,152 class C networks.
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 1 0| NETWORK | Local Address |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Class C Address
Note: No addresses are allowed with the three highest-order bits
set to 1-1-1. These addresses (sometimes called "class D") are
reserved.
<span class="grey">Reynolds & Postel [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey">Assigned Numbers <a href="./rfc870">RFC 870</a></span>
Network Numbers
One commonly used notation for internet host addresses divides the
32-bit address into four 8-bit fields and specifies the value of each
field as a decimal number with the fields separated by periods. This
is called the "dotted decimal" notation. For example, the internet
address of ISIF in dotted decimal is 010.002.000.052, or 10.2.0.52.
The dotted decimal notation will be used in the listing of assigned
network numbers. The class A networks will have nnn.rrr.rrr.rrr, the
class B networks will have nnn.nnn.rrr.rrr, and the class C networks
will have nnn.nnn.nnn.rrr, where nnn represents part or all of a
network number and rrr represents part or all of a local address.
There are three catagories of users of Internet Addresses: Research,
Defense, and Commercial. To reflect the allocation of network
identifiers among the categories, a one-character code is placed to
the left of the network number (in the column marked by an asterisk):
R for Research and Development, D for DoD, and C for Commercial.
Numbers assigned for commercial use of IP family protocols, but not
for interworking with the ARPA or DoD Internets are marked with an
astrisk preceeding the number.
For various reasons, the assigned numbers of networks are sometimes
changed. To ease the transition the old number will be listed as
well. These "old number" entries will be marked with a "T" following
the number and preceeding the name, and the network name will be the
suffixed "-TEMP".
<span class="grey">Reynolds & Postel [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey">Assigned Numbers <a href="./rfc870">RFC 870</a></span>
Network Numbers
Assigned Network Numbers
Class A Networks
* Internet Address Name Network References
- ---------------- ---- ------- ----------
000.rrr.rrr.rrr Reserved [JBP]
R 003.rrr.rrr.rrr T RCC-NET-TEMP BBN RCC Network [SGC]
R 004.rrr.rrr.rrr SATNET Atlantic Satellite Network[DM11]
D 005.rrr.rrr.rrr T DEMO-PR-1-TEMPDemo-1 Packet Radio Network[LCS]
D 006.rrr.rrr.rrr T YPG-NET-TEMP Yuma Proving Grounds [<a href="#ref-2" title=""Specifications for the Interconnection of a Host and an IMP"">2</a>,BXA]
D 007.rrr.rrr.rrr T EDN-TEMP DCEC EDN [EC5]
R 008.rrr.rrr.rrr T BBN-NET-TEMP BBN Network [JSG5]
D 009.rrr.rrr.rrr T BRAGG-PR-TEMP Ft. Bragg Packet Radio Net [JEM]
R 010.rrr.rrr.rrr ARPANET ARPANET [<a href="#ref-2" title=""Specifications for the Interconnection of a Host and an IMP"">2</a>,<a href="#ref-17" title=""ARPANET Protocol Handbook"">17</a>,REK2]
C 012.rrr.rrr.rrr ATT ATT, Bell Labs [MH12]
C 014.rrr.rrr.rrr PDN Public Data Network [REK2]
R 018.rrr.rrr.rrr T MIT-TEMP MIT Network [<a href="#ref-11" title=""Revision of DSP Specification"">11</a>,<a href="#ref-51" title=""Protocols for the LCS Network"">51</a>,DDC2]
R 023.rrr.rrr.rrr MITRE MITRE Cablenet [<a href="#ref-54" title=""The MITRE Cablenet Project"">54</a>,APS]
D 024.rrr.rrr.rrr MINET MINET [<a href="#ref-2" title=""Specifications for the Interconnection of a Host and an IMP"">2</a>,DHH]
R 025.rrr.rrr.rrr RSRE-EXP RSRE Experimental [NM]
D 026.rrr.rrr.rrr MILNET MILNET [HH6]
R 027.rrr.rrr.rrr T NOSC-LCCN-TEMPNOSC / LCCN [RH6]
R 028.rrr.rrr.rrr WIDEBAND Wide Band Satellite Net [CJW2]
R 032.rrr.rrr.rrr UCL-TAC UCL TAC [PK]
R 035.rrr.rrr.rrr T RSRE-NULL-TEMPRSRE Null Network [NM]
R 036.rrr.rrr.rrr T SU-NET-TEMP Stanford University Network[JCM]
R 039.rrr.rrr.rrr T SRINET-TEMP SRI Local Network [GEOF]
R 041.rrr.rrr.rrr BBN-TEST-A BBN-GATE-TEST-A [RH6]
R 044.rrr.rrr.rrr AMPRNET Amateur Radio Experiment Net[HM]
R 045.rrr.rrr.rrr T C3-PR-TEMP Testbed Development PRNET [BG5]
R 046.rrr.rrr.rrr T Berkeley-TEMP Berkeley Ethernet [DAM1]
R 047.rrr.rrr.rrr T SAC-PR-TEMP SAC Packet Radio Network [BG5]
R 048.rrr.rrr.rrr NDRE-TIU NDRE-TIU [PS3]
R 050.rrr.rrr.rrr NTA-RING NDRE-RING [PS3]
001.rrr.rrr.rrr-002.rrr.rrr.rrr Unassigned [JBP]
011.rrr.rrr.rrr Unassigned [JBP]
013.rrr.rrr.rrr Unassigned [JBP]
015.rrr.rrr.rrr-017.rrr.rrr.rrr Unassigned [JBP]
019.rrr.rrr.rrr-022.rrr.rrr.rrr Unassigned [JBP]
029.rrr.rrr.rrr-031.rrr.rrr.rrr Unassigned [JBP]
033.rrr.rrr.rrr-034.rrr.rrr.rrr Unassigned [JBP]
037.rrr.rrr.rrr-038.rrr.rrr.rrr Unassigned [JBP]
040.rrr.rrr.rrr Unassigned [JBP]
042.rrr.rrr.rrr-043.rrr.rrr.rrr Unassigned [JBP]
049.rrr.rrr.rrr Unassigned [JBP]
051.rrr.rrr.rrr-126.rrr.rrr.rrr Unassigned [JBP]
127.rrr.rrr.rrr Reserved [JBP]
<span class="grey">Reynolds & Postel [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey">Assigned Numbers <a href="./rfc870">RFC 870</a></span>
Network Numbers
Class B Networks
* Internet Address Name Network References
- ---------------- ---- ------- ----------
128.000.rrr.rrr Reserved [JBP]
R 128.001.rrr.rrr BBN-TEST-B BBN-GATE-TEST-B [RH6]
R 128.002.rrr.rrr CMU-NET CMU-Ethernet [HDW2]
R 128.003.rrr.rrr LBL-CSAM LBL-CSAM-RESEARCH [MO1]<--***
R 128.004.rrr.rrr DCNET LINKABIT DCNET [DLM1]
R 128.005.rrr.rrr FORDNET FORD DCNET [DLM1]
R 128.006.rrr.rrr RUTGERS RUTGERS [CLH3]
R 128.007.rrr.rrr DFVLR DFVLR DCNET Network [HDC1]
R 128.008.rrr.rrr UMDNET Univ of Maryland DCNET [DLM1]
R 128.009.rrr.rrr ISI-NET USC-ISI Local Network [CMR]
R 128.010.rrr.rrr PURDUE-CS Purdue Computer Science [CAK]
R 128.011.rrr.rrr BBN-CRONUS BBN DOS Project [<a href="#ref-29" title=""The CRONUS Virtual Local Network"">29</a>,WIM]
R 128.012.rrr.rrr SU-NET Stanford University Net [JCM]
D 128.013.rrr.rrr MATNET Mobile Access Terminal Net[DM11]
R 128.014.rrr.rrr BBN-SAT-TEST BBN SATNET Test Net [DM11]
R 128.015.rrr.rrr S1NET LLL-S1-NET [EAK1]
R 128.016.rrr.rrr UCLNET University College London [PK]
D 128.017.rrr.rrr MATNET-ALT Mobile Access Terminal Alt[DM11]
R 128.018.rrr.rrr SRINET SRI Local Network [GEOF]
D 128.019.rrr.rrr EDN DCEC EDN [EC5]
D 128.020.rrr.rrr BRLNET BRLNET [<a href="#ref-2" title=""Specifications for the Interconnection of a Host and an IMP"">2</a>,MJM2]
R 128.021.rrr.rrr SF-PR-1 SF-1 Packet Radio Network [JEM]
R 128.022.rrr.rrr SF-PR-2 SF-2 Packet Radio Network [JEM]
R 128.023.rrr.rrr BBN-PR BBN Packet Radio Network [JAW3]
R 128.024.rrr.rrr ROCKWELL-PR Rockwell Packet Radio Net [EHP]
D 128.025.rrr.rrr BRAGG-PR Ft. Bragg Packet Radio Net [JEM]
D 128.026.rrr.rrr SAC-PR SAC Packet Radio Network [BG5]
D 128.027.rrr.rrr DEMO-PR-1 Demo-1 Packet Radio Network[LCS]
D 128.028.rrr.rrr C3-PR Testbed Development PR NET [BG5]
128.029.rrr.rrr Unassigned [JBP]
R 128.030.rrr.rrr MIT-NET MIT Local Network [DDC2]
R 128.031.rrr.rrr MIT-RES MIT Research Network [DDC2]
R 128.032.rrr.rrr UCB-ETHER UC Berkeley Ethernet [DAM1]
R 128.033.rrr.rrr BBN-NET BBN Network [JSG5]
R 128.034.rrr.rrr NOSC-LCCN NOSC / LCCN [RH6]
R 128.035.rrr.rrr CISLTESTNET1 Honeywell [<a href="#ref-25" title=""AFSDSC Hyperchannel RPQ Project Plan"">25</a>,<a href="#ref-26" title=""Multics MR11 PFS"">26</a>,RK1]
R 128.036.rrr.rrr YALE-NET YALE NET [<a href="#ref-61" title=""The Ethernet, A Local Area Network: Data Link Layer and Physical Layer Specification"">61</a>,JO5]
D 128.037.rrr.rrr YPG-NET Yuma Proving Grounds [<a href="#ref-2" title=""Specifications for the Interconnection of a Host and an IMP"">2</a>,BXA]
D 128.038.rrr.rrr NSWC-NET NSWC Local Host Net [RLH2]
128.039.rrr.rrr-191.254.rrr.rrr Unassigned [JBP]
191.255.rrr.rrr Reserved [JBP]
<span class="grey">Reynolds & Postel [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey">Assigned Numbers <a href="./rfc870">RFC 870</a></span>
Network Numbers
Class C Networks
* Internet Address Name Network References
- ---------------- ---- ------- ----------
192.000.000.rrr Reserved [JBP]
R 192.000.001.rrr BBN-TEST-C BBN-GATE-TEST-C [RH6]
192.000.002.rrr-192.000.255.rrr Unassigned [JBP]
R 192.001.000.rrr-192.004.255.rrr BBN local networks [SGC]
R 192.005.001.rrr CISLHYPERNET Honeywell [RK1]
R 192.005.002.rrr WISC Univ of Wisconsin Madison [RS23]
C 192.005.003.rrr HP-DESIGN-AIDS HP Design Aids [NXK]
C 192.005.004.rrr HP-TCG-UNIX Hewlett Packard TCG Unix [NXK]
192.005.005.rrr Unassigned [JBP]
192.005.006.rrr Unassigned [JBP]
R 192.005.007.rrr CIT-CS-NET Caltech-CS-Net [<a href="#ref-60" title=""The Caltech Computer Science Department Network"">60</a>,DSW]
R 192.005.008.rrr WASHINGTON University of Washington [JAR4]
R 192.005.009.rrr AERONET Aerospace Labnet [<a href="#ref-1" title="ATM-83(3920-01)-3">1</a>,LCN]
R 192.005.010.rrr ECLNET USC-ECL-CAMPUS-NET [MXB]
R 192.005.011.rrr CSS-RING SEISMIC-RESEARCH-NET [RR2]
R 192.005.012.rrr UTAH-NET UTAH-COMPUTER-SCIENCE-NET [RF1]
R 192.005.013.rrr CCNET Compion Network [<a href="#ref-61" title=""The Ethernet, A Local Area Network: Data Link Layer and Physical Layer Specification"">61</a>,FAS]
R 192.005.014.rrr RAND-NET RAND Network [<a href="#ref-61" title=""The Ethernet, A Local Area Network: Data Link Layer and Physical Layer Specification"">61</a>,JDG]
R 192.005.015.rrr NYU-NET NYU Network [EF5]
R 192.005.016.rrr LANL-LAND Los Alamos Dev LAN [<a href="#ref-61" title=""The Ethernet, A Local Area Network: Data Link Layer and Physical Layer Specification"">61</a>,JC11]
R 192.005.017.rrr NRL-NET Naval Research Lab [AP]
R 192.005.018.rrr IPTO-NET ARPA-IPTO Office Net [REK2]
R 192.005.019.rrr UCIICS UCI-ICS Res Net [MXR]
R 192.005.020.rrr CISLTTYNET Honeywell [RK1]
D 192.005.021.rrr BRLNET1 BRLNET1 [<a href="#ref-2" title=""Specifications for the Interconnection of a Host and an IMP"">2</a>,MJM2]
D 192.005.022.rrr BRLNET2 BRLNET2 [<a href="#ref-2" title=""Specifications for the Interconnection of a Host and an IMP"">2</a>,MJM2]
D 192.005.023.rrr BRLNET3 BRLNET3 [<a href="#ref-2" title=""Specifications for the Interconnection of a Host and an IMP"">2</a>,MJM2]
D 192.005.024.rrr BRLNET4 BRLNET4 [<a href="#ref-2" title=""Specifications for the Interconnection of a Host and an IMP"">2</a>,MJM2]
D 192.005.025.rrr BRLNET5 BRLNET5 [<a href="#ref-2" title=""Specifications for the Interconnection of a Host and an IMP"">2</a>,MJM2]
D 192.005.026.rrr NSRDCOA-NET NSRDC Office Auto Net [TC4]
D 192.005.027.rrr DTNSRDC-NET DTNSRDC-NET [TC4]
R 192.005.028.rrr RSRE-NULL RSRE-NULL [NM]
R 192.005.029.rrr RSRE-ACC RSRE-ACC [NM]
R 192.005.030.rrr RSRE-PR RSRE-PR [NM]
R 192.005.031.rrr SIEMENS-NET Siemens Research Network [PXN]
R 192.005.032.rrr CISLTESTNET2 Honeywell [<a href="#ref-25" title=""AFSDSC Hyperchannel RPQ Project Plan"">25</a>,<a href="#ref-26" title=""Multics MR11 PFS"">26</a>,RK1]
R 192.005.033.rrr CISLTESTNET3 Honeywell [<a href="#ref-25" title=""AFSDSC Hyperchannel RPQ Project Plan"">25</a>,<a href="#ref-26" title=""Multics MR11 PFS"">26</a>,RK1]
R 192.005.034.rrr CISLTESTNET4 Honeywell [<a href="#ref-25" title=""AFSDSC Hyperchannel RPQ Project Plan"">25</a>,<a href="#ref-26" title=""Multics MR11 PFS"">26</a>,RK1]
R 192.005.035.rrr RIACS USRA [<a href="#ref-61" title=""The Ethernet, A Local Area Network: Data Link Layer and Physical Layer Specification"">61</a>,RLB1]
R 192.005.036.rrr CORNELL-CS CORNELL CS Research [<a href="#ref-61" title=""The Ethernet, A Local Area Network: Data Link Layer and Physical Layer Specification"">61</a>,DK2]
R 192.005.037.rrr UR-CS-NET U of R CS 3Mb Net [<a href="#ref-31" title=""Ethernet: Distributed Packet Switching for Local Computer Networks"">31</a>,LB1]
R 192.005.038.rrr SRI-C3ETHER SRI-AITAD C3ETHERNET [<a href="#ref-61" title=""The Ethernet, A Local Area Network: Data Link Layer and Physical Layer Specification"">61</a>,BG5]
R 192.005.039.rrr UDEL-EECIS Udel EECIS LAN [<a href="#ref-58" title=""The Ethernet - A Local Area Network"">58</a>,CC2]
R 192.005.040.rrr PUCC-NET-A PURDUE Comp Cntr Net [JXS]
<span class="grey">Reynolds & Postel [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey">Assigned Numbers <a href="./rfc870">RFC 870</a></span>
Network Numbers
D 192.005.041.rrr WISLAN WIS Research LAN [<a href="#ref-54" title=""The MITRE Cablenet Project"">54</a>,JRM1]
D 192.005.042.rrr AFDSC-HYPER AFDSC Hypernet [MCSJ]
R 192.005.043.rrr CUCSNET Columbia CS Net [<a href="#ref-61" title=""The Ethernet, A Local Area Network: Data Link Layer and Physical Layer Specification"">61</a>,LH2]
192.005.044.rrr-192.005.255.rrr Unassigned [JBP]
C*192.006.000.rrr-192.006.255.rrr Hewlett Packard [AXG]
C*192.007.000.rrr-192.007.255.rrr Computer Consoles, Inc. [RA11]
C*192.008.000.rrr-192.008.255.rrr Spartacus Computers, Inc. [SXM]
192.009.000.rrr-223.255.254.rrr Unassigned [JBP]
223.255.255.rrr Reserved [JBP]
Other Reserved Internet Addresses
* Internet Address Name Network References
- ---------------- ---- ------- ----------
224.000.000.000-255.255.255.255 Reserved [JBP]
<span class="grey">Reynolds & Postel [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey">Assigned Numbers <a href="./rfc870">RFC 870</a></span>
Network Numbers
Network Totals
Assigned for the Internet
Class A B C Total
Research 10 27 1055 1092
Defense 2 10 9 21
Commercial 2 0 2 4
Total 14 37 1066 1117
Allocated for Internet and Other Uses
Class A B C Total
Research 10 27 1055 1092
Defense 2 10 9 21
Commercial 2 0 770 772
Total 14 37 1834 1885
Maximum Allowed
Class A B C Total
Research 8 1024 65536 66568
Defense 24 3072 458752 461848
Commercial 94 12286 1572862 1585242
Total 126 16382 2097150 2113658
<span class="grey">Reynolds & Postel [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey">Assigned Numbers <a href="./rfc870">RFC 870</a></span>
Internet Version Numbers
ASSIGNED INTERNET VERSION NUMBERS
In the Internet Protocol (IP) [<a href="#ref-16" title=""Internet Protocol Transition Workbook"">16</a>,<a href="#ref-47" title=""Internet Protocol - DARPA Internet Program Protocol Specification"">47</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 Octal Version References
------- ----- ------- ----------
0 0 Reserved [JBP]
1-3 1-3 Unassigned [JBP]
4 4 Internet Protocol [<a href="#ref-16" title=""Internet Protocol Transition Workbook"">16</a>,<a href="#ref-47" title=""Internet Protocol - DARPA Internet Program Protocol Specification"">47</a>,JBP]
5 5 ST Datagram Mode [<a href="#ref-18" title=""ST - A Proposed Internet Stream Protocol"">18</a>,JWF]
6-14 6-16 Unassigned [JBP]
15 17 Reserved [JBP]
ASSIGNED INTERNET PROTOCOL NUMBERS
In the Internet Protocol (IP) [<a href="#ref-16" title=""Internet Protocol Transition Workbook"">16</a>,<a href="#ref-47" title=""Internet Protocol - DARPA Internet Program Protocol Specification"">47</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 Octal Protocol References
------- ----- ---------------- ----------
0 0 Reserved [JBP]
1 1 ICMP [<a href="#ref-16" title=""Internet Protocol Transition Workbook"">16</a>,<a href="#ref-40" title=""Internet Control Message Protocol - DARPA Internet Program Protocol Specification"">40</a>,JBP]
2 2 Unassigned [JBP]
3 3 Gateway-to-Gateway [<a href="#ref-24" title=""The DARPA Internet Gateway"">24</a>,MB]
4 4 Unassigned [JBP]
5 5 Stream (ST) [<a href="#ref-18" title=""ST - A Proposed Internet Stream Protocol"">18</a>,JWF]
6 6 Transmission Control (TCP) [<a href="#ref-16" title=""Internet Protocol Transition Workbook"">16</a>,<a href="#ref-48" title=""Transmission Control Protocol - DARPA Internet Program Protocol Specification"">48</a>,JBP]
7 7 UCL [PK]
8 10 Exterior Gateway Protocol (EGP) [<a href="#ref-53" title=""Exterior Gateway Protocol"">53</a>,RH6]
9 11 Unassigned [JBP]
10 12 BBN RCC Monitoring [SGC]
11 13 NVP [<a href="#ref-12" title=""Specifications for the Network Voice Protocol"">12</a>,SC3]
12 14 PUP [<a href="#ref-6" title=""PUP: An Internetwork Architecture"">6</a>,EAT3]
13-14 15-16 Unassigned [JBP]
15 17 Cross Net Debugger (XNET) [<a href="#ref-23" title=""XNET Formats for Internet Protocol Version 4"">23</a>,JFH2]
16 20 Chaos Stream [NC3]
17 21 User Datagram (UDP) [<a href="#ref-16" title=""Internet Protocol Transition Workbook"">16</a>,<a href="#ref-46" title=""User Datagram Protocol"">46</a>,JBP]
18 22 Multiplexing [<a href="#ref-13" title=""Multiplexing Protocol"">13</a>,JBP]
19 23 DCN Measurement Subsystems [DLM1]
20 24 Host Monitoring (HMP) [<a href="#ref-28" title=""A Host Monitoring Protocol"">28</a>,RH6]
21 25 Packet Radio Measurement [ZSU]
<span class="grey">Reynolds & Postel [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey">Assigned Numbers <a href="./rfc870">RFC 870</a></span>
Internet Protocol Numbers
22 26 XEROX NS IDP [<a href="#ref-62" title=""Internet Transport Protocols"">62</a>,LLG]
23 27 Trunk-1 [BML]
24 30 Trunk-2 [BML]
25 31 Leaf-1 [BML]
26 32 Leaf-2 [BML]
27-60 33-74 Unassigned [JBP]
61 75 any host internal protocol [JBP]
62 76 CFTP [<a href="#ref-19" title=""CFTP"">19</a>,HCF2]
63 77 any local network [JBP]
64 100 SATNET and Backroom EXPAK [DM11]
65 101 MIT Subnet Support [NC3]
66 102 MIT VAX Remote Disk Protocol [MBG]
67 103 Internet Pluribus Packet Core [DM11]
68 104 Unassigned [JBP]
69 105 SATNET Monitoring [DM11]
70 106 Unassigned [JBP]
71 107 Internet Packet Core Utility [DM11]
72-75 110-113 Unassigned [JBP]
76 114 Backroom SATNET Monitoring [DM11]
77 115 Unassigned [JBP]
78 116 WIDEBAND Monitoring [DM11]
79 117 WIDEBAND EXPAK [DM11]
80-254 120-376 Unassigned [JBP]
255 377 Reserved [JBP]
<span class="grey">Reynolds & Postel [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey">Assigned Numbers <a href="./rfc870">RFC 870</a></span>
Port Numbers
ASSIGNED PORT NUMBERS
Ports are used in the TCP [<a href="#ref-16" title=""Internet Protocol Transition Workbook"">16</a>,<a href="#ref-48" title=""Transmission Control Protocol - DARPA Internet Program Protocol Specification"">48</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-16" title=""Internet Protocol Transition Workbook"">16</a>,<a href="#ref-46" title=""User Datagram Protocol"">46</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 Octal Description References
------- ----- ----------- ----------
0 0 Reserved [JBP]
1-4 1-4 Unassigned [JBP]
5 5 Remote Job Entry [<a href="#ref-8" title=""Remote Job Entry Protocol"">8</a>,<a href="#ref-17" title=""ARPANET Protocol Handbook"">17</a>,JBP]
7 7 Echo [<a href="#ref-38" title=""Echo Protocol"">38</a>,JBP]
9 11 Discard [<a href="#ref-37" title=""Discard Protocol"">37</a>,JBP]
11 13 Active Users [<a href="#ref-34" title=""Active Users"">34</a>,JBP]
13 15 Daytime [<a href="#ref-36" title=""Daytime Protocol"">36</a>,JBP]
15 17 Who is up or NETSTAT [JBP]
17 21 Quote of the Day [<a href="#ref-43" title=""Quote of the Day Protocol"">43</a>,JBP]
19 23 Character Generator [<a href="#ref-35" title=""Character Generator Protocol"">35</a>,JBP]
20 24 File Transfer (Default Data) [<a href="#ref-16" title=""Internet Protocol Transition Workbook"">16</a>,<a href="#ref-39" title=""File Transfer Protocol"">39</a>,JBP]
21 25 File Transfer (Control) [<a href="#ref-16" title=""Internet Protocol Transition Workbook"">16</a>,<a href="#ref-39" title=""File Transfer Protocol"">39</a>,JBP]
23 27 Telnet [<a href="#ref-50" title=""Telnet Protocol Specification"">50</a>,JBP]
25 31 SMTP [<a href="#ref-16" title=""Internet Protocol Transition Workbook"">16</a>,<a href="#ref-45" title=""Simple Mail Transfer Protocol"">45</a>,JBP]
27 33 NSW User System FE [<a href="#ref-14" title=""Semi-Annual Technical Report"">14</a>,RHT]
29 35 MSG ICP [<a href="#ref-32" title=""MSG: The Interprocess Communication Facility for the National Software Works"">32</a>,RHT]
31 37 MSG Authentication [<a href="#ref-32" title=""MSG: The Interprocess Communication Facility for the National Software Works"">32</a>,RHT]
33 41 Unassigned [JBP]
35 43 Any Printer Server [JBP]
37 45 Time [<a href="#ref-49" title=""Time Protocol"">49</a>,JBP]
39 47 Unassigned [JBP]
41 51 Graphics [<a href="#ref-17" title=""ARPANET Protocol Handbook"">17</a>,<a href="#ref-57" title=""A Networks Graphics Protocol"">57</a>,JBP]
42 52 Host Name Server [<a href="#ref-16" title=""Internet Protocol Transition Workbook"">16</a>,<a href="#ref-42" title=""Name Server"">42</a>,JBP]
43 53 NICNAME (WhoIs) [<a href="#ref-16" title=""Internet Protocol Transition Workbook"">16</a>,<a href="#ref-22" title=""Nicname/Whois"">22</a>,JAKE]
44 54 MPM FLAGS Protocol [JBP]
45 55 Message Processing Module (receive) [<a href="#ref-41" title=""Internet Message Protocol"">41</a>,JBP]
46 56 MPM (default send) [<a href="#ref-41" title=""Internet Message Protocol"">41</a>,JBP]
47 57 NI FTP [<a href="#ref-59" title=""A Network Independent File Transfer Protocol"">59</a>,<a href="#ref-SK">SK</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">Assigned Numbers <a href="./rfc870">RFC 870</a></span>
Port Numbers
49 61 Login Host Protocol [PXD]
51 63 IMP Logical Address Maintenance [<a href="#ref-30" title=""Logical Addressing Implementation Specification"">30</a>,AGM]
53 65 Domain Name Server [PM1]
55 67 ISI Graphics Language [<a href="#ref-5" title=""Graphics Language (version 2.1)"">5</a>,RB6]
57 71 Any Private Terminal Access [JBP]
59 73 Any Private File Service [JBP]
61 75 NIMAIL [<a href="#ref-3" title=""A Simple NIFTP-Based Mail System"">3</a>,<a href="#ref-SK">SK</a>]
63 77 Unassigned [JBP]
65 101 Unassigned [JBP]
67 103 Datacomputer at CCA [<a href="#ref-10" title=""Datacomputer Version 5/4 User Manual"">10</a>,JZS]
69 105 Trivial File Transfer [<a href="#ref-16" title=""Internet Protocol Transition Workbook"">16</a>,<a href="#ref-55" title=""The TFTP Protocol (Revision 2)"">55</a>,KRS]
71 107 NETRJS [<a href="#ref-7" title=""NETRJS Protocol"">7</a>,<a href="#ref-17" title=""ARPANET Protocol Handbook"">17</a>,RTB]
72 110 NETRJS [<a href="#ref-7" title=""NETRJS Protocol"">7</a>,<a href="#ref-17" title=""ARPANET Protocol Handbook"">17</a>,RTB]
73 111 NETRJS [<a href="#ref-7" title=""NETRJS Protocol"">7</a>,<a href="#ref-17" title=""ARPANET Protocol Handbook"">17</a>,RTB]
74 112 NETRJS [<a href="#ref-7" title=""NETRJS Protocol"">7</a>,<a href="#ref-17" title=""ARPANET Protocol Handbook"">17</a>,RTB]
75 113 Any Private Dial Out Service [JBP]
77 115 Any Private RJE Service [JBP]
79 117 Finger (Name) [<a href="#ref-17" title=""ARPANET Protocol Handbook"">17</a>,<a href="#ref-20" title=""Name/Finger"">20</a>,KLH]
81 121 HOSTS2 Name Server [EAK1]
83 123 MIT ML Device [DPR]
85 125 MIT ML Device [DPR]
87 127 any terminal link [JBP]
89 131 SU/MIT Telnet Gateway [MRC]
91 133 MIT Dover Spooler [EBM]
93 135 Device Control Protocol [DCT]
95 137 SUPDUP [<a href="#ref-15" title=""SUPDUP Protocol"">15</a>,MRC]
97 141 Datacomputer Status [<a href="#ref-10" title=""Datacomputer Version 5/4 User Manual"">10</a>,JZS]
99 143 Metagram Relay [GEOF]
101 145 NIC Host Name Server [<a href="#ref-16" title=""Internet Protocol Transition Workbook"">16</a>,<a href="#ref-21" title=""Hostnames Server"">21</a>,JAKE]
103 147 Unassigned [JBP]
105 151 CSNET Mailbox Name Server (Program) [<a href="#ref-56" title=""The CSNET Name Server"">56</a>,MHS1]
107 153 Remote Telnet Service [<a href="#ref-44" title=""Remote Telnet Service"">44</a>,JBP]
109-129 155-201 Unassigned [JBP]
131 203 Datacomputer [<a href="#ref-10" title=""Datacomputer Version 5/4 User Manual"">10</a>,JZS]
132-223 204-337 Reserved [JBP]
224-241 340-361 Unassigned [JBP]
243 363 Survey Measurement [<a href="#ref-4" title=""A Report on the Survey Project"">4</a>,AV]
245 365 LINK [<a href="#ref-9" title=""Inter-Entity Communication -- An Experiment"">9</a>,RDB2]
247-255 367-377 Unassigned [JBP]
<span class="grey">Reynolds & Postel [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey">Assigned Numbers <a href="./rfc870">RFC 870</a></span>
Autonomous System Numbers
ASSIGNED AUTONOMOUS SYSTEM NUMBERS
The Exterior Gateway Protocol (EGP) [<a href="#ref-53" title=""Exterior Gateway Protocol"">53</a>] specifies that groups of
gateways may form autonomous systems. The EGP provides a 16-bit
field for identifying such systems. The values of this field are
registered here.
Autonomous System Numbers:
Decimal Description References
------- ----------- ----------
0 Reserved [JBP]
1 The BBN Gateways [MB]
2 The DCN Gateways [DLM1]
3 The MIT Gateways [LM8]
4-65534 Unassigned [JBP]
65535 Reserved [JBP]
<span class="grey">Reynolds & Postel [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey">Assigned Numbers <a href="./rfc870">RFC 870</a></span>
ARPANET Link Numbers
ASSIGNED 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 low order
4 bits of the message-id field are to be zero unless explicitly
specified otherwise for the particular protocol used on that link.
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>].
Link Assignments:
Decimal Octal Description References
------- ----- ----------- ----------
0 0 Reserved [JBP]
1-149 1-225 Unassigned [JBP]
150 226 Xerox NS IP [<a href="#ref-62" title=""Internet Transport Protocols"">62</a>,LLG]
151 227 Unassigned [JBP]
152 230 PARC Universal Protocol [<a href="#ref-6" title=""PUP: An Internetwork Architecture"">6</a>,EAT3]
153 231 TIP Status Reporting [<a href="#ref-JGH">JGH</a>]
154 232 TIP Accounting [<a href="#ref-JGH">JGH</a>]
155 233 Internet Protocol (regular) [<a href="#ref-16" title=""Internet Protocol Transition Workbook"">16</a>,<a href="#ref-47" title=""Internet Protocol - DARPA Internet Program Protocol Specification"">47</a>,JBP]
156-158 234-236 Internet Protocol (experimental) [<a href="#ref-16" title=""Internet Protocol Transition Workbook"">16</a>,<a href="#ref-47" title=""Internet Protocol - DARPA Internet Program Protocol Specification"">47</a>,JBP]
159-195 237-303 Unassigned [JBP]
196-255 304-377 Experimental Protocols [JBP]
248-255 370-377 Network Maintenance [<a href="#ref-JGH">JGH</a>]
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.
Assignments:
Ethernet Exp. Ethernet Description References
-------------- -------------- ----------- ----------
decimal Hex decimal octal
512 02,00 512 1000 XEROX PUP [<a href="#ref-6" title=""PUP: An Internetwork Architecture"">6</a>,EAT3]
1536 06,00 1536 3000 XEROX NS IDP [<a href="#ref-62" title=""Internet Transport Protocols"">62</a>,LLG]
2048 08,00 513 1001 DOD IP [<a href="#ref-16" title=""Internet Protocol Transition Workbook"">16</a>,<a href="#ref-47" title=""Internet Protocol - DARPA Internet Program Protocol Specification"">47</a>,JBP]
2054 08,06 - - Address Res [<a href="#ref-33" title=""An Ethernet Address Resolution Protocol or Converting Network Protocol Addresses to 48-bit Ethernet Addresses for Transmission on Ethernet Hardware"">33</a>,DCP1]
<span class="grey">Reynolds & Postel [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey">Assigned Numbers <a href="./rfc870">RFC 870</a></span>
Public Data Network Numbers
ASSIGNED 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).
Assignments:
Internet Public Data Net Description References
--------------- ----------------- ----------- ----------
014.000.000.000 Reserved [JBP]
014.000.000.001 3110-317-00035 00 PURDUE-TN [CAK]
014.000.000.002 3110-608-00027 00 UWISC-TN [CAK]
014.000.000.003 3110-302-00024 00 UDEL-TN [CAK]
014.000.000.004 2342-192-00149 23 UCL-VTEST [PK]
014.000.000.005 2342-192-00300 23 UCL-TG [PK]
014.000.000.006 2342-192-00300 25 UK-SATNET [PK]
014.000.000.007 3110-608-00024 00 UWISC-IBM [MHS1]
014.000.000.008 3110-213-00045 00 RAND-TN [MO2]
014.000.000.009 2342-192-00300 23 UCL-CS [PK]
014.000.000.010 3110-617-00025 00 BBN-VAN-GW [JD21]
014.000.000.011-014.255.255.254 Unassigned [JBP]
014.255.255.255 Reserved [JBP]
The standard for transmission of IP datagrams over the Public Data
Network is specified in [<a href="#ref-27" title=""A Standard for the Transmission of IP Datagrams Over Public Data Networks"">27</a>].
<span class="grey">Reynolds & Postel [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey">Assigned Numbers <a href="./rfc870">RFC 870</a></span>
Documents
DOCUMENTS
---------
[<a id="ref-1">1</a>] Aerospace, Internal Report, ATM-83(3920-01)-3, 1982.
[<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>] Bennett, C., "A Simple NIFTP-Based Mail System", IEN 169,
University College, London, January 1981.
[<a id="ref-4">4</a>] Bhushan, A., "A Report on the Survey Project", <a href="./rfc530">RFC 530</a>,
NIC 17375, 22 June 1973.
[<a id="ref-5">5</a>] Bisbey, R., D. Hollingworth, and B. Britt, "Graphics Language
(version 2.1)", ISI/TM-80-18, USC/Information Sciences
Institute, July 1980.
[<a id="ref-6">6</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-7">7</a>] Braden, R., "NETRJS Protocol", <a href="./rfc740">RFC 740</a>, NIC 42423,
22 November 1977. Also in [<a href="#ref-17" title=""ARPANET Protocol Handbook"">17</a>].
[<a id="ref-8">8</a>] Bressler, B., "Remote Job Entry Protocol", <a href="./rfc407">RFC 407</a>, NIC
12112, 16 October 72. Also in [<a href="#ref-17" title=""ARPANET Protocol Handbook"">17</a>].
[<a id="ref-9">9</a>] Bressler, R., "Inter-Entity Communication -- An Experiment",
<a href="./rfc441">RFC 441</a>, NIC 13773, 19 January 1973.
[<a id="ref-10">10</a>] CCA, "Datacomputer Version 5/4 User Manual", Computer
Corporation of America, August 1979.
[<a id="ref-11">11</a>] Clark, D., "Revision of DSP Specification", Local Network
Note 9, Laboratory for Computer Science, MIT, 17 June 1977.
[<a id="ref-12">12</a>] Cohen, D., "Specifications for the Network Voice Protocol",
<a href="./rfc741">RFC 741</a>, ISI/RR 7539, USC/Information Sciences Institute,
March 1976.
[<a id="ref-13">13</a>] Cohen, D. and J. Postel, "Multiplexing Protocol", IEN 90,
USC/Information Sciences Institute, May 1979.
<span class="grey">Reynolds & Postel [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey">Assigned Numbers <a href="./rfc870">RFC 870</a></span>
Documents
[<a id="ref-14">14</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, 16 August 1976.
[<a id="ref-15">15</a>] Crispin, M., "SUPDUP Protocol", <a href="./rfc734">RFC 734</a>, NIC 41953,
7 October 1977. Also in [<a href="#ref-17" title=""ARPANET Protocol Handbook"">17</a>].
[<a id="ref-16">16</a>] Feinler, E., "Internet Protocol Transition Workbook", Network
Information Center, SRI International, March 1982.
[<a id="ref-17">17</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-18">18</a>] Forgie, J., "ST - A Proposed Internet Stream Protocol",
IEN 119, M.I.T. Lincoln Laboratory, September 1979.
[<a id="ref-19">19</a>] Forsdick, H., "CFTP", Network Message, Bolt Berenak and
Newman, January 1982.
[<a id="ref-20">20</a>] Harrenstien, K., "Name/Finger", <a href="./rfc742">RFC 742</a>, NIC 42758,
30 December 1977. Also in [<a href="#ref-17" title=""ARPANET Protocol Handbook"">17</a>].
[<a id="ref-21">21</a>] Harrenstien, K., V. White, and E. Feinler, "Hostnames Server",
<a href="./rfc811">RFC 811</a>, SRI International, March 1982.
[<a id="ref-22">22</a>] Harrenstien, K., and V. White, "Nicname/Whois", <a href="./rfc812">RFC 812</a>, SRI
International, March 1982.
[<a id="ref-23">23</a>] Haverty, J., "XNET Formats for Internet Protocol Version 4",
IEN 158, October 1980.
[<a id="ref-24">24</a>] Hinden, R., A. Sheltzer, "The DARPA Internet Gateway",
<a href="./rfc823">RFC 823</a>, September 1982.
[<a id="ref-25">25</a>] Honeywell CISL, Internal Document, "AFSDSC Hyperchannel RPQ
Project Plan".
[<a id="ref-26">26</a>] Honeywell CISL, Internal Document, "Multics MR11 PFS".
[<a id="ref-27">27</a>] Korb, John T., "A Standard for the Transmission of IP
Datagrams Over Public Data Networks", <a href="./rfc877">RFC 877</a>, Purdue
University, September 1983.
<span class="grey">Reynolds & Postel [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey">Assigned Numbers <a href="./rfc870">RFC 870</a></span>
Documents
[<a id="ref-28">28</a>] Littauer, B., "A Host Monitoring Protocol", IEN 197, Bolt
Berenak and Newman, September 1981.
[<a id="ref-29">29</a>] Macgregor, W., and D. Tappan, "The CRONUS Virtual Local
Network", <a href="./rfc824">RFC 824</a>, Bolt Beranek and Newman, 22 August 1982.
[<a id="ref-30">30</a>] Malis, A., "Logical Addressing Implementation Specification",
BBN Report 5256, pp 31-36, May 1983.
[<a id="ref-31">31</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-32">32</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 24 December 1976.
[<a id="ref-33">33</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-34">34</a>] Postel, J., "Active Users", <a href="./rfc866">RFC 866</a>, USC/Information Sciences
Institute, May 1983.
[<a id="ref-35">35</a>] Postel, J., "Character Generator Protocol", <a href="./rfc864">RFC 864</a>,
USC/Information Sciences Institute, May 1983.
[<a id="ref-36">36</a>] Postel, J., "Daytime Protocol", <a href="./rfc867">RFC 867</a>, USC/Information
Sciences Institute, May 1983.
[<a id="ref-37">37</a>] Postel, J., "Discard Protocol", <a href="./rfc863">RFC 863</a>, USC/Information
Sciences Institute, May 1983.
[<a id="ref-38">38</a>] Postel, J., "Echo Protocol", <a href="./rfc862">RFC 862</a>, USC/Information Sciences
Institute, May 1983.
[<a id="ref-39">39</a>] Postel, J., "File Transfer Protocol", <a href="./rfc765">RFC 765</a>, IEN 149,
USC/Information Sciences Institute, June 1980.
[<a id="ref-40">40</a>] Postel, J., "Internet Control Message Protocol - DARPA
Internet Program Protocol Specification", <a href="./rfc792">RFC 792</a>,
USC/Information Sciences Institute, September 1981.
[<a id="ref-41">41</a>] Postel, J., "Internet Message Protocol", <a href="./rfc759">RFC 759</a>, IEN 113,
USC/Information Sciences Institute, August 1980.
<span class="grey">Reynolds & Postel [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey">Assigned Numbers <a href="./rfc870">RFC 870</a></span>
Documents
[<a id="ref-42">42</a>] Postel, J., "Name Server", IEN 116, USC/Information Sciences
Institute, August 1979.
[<a id="ref-43">43</a>] Postel, J., "Quote of the Day Protocol", <a href="./rfc865">RFC 865</a>,
USC/Information Sciences Institute, May 1983.
[<a id="ref-44">44</a>] Postel, J., "Remote Telnet Service", <a href="./rfc818">RFC 818</a>, USC/Information
Sciences Institute, November 1982.
[<a id="ref-45">45</a>] Postel, J., "Simple Mail Transfer Protocol", <a href="./rfc821">RFC 821</a>,
USC/Information Sciences Institute, August 1982.
[<a id="ref-46">46</a>] Postel, J., "User Datagram Protocol", <a href="./rfc768">RFC 768</a> USC/Information
Sciences Institute, August 1980.
[<a id="ref-47">47</a>] Postel, J., ed., "Internet Protocol - DARPA Internet Program
Protocol Specification", <a href="./rfc791">RFC 791</a>, USC/Information Sciences
Institute, September 1981.
[<a id="ref-48">48</a>] Postel, J., ed., "Transmission Control Protocol - DARPA
Internet Program Protocol Specification", <a href="./rfc793">RFC 793</a>,
USC/Information Sciences Institute, September 1981.
[<a id="ref-49">49</a>] Postel, J., and K. Harrenstien, "Time Protocol", <a href="./rfc868">RFC 868</a>,
USC/Information Sciences Institute, May 1983.
[<a id="ref-50">50</a>] Postel, J., and J. Reynolds, "Telnet Protocol Specification",
<a href="./rfc854">RFC 854</a>, USC/Information Sciences Institute, May 1983.
[<a id="ref-51">51</a>] Reed, D., "Protocols for the LCS Network", Local Network Note
3, Laboratory for Computer Science, MIT, 29 November 1976.
[<a id="ref-52">52</a>] Reynolds, J. and J. Postel, "Official Protocols", <a href="./rfc880">RFC 880</a>,
USC/Information Sciences Institute, October 1983.
[<a id="ref-53">53</a>] Rosen, E., "Exterior Gateway Protocol" <a href="./rfc827">RFC 827</a>, Bolt Berenak
and Newman, October 1982.
[<a id="ref-54">54</a>] Skelton, A., S. Holmgren, and D. Wood, "The MITRE Cablenet
Project", IEN 96, April 1979.
[<a id="ref-55">55</a>] Sollins, K., "The TFTP Protocol (Revision 2)", <a href="./rfc783">RFC 783</a>,
MIT/LCS, June 1981.
[<a id="ref-56">56</a>] Solomon, M., L. Landweber, and D, Neuhengen, "The CSNET Name
Server", Computer Networks, v.6, n.3, pp. 161-172, July 1982.
<span class="grey">Reynolds & Postel [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey">Assigned Numbers <a href="./rfc870">RFC 870</a></span>
Documents
[<a id="ref-57">57</a>] Sproull, R., and E. Thomas, "A Networks Graphics Protocol",
NIC 24308, 16 August 1974. Also in [<a href="#ref-17" title=""ARPANET Protocol Handbook"">17</a>].
[<a id="ref-58">58</a>] "The Ethernet - A Local Area Network", Version 1.0, Digital
Equipment Corporation, Intel Corporation, Xerox Corporation,
September 1980.
[<a id="ref-59">59</a>] The High Level Protocol Group, "A Network Independent File
Transfer Protocol", INWG Protocol Note 86, December 1977.
[<a id="ref-60">60</a>] Whelan, D., "The Caltech Computer Science Department Network",
5052:DF:82, Caltech Computer Science Department, 1982.
[<a id="ref-61">61</a>] 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-62">62</a>] XEROX, "Internet Transport Protocols", XSIS 028112, Xerox
Corporation, Stamford, Connecticut, December 1981.
<span class="grey">Reynolds & Postel [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey">Assigned Numbers <a href="./rfc870">RFC 870</a></span>
People
PEOPLE
------
[AGM] Andy Malis BBN Malis@BBN-UNIX
[APS] Anita Skelton MITRE skelton@MITRE
[AP] Alan Parker NRL parker@NRL-CSS
[AV] Al Vezza MIT AV@MIT-XX
[AXG] Atul Garg HP ---none---
[BG5] Bob Gilligan SRI Gilligan@SRI-KL
[BML] Barry Leiner ARPA Leiner@USC-ISIA
[BXA] Bobby W. Allen YPG WYMER@OFFICE
[CAK] Chris Kent PURDUE cak@PURDUE
[CC2] Chase Cotton UDEL Cotton@Udel-EE
[CJW2] Cliff Weinstein LL cjw@LL-11
[CLH3] Charles Hedrick RUTGERS Hedrick@RUTGERS
[CMR] Craig Rogers ISI Rogers@USC-ISIB
[DAM1] David A. Mosher UCB Mosher@BERKELEY
[DCP1] David Plummer MIT DCP@MIT-MC
[DCT] Dan Tappan BBN Tappan@BBNG
[DDC2] Dave Clark MIT-LCS Clark@MIT-Multics
[DHH] Doug Hunt BBN DHunt@BBN-Unix
[DK2] Dean B. Krafft CORNELL Dean@CORNELL
[DLM1] David Mills LINKABIT Mills@USC-ISID
[DM11] Dale McNeill BBN mcneill@BBN-Unix
[DPR] David Reed MIT-LCS DPR@MIT-XX
[DSW] Dan Whelan Caltech Dan@CIT-20
[EAK1] Earl Killian LLL EAK@MIT-MC
[EAT3] Ed Taft XEROX Taft.PA@PARC-MAXC
[EBM] Eliot Moss MIT EBM@MIT-XX
[EC5] Ed Cain DCEC cain@EDN-Unix
[EF5] Ed Franceschini NYU Franceschini@NYU
[EHP] Ed Perry SRI Perry@SRI-KL
[FAS] Fred Segovich Compion fred@COMPION-VMS
[GEOF] Geoff Goodfellow SRI Geoff@DARCOM-KA
[HCF2] Harry Forsdick BBN Forsdick@BBNG
[HDC1] Horst Clausen DFVLR Clausen@USC-ISID
[HDW2] Howard Wactlar CMU Wactlar@CMU-10B
[HH6] Heidi Heiden DCA Heiden@BBNC
[HM] Hank Magnuski --- JOSE@PARC-MAXC
[JAKE] Jake Feinler SRI Feinler@SRI-KL
[JAR4] Jim Rees WASHINGTON JIM@WASHINGTON
[JAW3] Jil Westcott BBN Westcott@BBNF
[JBP] Jon Postel ISI Postel@USC-ISIF
[JC11] Jim Clifford LANL jrc@LANL
[JCM] Jeff Mogul STANFORD Mogul@SU-SCORE
[JD21] Jonathan Dreyer BBN JDreyer@BBN-Unix
[JDG] Jim Guyton RAND guyton@RAND-Unix
[JEM] Jim Mathis SRI Mathis@SRI-KL
[JFH2] Jack Haverty BBN Haverty@BBN-Unix
<span class="grey">Reynolds & Postel [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey">Assigned Numbers <a href="./rfc870">RFC 870</a></span>
People
[<a id="ref-JGH">JGH</a>] Jim Herman BBN Herman@BBN-Unix
[JO5] John O'Donnell YALE ODonnell@YALE
[JRM1] John Mullen MITRE Mullen@MITRE
[JSG5] Jon Goodridge BBN jsg@BBN-UNIX
[JWF] Jim Forgie LL Forgie@BBNC
[JXS] Jeffrey R. Schwab PURDUE jrs@PURDUE
[JZS] Joanne Sattely CCA JZS@CCA
[KLH] Ken Harrenstien SRI KLH@NIC
[KRS] Karen Sollins MIT Sollins@MIT-XX
[LB1] Liudvikas Bukys ROCHESTER Bukys@ROCHESTER
[LCN] Lou Nelson AEROSPACE Lou@AEROSPACE
[LCS] Lou Schreier SRI Schreier@USC-ISID
[LH2] Lincoln Hu COLUMBIA Hu@Columbia-20
[LLG] Larry Garlick XEROX Garlick@PARC-MAXC
[LM8] Liza Martin MIT-LCS Martin@MIT-XX
[MBG] Michael Greenwald MIT-LCS Greenwald@MIT-Multics
[MB] Michael Brescia BBN Brescia@BBN-Unix
[MCSJ] Mike StJohns AFDSC StJohns@MIT-MULTICS
[MH12] Mark Horton ATT mark@BERKELEY
[MHS1] Marvin Solomon WISC Solomon@UWISC
[MJM2] Mike Muuss BRL Mike@BRL
[MO2] Michael O'Brien RAND OBrien@RAND-Unix
[MRC] Mark Crispin Stanford Admin.MRC@SU-SCORE
[MXB] Mark Brown USC Mark@USC-ECLB
[MXR] Marshall Rose Irvine MRose.UCI@RAND-Relay
[NC3] J. Noel Chiappa MIT JNC@MIT-XX
[NM] Neil MacKenzie RSRE T45@USC-ISID
[NXK] Neil Katin HP hpda.neil@BERKELEY
[PK] Peter Kirstein UCL Kirstein@USC-ISIA
[PM1] Paul Mockapetris ISI Mockapetris@USC-ISIF
[PS3] Paal Spilling NDRE Paal@DARCOM-KA
[PXD] Pieter Ditmars BBN pditmars@BBN-UNIX
[PXN] Peter Nellessen SIEMENS crtvax!pn@CMU-CS-SPICE
[RA11] Rick Adams CCI rlgvax!ra@SEISMO
[RB6] Richard Bisbey ISI Bisbey@USC-ISIB
[RDB2] Robert Bressler BBN Bressler@BBN-Unix
[REK2] Robert Kahn ARPA Kahn@USC-ISIA
[RF1] Randy Frank UTAH Frank@UTAH-20
[RH6] Robert Hinden BBN Hinden@BBN-Unix
[RHT] Robert Thomas BBN BThomas@BBNG
[RK1] Richard Kovalcik Honeywell Kovalcik@MIT-MULTICS
[RLB1] Bob Brown USRA rlb@ames-vmsb
[RLH2] Ronald L. Hartung NSWC ron@nswc-wo
[RR2] Raleigh Romine Teledyne romine@SEISMO
[RS23] Russel Sandberg WISC root@UWISC
[RTB] Bob Braden UCLA Braden@USC-ISIA
[SC3] Steve Casner ISI Casner@USC-ISIB
[SGC] Steve Chipman BBN Chipman@BBNA
<span class="grey">Reynolds & Postel [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey">Assigned Numbers <a href="./rfc870">RFC 870</a></span>
People
[<a id="ref-SK">SK</a>] Steve Kille UCL UKSAT@USC-ISID
[SXM] Scott Marcus Spartacus ---none---
[TC4] Tony Cincotta DTNSRDC tony@NALCON
[WIM] William Macgregor BBN macg@BBN
[ZSU] Zaw-Sing Su SRI ZSu@SRI-TSC
<span class="grey">Reynolds & Postel [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey">Assigned Numbers <a href="./rfc870">RFC 870</a></span>
APPENDIX A
APPENDIX A
----------
This appendix summarizes the agreements reached by the DDN/PMO and
DARPA at a September 1982 meeting concerning the allocation and
assignment of the various numbers associated with DoD Protocol
Standards and the DARPA Experimental Standards.
Recommended policy is summarized for each type of number assignment
of concern:
Network Identifiers used by the Internet Protocol
It is recommended that the available number spaces for class A,
B, and C network addresses be allocated among R&D, DoD and
commercial uses, and that assignments of these addresses be the
responsibility respectively of DARPA, DCA PCCO/DDN and the
National Bureau of Standards. The recommended allocations are
given below.
Class A (highest-order bit 0)
R&D allocation: 8 nets
DoD allocation: 24 nets
Commercial allocation: 94 nets
Reserved Addresses: 0,127
Class B (highest-order bits 1-0)
R&D allocation: 1024 nets
DoD allocation: 3072 nets
Commercial allocation: 12286 nets
Reserved Addresses: 0,16383
Class C (highest-order bits 1-1-0)
R&D allocation: 65536 nets
DoD allocation: 458725 nets
Commercial allocation: 1572862 nets
Reserved Addresses: 0,2097151
Class D (highest-order bits 1-1-1)
All addresses in this class are reserved for future use,
possibly in support of multicast services. They should be
allocated to R&D use for the present.
<span class="grey">Reynolds & Postel [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey">Assigned Numbers <a href="./rfc870">RFC 870</a></span>
APPENDIX A
Within the R&D community, it will be the policy that network
identifiers will only be granted to applicants who show
evidence that they are acquiring standard Bolt Beranek and
Newman gateway software or have implemented or are acquiring a
gateway meeting the Exterior Gateway Protocol requirements.
Acquisition of the Berkeley BSD 4.2 UNIX software might be
considered evidence of the latter.
Experimental networks which later become operational need not
be renumbered. Rather, the identifiers could be moved from R&D
to DoD or Commercial status. Thus, network identifiers may
change state among R&D, DoD and commercial, but the number of
identifiers allocated to each use should remain within the
limits indicated above. To make possible this fluid
assignment, it is recommended that the network identifier
spaces not be allocated by simple partition but rather by
specific assignment.
Protocol Identifiers
In general, all assignments will be made by the R&D community,
but any numbers which become R&D, DoD, national or
international standards will be marked as such in this RFC.
Protocol identifiers 0 and 255 are reserved.
95 protocol identifiers are allocated for assignment to DoD
standards, 32 for R&D use, and 127 for Commercial, national or
international standards.
Port Numbers
A recommendation for allocation and assignment of port numbers
is to be developed jointly by representatives of the ICCB and
PSTP.
ARPANET Link Numbers
All unnecessary link number usage will be eliminated by joint
effort of the ICCB, PSTP and BBN.
BBN will give consideration to the use of link numbers to
promote interoperability among various ARPANET interfaces and
report to the ICCB, PSTP and DDN/PMO. Examples of possible
interoperability issues are:
(i) interoperability of 1822 and X.25 interfaces
(ii) interoperability of SIP and other interfaces
(iii) logical addressing or other special services
<span class="grey">Reynolds & Postel [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey">Assigned Numbers <a href="./rfc870">RFC 870</a></span>
APPENDIX A
IP Version Numbers
These numbers will be assigned only by the R&D community for
the purpose of exploring alternatives in internet protocol
service expansion, such as inclusion of stream protocol (ST)
services.
TCP, IP and Telnet Option Identifiers
These numbers will be assigned by the R&D community. Any
permanent or experimental assignments will be identified in the
documents specifying those protcols.
Implementation:
This policy recommendation has not been fully implemented as yet.
Currently, Joyce Reynolds is acting coordinator for all number
assignments.
Reynolds & Postel [Page 26]
</pre>
|