1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
|
Network Working Group J. Reynolds
Request for Comments: 1011 J. Postel
ISI
Obsoletes: RFCs 991, 961, 943, 924, 901, 880, 840 May 1987
OFFICIAL INTERNET PROTOCOLS
STATUS OF THIS MEMO
This memo is an official status report on the protocols used in the
Internet community. Distribution of this memo is unlimited.
INTRODUCTION
This RFC identifies the documents specifying the official protocols
used in the Internet. Comments indicate any revisions or changes
planned.
To first order, the official protocols are those specified in the
"DDN Protocol Handbook" (DPH), dated December 1985 (this is a three
volume set with a total thickness of about 5 inches).
Older collections that include many of these specifications are the
"Internet Protocol Transition Workbook" (IPTW), dated March 1982; the
"Internet Mail Protocols", dated November 1982; and the "Internet
Telnet Protocols and Options", dated June 1983. There is also a
volume of protocol related information called the "Internet Protocol
Implementers Guide" (IPIG) dated August 1982. An even older
collection is the "ARPANET Protocol Handbook" (APH) dated
January 1978. Nearly all the relevant material from these
collections has been reproduced in the current DPH.
The following material is organized as a sketchy outline. The
entries are protocols (e.g., Transmission Control Protocol). In each
entry there are notes on status, specification, comments, other
references, dependencies, and contact.
The STATUS is one of: required, recommended, elective,
experimental, or none.
The SPECIFICATION identifies the protocol defining documents.
The COMMENTS describe any differences from the specification or
problems with the protocol.
The OTHER REFERENCES identify documents that comment on or expand
on the protocol.
Reynolds & Postel [Page 1]
^L
RFC 1011 - Official Internet Protocols May 1987
The DEPENDENCIES indicate what other protocols are called upon by
this protocol.
The CONTACT indicates a person who can answer questions about the
protocol.
In particular, the status may be:
required
- all hosts must implement the required protocol,
recommended
- all hosts are encouraged to implement the recommended
protocol,
elective
- hosts may implement or not the elective protocol,
experimental
- hosts should not implement the experimental protocol
unless they are participating in the experiment and have
coordinated their use of this protocol with the contact
person, and
none
- this is not a protocol.
For further information about protocols in general, please
contact:
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
Reynolds & Postel [Page 2]
^L
RFC 1011 - Official Internet Protocols May 1987
OVERVIEW
Catenet Model ------------------------------------------------------
STATUS: None
SPECIFICATION: IEN 48 (in DPH)
COMMENTS:
Gives an overview of the organization and principles of the
Internet.
Could be revised and expanded.
OTHER REFERENCES:
Leiner, B., Cole R., Postel, J., and D. Mills, "The DARPA
Protocol Suite", IEEE INFOCOM 85, Washington, D.C., March 1985.
Also in IEEE Communications Magazine, and as ISI/RS-85-153,
March 1985.
Postel, J., "Internetwork Applications Using the DARPA Protocol
Suite", IEEE INFOCOM 85, Washington, D.C., March 1985. Also in
IEEE Communications Magazine, and as ISI/RS-85-151, April 1985.
Padlipsky, M.A., "The Elements of Networking Style and other
Essays and Animadversions on the Art of Intercomputer
Networking", Prentice-Hall, New Jersey, 1985.
RFC 871 - A Perspective on the ARPANET Reference Model
DEPENDENCIES:
CONTACT: Postel@ISI.EDU
Reynolds & Postel [Page 3]
^L
RFC 1011 - Official Internet Protocols May 1987
NETWORK LEVEL
Internet Protocol --------------------------------------------- (IP)
STATUS: Required
SPECIFICATION: RFC 791 (in DPH)
COMMENTS:
This is the universal protocol of the Internet. This datagram
protocol provides the universal addressing of hosts in the
Internet.
A few minor problems have been noted in this document.
The most serious is a bit of confusion in the route options.
The route options have a pointer that indicates which octet of
the route is the next to be used. The confusion is between the
phrases "the pointer is relative to this option" and "the
smallest legal value for the pointer is 4". If you are
confused, forget about the relative part, the pointer begins
at 4. The MIL-STD description of source routing is wrong in
some of the details.
Another important point is the alternate reassembly procedure
suggested in RFC 815.
Some changes are in the works for the security option.
Note that ICMP is defined to be an integral part of IP. You
have not completed an implementation of IP if it does not
include ICMP.
The subnet procedures defined in RFC 950 are now considered an
essential part of the IP architecture and must be implemented
by all hosts and gateways.
OTHER REFERENCES:
RFC 815 (in DPH) - IP Datagram Reassembly Algorithms
RFC 814 (in DPH) - Names, Addresses, Ports, and Routes
RFC 816 (in DPH) - Fault Isolation and Recovery
Reynolds & Postel [Page 4]
^L
RFC 1011 - Official Internet Protocols May 1987
RFC 817 (in DPH) - Modularity and Efficiency in Protocol
Implementation
MIL-STD-1777 (in DPH) - Military Standard Internet Protocol
RFC 963 - Some Problems with the Specification of the Military
Standard Internet Protocol
DEPENDENCIES:
CONTACT: Postel@ISI.EDU
Internet Control Message Protocol --------------------------- (ICMP)
STATUS: Required
SPECIFICATION: RFC 792 (in DPH)
COMMENTS:
The control messages and error reports that go with the
Internet Protocol.
A few minor errors in the document have been noted.
Suggestions have been made for additional types of redirect
message and additional destination unreachable messages.
Two additional ICMP message types are defined in RFC 950
"Internet Subnets", Address Mask Request (A1=17), and Address
Mask Reply (A2=18).
Note that ICMP is defined to be an integral part of IP. You
have not completed an implementation of IP if it does not
include ICMP.
OTHER REFERENCES: RFC 950
DEPENDENCIES: Internet Protocol
CONTACT: Postel@ISI.EDU
Reynolds & Postel [Page 5]
^L
RFC 1011 - Official Internet Protocols May 1987
Internet Group Multicast Protocol --------------------------- (IGMP)
STATUS: Recommended
SPECIFICATION: RFC 988
COMMENTS:
This protocol specifies the extensions required of a host
implementation of the Internet Protocol (IP) to support
internetwork multicasting. This specification supersedes that
given in RFC 966, and constitutes a proposed protocol standard
for IP multicasting in the Internet. Reference RFC 966 for a
discussion of the motivation and rationale behind the
multicasting extension specified here.
OTHER REFERENCES: RFC 966
DEPENDENCIES: Internet Protocol
CONTACT: Deering@PESCADERO.STANFORD.EDU
Reynolds & Postel [Page 6]
^L
RFC 1011 - Official Internet Protocols May 1987
HOST LEVEL
User Datagram Protocol --------------------------------------- (UDP)
STATUS: Recommended
SPECIFICATION: RFC 768 (in DPH)
COMMENTS:
Provides a datagram service to applications. Adds port
addressing to the IP services.
The only change noted for the UDP specification is a minor
clarification that if in computing the checksum a padding octet
is used for the computation it is not transmitted or counted in
the length.
OTHER REFERENCES:
DEPENDENCIES: Internet Protocol
CONTACT: Postel@ISI.EDU
Transmission Control Protocol -------------------------------- (TCP)
STATUS: Recommended
SPECIFICATION: RFC 793 (in DPH)
COMMENTS:
Provides reliable end-to-end data stream service.
Many comments and corrections have been received for the TCP
specification document. These are primarily document bugs
rather than protocol bugs.
Event Processing Section: There are many minor corrections and
clarifications needed in this section.
Push: There are still some phrases in the document that give a
"record mark" flavor to the push. These should be further
clarified. The push is not a record mark.
Reynolds & Postel [Page 7]
^L
RFC 1011 - Official Internet Protocols May 1987
Urgent: Page 17 is wrong. The urgent pointer points to the
last octet of urgent data (not to the first octet of non-urgent
data).
Listening Servers: Several comments have been received on
difficulties with contacting listening servers. There should
be some discussion of implementation issues for servers, and
some notes on alternative models of system and process
organization for servers.
Maximum Segment Size: The maximum segment size option should
be generalized and clarified. It can be used to either
increase or decrease the maximum segment size from the default.
The TCP Maximum Segment Size is the IP Maximum Datagram Size
minus forty. The default IP Maximum Datagram Size is 576. The
default TCP Maximum Segment Size is 536. For further
discussion, see RFC 879.
Idle Connections: There have been questions about
automatically closing idle connections. Idle connections are
ok, and should not be closed. There are several cases where
idle connections arise, for example, in Telnet when a user is
thinking for a long time following a message from the server
computer before his next input. There is no TCP "probe"
mechanism, and none is needed.
Queued Receive Data on Closing: There are several points where
it is not clear from the description what to do about data
received by the TCP but not yet passed to the user,
particularly when the connection is being closed. In general,
the data is to be kept to give to the user if he does a RECV
call.
Out of Order Segments: The description says that segments that
arrive out of order, that is, are not exactly the next segment
to be processed, may be kept on hand. It should also point out
that there is a very large performance penalty for not doing
so.
User Time Out: This is the time out started on an open or send
call. If this user time out occurs the user should be
notified, but the connection should not be closed or the TCB
deleted. The user should explicitly ABORT the connection if he
wants to give up.
Reynolds & Postel [Page 8]
^L
RFC 1011 - Official Internet Protocols May 1987
OTHER REFERENCES:
RFC 813 (in DPH) - Window and Acknowledgement Strategy in TCP
RFC 814 (in DPH) - Names, Addresses, Ports, and Routes
RFC 816 (in DPH) - Fault Isolation and Recovery
RFC 817 (in DPH) - Modularity and Efficiency in Protocol
Implementation
RFC 879 - TCP Maximum Segment Size
RFC 889 - Internet Delay Experiments
RFC 896 - TCP/IP Congestion Control
MIL-STD-1778 (in DPH) - Military Standard Transmission Control
Protocol
RFC 964 - Some Problems with the Specification of the Military
Standard Transmission Control Protocol
Zhang, Lixia, "Why TCP Timers Don't Work Well", Communications
Architectures and Protocols, ACM SIGCOMM Proceedings, Computer
Communications Review, V.16, N.3, August 1986.
DEPENDENCIES: Internet Protocol
CONTACT: Postel@ISI.EDU
Bulk Data Transfer Protocol ------------------------------- (NETBLT)
STATUS: Experimental
SPECIFICATION: RFC 998
COMMENTS:
This is a revised RFC on the discussion of the Network Block
Transfer (NETBLT) protocol.
NETBLT (NETwork BLock Transfer) is a transport level protocol
intended for the rapid transfer of a large quantity of data
between computers. It provides a transfer that is reliable and
flow controlled, and is designed to provide maximum throughput
over a wide variety of networks. Although NETBLT currently
Reynolds & Postel [Page 9]
^L
RFC 1011 - Official Internet Protocols May 1987
runs on top of the Internet Protocol (IP), it should be able to
operate on top of any datagram protocol similar in function to
IP.
This document is published for discussion and comment, and does
not constitute a standard. The proposal may change and certain
parts of the protocol have not yet been specified;
implementation of this document is therefore not advised.
OTHER REFERENCES: RFC 969
DEPENDENCIES: Transmission Control Protocol, User Datagram
Protocol
CONTACT: markl@PTT.LCS.MIT.EDU
Exterior Gateway Protocol ------------------------------------ (EGP)
STATUS: Recommended for Gateways
SPECIFICATION: RFC 888, RFC 904 (in DPH), RFC 975, RFC 985
COMMENTS:
The protocol used between gateways of different administrations
to exchange routing information.
Please discuss any plans for implementation or use of this
protocol with the contact.
OTHER REFERENCES: RFC 827, RFC 890
DEPENDENCIES: Internet Protocol
CONTACT: Mills@UDEL.EDU
Reynolds & Postel [Page 10]
^L
RFC 1011 - Official Internet Protocols May 1987
Gateway Gateway Protocol ------------------------------------- (GGP)
STATUS: Experimental
SPECIFICATION: RFC 823 (in DPH)
COMMENTS:
The gateway protocol now used in the core gateways.
Please discuss any plans for implementation or use of this
protocol with the contact.
OTHER REFERENCES:
DEPENDENCIES: Internet Protocol
CONTACT: Brescia@BBN.COM
Host Monitoring Protocol ------------------------------------- (HMP)
STATUS: Elective
SPECIFICATION: RFC 869 (in DPH)
COMMENTS:
This is a good tool for debugging protocol implementations in
remotely located computers.
This protocol is used to monitor Internet gateways and the
TACs.
OTHER REFERENCES:
DEPENDENCIES: Internet Protocol
CONTACT: Hinden@BBN.COM
Reynolds & Postel [Page 11]
^L
RFC 1011 - Official Internet Protocols May 1987
Reliable Data Protocol --------------------------------------- (RDP)
STATUS: Experimental
SPECIFICATION: RFC 908 (in DPH)
COMMENTS:
This protocol is designed to efficiently support the bulk
transfer of data for such host monitoring and control
applications as loading/dumping and remote debugging. The
protocol is intended to be simple to implement but still be
efficient in environments where there may be long transmission
delays and loss or non-sequential delivery of message segments.
Please discuss any plans for implementation or use of this
protocol with the contact.
OTHER REFERENCES:
DEPENDENCIES: Internet Protocol
CONTACT: CWelles@BBN.COM
Internet Reliable Transaction Protocol ---------------------- (IRTP)
STATUS: Experimental
SPECIFICATION: RFC 938
COMMENTS:
This protocol is a transport level host to host protocol
designed for an internet environment. While the issues
discussed may not be directly relevant to the research problems
of the Internet community, they may be interesting to a number
of researchers and implementors.
OTHER REFERENCES:
DEPENDENCIES: Internet Protocol
CONTACT: Trudy@ACC.ARPA
Reynolds & Postel [Page 12]
^L
RFC 1011 - Official Internet Protocols May 1987
Cross Net Debugger ------------------------------------------ (XNET)
STATUS: Elective
SPECIFICATION: IEN 158 (in DPH)
COMMENTS:
A debugging protocol, allows debugger like access to remote
systems.
This specification should be updated and reissued as an RFC.
OTHER REFERENCES: RFC 643
DEPENDENCIES: Internet Protocol
CONTACT: Postel@ISI.EDU
Multiplexing Protocol ---------------------------------------- (MUX)
STATUS: Experimental
SPECIFICATION: IEN 90 (in DPH)
COMMENTS:
Defines a capability to combine several segments from different
higher level protocols in one IP datagram.
No current experiment in progress. There is some question as
to the extent to which the sharing this protocol envisions can
actually take place. Also, there are some issues about the
information captured in the multiplexing header being (a)
insufficient, or (b) over specific.
Please discuss any plans for implementation or use of this
protocol with the contact.
OTHER REFERENCES:
DEPENDENCIES: Internet Protocol
CONTACT: Postel@ISI.EDU
Reynolds & Postel [Page 13]
^L
RFC 1011 - Official Internet Protocols May 1987
Stream Protocol ----------------------------------------------- (ST)
STATUS: Experimental
SPECIFICATION: IEN 119 (in DPH)
COMMENTS:
A gateway resource allocation protocol designed for use in
multihost real time applications.
The implementation of this protocol has evolved and may no
longer be consistent with this specification. The document
should be updated and issued as an RFC.
Please discuss any plans for implementation or use of this
protocol with the contact.
OTHER REFERENCES:
DEPENDENCIES: Internet Protocol
CONTACT: jwf@LL-EN.ARPA
Network Voice Protocol ------------------------------------ (NVP-II)
STATUS: Experimental
SPECIFICATION: ISI Internal Memo
COMMENTS:
Defines the procedures for real time voice conferencing.
The specification is an ISI Internal Memo which should be
updated and issued as an RFC.
Please discuss any plans for implementation or use of this
protocol with the contact.
OTHER REFERENCES: RFC 741 (in DPH)
DEPENDENCIES: Internet Protocol, Stream Protocol
CONTACT: Casner@ISI.EDU
Reynolds & Postel [Page 14]
^L
RFC 1011 - Official Internet Protocols May 1987
APPLICATION LEVEL
Telnet Protocol ------------------------------------------- (TELNET)
STATUS: Recommended
SPECIFICATION: RFC 854 (in DPH)
COMMENTS:
The protocol for remote terminal access.
This has been revised since the IPTW. RFC 764 in IPTW is now
obsolete.
OTHER REFERENCES:
MIL-STD-1782 (in DPH) - Telnet Protocol
DEPENDENCIES: Transmission Control Protocol
CONTACT: Postel@ISI.EDU
Reynolds & Postel [Page 15]
^L
RFC 1011 - Official Internet Protocols May 1987
Telnet Options ------------------------------------ (TELNET-OPTIONS)
STATUS: Elective
SPECIFICATION: General description of options: RFC 855 (in DPH)
Number Name RFC NIC DPH USE
------ --------------------------------- --- ----- --- ---
0 Binary Transmission 856 ----- yes yes
1 Echo 857 ----- yes yes
2 Reconnection ... 15391 yes no
3 Suppress Go Ahead 858 ----- yes yes
4 Approx Message Size Negotiation ... 15393 yes no
5 Status 859 ----- yes yes
6 Timing Mark 860 ----- yes yes
7 Remote Controlled Trans and Echo 726 39237 yes no
8 Output Line Width ... 20196 yes no
9 Output Page Size ... 20197 yes no
10 Output Carriage-Return Disposition 652 31155 yes no
11 Output Horizontal Tabstops 653 31156 yes no
12 Output Horizontal Tab Disposition 654 31157 yes no
13 Output Formfeed Disposition 655 31158 yes no
14 Output Vertical Tabstops 656 31159 yes no
15 Output Vertical Tab Disposition 657 31160 yes no
16 Output Linefeed Disposition 658 31161 yes no
17 Extended ASCII 698 32964 yes no
18 Logout 727 40025 yes no
19 Byte Macro 735 42083 yes no
20 Data Entry Terminal 732 41762 yes no
21 SUPDUP 734 736 42213 yes no
22 SUPDUP Output 749 45449 yes no
23 Send Location 779 ----- yes no
24 Terminal Type 930 ----- yes no
25 End of Record 885 ----- yes no
26 TACACS User Identification 927 ----- yes no
27 Output Marking 933 ----- yes no
28 Terminal Location Number 946 ----- no no
255 Extended-Options-List 861 ----- yes yes
The DHP column indicates if the specification is included in the
DDN Protocol Handbook. The USE column of the table above
indicates which options are in general use.
COMMENTS:
The Binary Transmission, Echo, Suppress Go Ahead, Status,
Reynolds & Postel [Page 16]
^L
RFC 1011 - Official Internet Protocols May 1987
Timing Mark, and Extended Options List options have been
recently updated and reissued. These are the most frequently
implemented options.
The remaining options should be reviewed and the useful ones
should be revised and reissued. The others should be
eliminated.
The following are recommended: Binary Transmission, Echo,
Suppress Go Ahead, Status, Timing Mark, and Extended Options
List.
OTHER REFERENCES:
DEPENDENCIES: Telnet
CONTACT: Postel@ISI.EDU
SUPDUP Protocol ------------------------------------------- (SUPDUP)
STATUS: Elective
SPECIFICATION: RFC 734 (in DPH)
COMMENTS:
A special Telnet like protocol for display terminals.
OTHER REFERENCES:
DEPENDENCIES: Transmission Control Protocol
CONTACT: Crispin@SU-SCORE.STANFORD.EDU
File Transfer Protocol --------------------------------------- (FTP)
STATUS: Recommended
SPECIFICATION: RFC 959 (in DPH)
COMMENTS:
The protocol for moving files between Internet hosts. Provides
for access control and negotiation of file parameters.
The following new optional commands are included in this
edition of the specification: Change to Parent Directory
Reynolds & Postel [Page 17]
^L
RFC 1011 - Official Internet Protocols May 1987
(CDUP), Structure Mount (SMNT), Store Unique (STOU), Remove
Directory (RMD), Make Directory (MKD), Print Directory (PWD),
and System (SYST). Note that this specification is compatible
with the previous edition (RFC 765).
A discrepancy has been found in the specification in the
examples of Appendix II. On page 63, a response code of 200 is
shown as the response to a CWD command. Under the list of
Command-Reply Sequences cited on page 50, CWD is shown to only
accept a 250 response code. Therefore, if one would interpret
a CWD command as being excluded from the File System functional
category, one may assume that the response code of 200 is
correct, since CDUP as a special case of CWD does use 200.
OTHER REFERENCES:
RFC 678 (in DPH) - Document File Format Standards
MIL-STD-1780 (in DPH) - File Transfer Protocol
DEPENDENCIES: Transmission Control Protocol
CONTACT: Postel@ISI.EDU
Trivial File Transfer Protocol ------------------------------ (TFTP)
STATUS: Elective
SPECIFICATION: RFC 783 (in IPTW)
COMMENTS:
A very simple file moving protocol, no access control is
provided.
This is in use in several local networks.
Ambiguities in the interpretation of several of the transfer
modes should be clarified, and additional transfer modes could
be defined. Additional error codes could be defined to more
clearly identify problems.
Note: The DPH contains IEN-133, which is an obsolete version of
this protocol.
OTHER REFERENCES:
Reynolds & Postel [Page 18]
^L
RFC 1011 - Official Internet Protocols May 1987
DEPENDENCIES: User Datagram Protocol
CONTACT: Postel@ISI.EDU
Simple File Transfer Protocol ------------------------------- (SFTP)
STATUS: Experimental
SPECIFICATION: RFC 913 (in DPH)
COMMENTS:
SFTP is a simple file transfer protocol. It fills the need of
people wanting a protocol that is more useful than TFTP but
easier to implement (and less powerful) than FTP. SFTP
supports user access control, file transfers, directory
listing, directory changing, file renaming and deleting.
SFTP can be implemented with any reliable 8-bit byte stream
oriented protocol, this document describes its TCP
specification. SFTP uses only one TCP connection; whereas TFTP
implements a connection over UDP, and FTP uses two TCP
connections (one using the TELNET protocol).
Please discuss any plans for implementation or use of this
protocol with the contact.
OTHER REFERENCES:
DEPENDENCIES: Transmission Control Protocol
CONTACT: MKL@SRI-NIC.ARPA
Simple Mail Transfer Protocol ------------------------------- (SMTP)
STATUS: Recommended
SPECIFICATION: RFC 821 (in DPH)
COMMENTS:
The procedure for transmitting computer mail between hosts.
This has been revised since the IPTW, it is in the "Internet
Mail Protocols" volume of November 1982. RFC 788 (in IPTW) is
obsolete.
Reynolds & Postel [Page 19]
^L
RFC 1011 - Official Internet Protocols May 1987
There have been many misunderstandings and errors in the early
implementations. Some documentation of these problems can be
found in the file [C.ISI.EDU]<SMTP>MAIL.ERRORS.
Some minor differences between RFC 821 and RFC 822 should be
resolved.
OTHER REFERENCES:
RFC 822 - Mail Header Format Standards
This has been revised since the IPTW, it is in the "Internet
Mail Protocols" volume of November 1982. RFC 733 (in IPTW)
is obsolete. Further revision of RFC 822 is needed to
correct some minor errors in the details of the
specification.
Note: RFC 822 is not included in the DPH (an accident, it
should have been).
MIL-STD-1781 (in DPH) - Simple Mail Transfer Protocol (SMTP)
DEPENDENCIES: Transmission Control Protocol
CONTACT: Postel@ISI.EDU
Network News Transfer Protocol ------------------------------ (NNTP)
STATUS: Experimental
SPECIFICATION: RFC 977
COMMENTS:
NNTP specifies a protocol for the distribution, inquiry,
retrieval, and posting of news articles using a reliable
stream-based transmission of news among the Internet community.
NNTP is designed so that news articles are stored in a central
database allowing a subscriber to select only those items he
wishes to read. Indexing, cross-referencing, and expiration of
aged messages are also provided.
Please discuss any plans for implementation or use of this
protocol with the contact.
OTHER REFERENCES:
Reynolds & Postel [Page 20]
^L
RFC 1011 - Official Internet Protocols May 1987
DEPENDENCIES: Internet Protocol
CONTACT: Brian@SDCSVAX.UCSD.EDU
Post Office Protocol - Version 2 ---------------------------- (POP2)
STATUS: Experimental
SPECIFICATION: RFC 937 (in DPH)
COMMENTS:
The intent of the Post Office Protocol - Version 2 (POP2) is to
allow a user's workstation to access mail from a mailbox
server. It is expected that mail will be posted from the
workstation to the mailbox server via the Simple Mail Transfer
Protocol (SMTP).
Please discuss any plans for implementation or use of this
protocol with the contact.
OTHER REFERENCES: Obsoletes RFC 918
DEPENDENCIES: Transmission Control Protocol
CONTACT: JKReynolds@ISI.EDU
NetBIOS Services Protocol -------------------------------- (NETBIOS)
STATUS: Recommended
SPECIFICATION: RFC 1001, 1002
COMMENTS:
These documents define a proposed standard protocol to support
NetBIOS services in a TCP/IP environment. Both local network
and internet operation are supported. Various node types are
defined to accomodate local and internet topologies and to
allow operation with or without the use of IP broadcast
RFC 1001 describes the NetBIOS-over-TCP protocols in a general
manner, with emphasis on the underlying ideas and techniques.
RFC 1002 gives the detailed specifications of the
NetBIOS-over-TCP packets, protocols, and defined constants and
variables.
Reynolds & Postel [Page 21]
^L
RFC 1011 - Official Internet Protocols May 1987
OTHER REFERENCES:
DEPENDENCIES: Transmission Control Protocol, User Datagram
Protocol
CONTACT: Auerbach@CSL.SRI.COM
Bootstrap Protocol ----------------------------------------- (BOOTP)
STATUS: Experimental
SPECIFICATION: RFC 951
COMMENTS:
This proposed protocol provides an IP/UDP bootstrap protocol
which allows a diskless client machine to discover its own IP
address, the address of a server host, and the name of a file
to be loaded into memory and executed.
Please discuss any plans for implementation or use of this
protocol with the contact.
OTHER REFERENCES:
DEPENDENCIES: Internet Protocol, User Datagram Protocol
CONTACT: Croft@SUMEX-AIM.STANFORD.EDU
Loader Debugger Protocol ------------------------------------- (LDP)
STATUS: Experimental
SPECIFICATION: RFC 909
COMMENTS:
Specifies a protocol for loading, dumping and debugging target
machines from hosts in a network environment. It is also
designed to accommodate a variety of target CPU types. It
provides a powerful set of debugging services, while at the
same time, it is structured so that a simple subset may be
implemented in applications like boot loading where efficiency
and space are at a premium.
Please discuss any plans for implementation or use of this
protocol with the contact.
Reynolds & Postel [Page 22]
^L
RFC 1011 - Official Internet Protocols May 1987
OTHER REFERENCES:
DEPENDENCIES: Reliable Data Protocol
CONTACT: Hinden@BBN.COM
Resource Location Protocol ----------------------------------- (RLP)
STATUS: Elective
SPECIFICATION: RFC 887 (in DPH)
COMMENTS:
A resource location protocol for use in the Internet. This
protocol utilizes the User Datagram Protocol (UDP) which in
turn calls on the Internet Protocol to deliver its datagrams.
OTHER REFERENCES:
DEPENDENCIES: User Datagram Protocol
CONTACT: Accetta@A.CS.CMU.EDU
Remote Job Entry --------------------------------------------- (RJE)
STATUS: Elective
SPECIFICATION: RFC 407 (in DPH)
COMMENTS:
The general protocol for submitting batch jobs and retrieving
the results.
Some changes needed for use with TCP.
No known active implementations.
OTHER REFERENCES:
DEPENDENCIES: File Transfer Protocol, Transmission Control
Protocol
CONTACT: Postel@ISI.EDU
Reynolds & Postel [Page 23]
^L
RFC 1011 - Official Internet Protocols May 1987
Remote Job Service ---------------------------------------- (NETRJS)
STATUS: Elective
SPECIFICATION: RFC 740 (in DPH)
COMMENTS:
A special protocol for submitting batch jobs and retrieving the
results used with the UCLA IBM OS system.
Please discuss any plans for implementation or use of this
protocol with the contact.
Revision in progress.
OTHER REFERENCES:
DEPENDENCIES: Transmission Control Protocol
CONTACT: Braden@ISI.EDU
Remote Telnet Service ------------------------------------ (RTELNET)
STATUS: Elective
SPECIFICATION: RFC 818 (in DPH)
COMMENTS:
Provides special access to user Telnet on a remote system.
OTHER REFERENCES:
DEPENDENCIES: Telnet, Transmission Control Protocol
CONTACT: Postel@ISI.EDU
Reynolds & Postel [Page 24]
^L
RFC 1011 - Official Internet Protocols May 1987
Graphics Protocol --------------------------------------- (GRAPHICS)
STATUS: Elective
SPECIFICATION: NIC 24308 (in DPH)
COMMENTS:
The protocol for vector graphics.
Very minor changes needed for use with TCP.
No known active implementations.
Note: The DPH claims that this is RFC 493, but RFC 493 is
actually a different earlier specification.
OTHER REFERENCES:
DEPENDENCIES: Telnet, Transmission Control Protocol
CONTACT: Postel@ISI.EDU
Echo Protocol ----------------------------------------------- (ECHO)
STATUS: Recommended
SPECIFICATION: RFC 862 (in DPH)
COMMENTS:
Debugging protocol, sends back whatever you send it.
OTHER REFERENCES:
DEPENDENCIES: Transmission Control Protocol
or User Datagram Protocol
CONTACT: Postel@ISI.EDU
Reynolds & Postel [Page 25]
^L
RFC 1011 - Official Internet Protocols May 1987
Discard Protocol ----------------------------------------- (DISCARD)
STATUS: Elective
SPECIFICATION: RFC 863 (in DPH)
COMMENTS:
Debugging protocol, throws away whatever you send it.
OTHER REFERENCES:
DEPENDENCIES: Transmission Control Protocol
or User Datagram Protocol
CONTACT: Postel@ISI.EDU
Character Generator Protocol ----------------------------- (CHARGEN)
STATUS: Elective
SPECIFICATION: RFC 864 (in DPH)
COMMENTS:
Debugging protocol, sends you ASCII data.
OTHER REFERENCES:
DEPENDENCIES: Transmission Control Protocol
or User Datagram Protocol
CONTACT: Postel@ISI.EDU
Reynolds & Postel [Page 26]
^L
RFC 1011 - Official Internet Protocols May 1987
Quote of the Day Protocol ---------------------------------- (QUOTE)
STATUS: Elective
SPECIFICATION: RFC 865 (in DPH)
COMMENTS:
Debugging protocol, sends you a short ASCII message.
OTHER REFERENCES:
DEPENDENCIES: Transmission Control Protocol
or User Datagram Protocol
CONTACT: Postel@ISI.EDU
Statistics Server ---------------------------------------- (STATSRV)
STATUS: Recommended
SPECIFICATION: RFC 996
COMMENTS:
This RFC specifies a standard for the Internet community.
Hosts and gateways on the Internet that choose to implement a
remote statistics monitoring facility may use this protocol to
send statistics data upon request to a monitoring center or
debugging host.
OTHER REFERENCES:
DEPENDENCIES: Internet Protocol
CONTACT: Mills@UDEL.EDU
Reynolds & Postel [Page 27]
^L
RFC 1011 - Official Internet Protocols May 1987
Active Users Protocol -------------------------------------- (USERS)
STATUS: Elective
SPECIFICATION: RFC 866 (in DPH)
COMMENTS:
Lists the currently active users.
OTHER REFERENCES:
DEPENDENCIES: Transmission Control Protocol
or User Datagram Protocol
CONTACT: Postel@ISI.EDU
Finger Protocol ------------------------------------------- (FINGER)
STATUS: Elective
SPECIFICATION: RFC 742 (in DPH)
COMMENTS:
Provides information on the current or most recent activity of
a user.
Some extensions have been suggested.
Some changes are are needed for TCP.
OTHER REFERENCES:
DEPENDENCIES: Transmission Control Protocol
CONTACT: Postel@ISI.EDU
Reynolds & Postel [Page 28]
^L
RFC 1011 - Official Internet Protocols May 1987
WhoIs Protocol ------------------------------------------- (NICNAME)
STATUS: Elective
SPECIFICATION: RFC 954 (in DPH)
COMMENTS:
Accesses the ARPANET Directory database. Provides a way to
find out about people, their addresses, phone numbers,
organizations, and mailboxes.
OTHER REFERENCES:
DEPENDENCIES: Transmission Control Protocol
CONTACT: Feinler@SRI-NIC.ARPA
CSNET Mailbox Name Server Protocol ---------------------- (CSNET-NS)
STATUS: Experimental
SPECIFICATION: CS-DN-2 (in DPH)
COMMENTS:
Provides access to the CSNET data base of users to give
information about users names, affiliations, and mailboxes.
Please discuss any plans for implementation or use of this
protocol with the contact.
OTHER REFERENCES:
DEPENDENCIES: Transmission Control Protocol
CONTACT: Solomon@WISC.EDU
Reynolds & Postel [Page 29]
^L
RFC 1011 - Official Internet Protocols May 1987
Domain Name Protocol -------------------------------------- (DOMAIN)
STATUS: Recommended
SPECIFICATION: RFC 881, RFC 882, RFC 883 (in DPH)
COMMENTS:
OTHER REFERENCES:
RFC 920 - Domain Requirements
RFC 921 - Domain Name Implementation Schedule - Revised
RFC 973 - Domain System Changes and Observations
RFC 974 - Mail Routing and the Domain System
DEPENDENCIES: Transmission Control Protocol
or User Datagram Protocol
CONTACT: Mockapetris@ISI.EDU
HOSTNAME Protocol --------------------------------------- (HOSTNAME)
STATUS: Elective
SPECIFICATION: RFC 953 (in DPH)
COMMENTS:
Accesses the Registered Internet Hosts database (HOSTS.TXT).
Provides a way to find out about a host in the Internet, its
Internet Address, and the protocols it implements.
OTHER REFERENCES:
RFC 952 - Host Table Specification
DEPENDENCIES: Transmission Control Protocol
CONTACT: Feinler@SRI-NIC.ARPA
Reynolds & Postel [Page 30]
^L
RFC 1011 - Official Internet Protocols May 1987
Host Name Server Protocol ----------------------------- (NAMESERVER)
STATUS: Experimental
SPECIFICATION: IEN 116 (in DPH)
COMMENTS:
Provides machine oriented procedure for translating a host name
to an Internet Address.
This specification has significant problems: 1) The name
syntax is out of date. 2) The protocol details are ambiguous,
in particular, the length octet either does or doesn't include
itself and the op code. 3) The extensions are not supported by
any known implementation.
This protocol is now abandoned in favor of the DOMAIN protocol.
Further implementations of this protocol are not advised.
Please discuss any plans for implementation or use of this
protocol with the contact.
OTHER REFERENCES:
DEPENDENCIES: User Datagram Protocol
CONTACT: Postel@ISI.EDU
Daytime Protocol ----------------------------------------- (DAYTIME)
STATUS: Elective
SPECIFICATION: RFC 867 (in DPH)
COMMENTS:
Provides the day and time in ASCII character string.
OTHER REFERENCES:
DEPENDENCIES: Transmission Control Protocol
or User Datagram Protocol
CONTACT: Postel@ISI.EDU
Reynolds & Postel [Page 31]
^L
RFC 1011 - Official Internet Protocols May 1987
Network Time Protocol ---------------------------------------- (NTP)
STATUS: Experimental
SPECIFICATION: RFC 958
COMMENTS:
A proposed protocol for synchronizing a set of network clocks
using a set of distributed clients and servers.
Please discuss any plans for implementation or use of this
protocol with the contact.
OTHER REFERENCES: RFC 778, RFC 891, RFC 956, and RFC 957.
DEPENDENCIES: User Datagram Protocol
CONTACT: Mills@UDEL.EDU
Time Server Protocol ---------------------------------------- (TIME)
STATUS: Elective
SPECIFICATION: RFC 868 (in DPH)
COMMENTS:
Provides the time as the number of seconds from a specified
reference time.
OTHER REFERENCES:
DEPENDENCIES: Transmission Control Protocol
or User Datagram Protocol
CONTACT: Postel@ISI.EDU
Reynolds & Postel [Page 32]
^L
RFC 1011 - Official Internet Protocols May 1987
DCNET Time Server Protocol --------------------------------- (CLOCK)
STATUS: Experimental
SPECIFICATION: RFC 778
COMMENTS:
Provides a mechanism for keeping synchronized clocks.
Please discuss any plans for implementation or use of this
protocol with the contact.
OTHER REFERENCES:
DEPENDENCIES: Internet Control Message Protocol
CONTACT: Mills@UDEL.EDU
Authentication Service -------------------------------------- (AUTH)
STATUS: Experimental
SPECIFICATION: RFC 931
COMMENTS:
This server provides a means to determine the identity of a
user of a particular TCP connection. Given a TCP port number
pair, it returns a character string which identifies the owner
of that connection on the server's system.
Please discuss any plans for implementation or use of this
protocol with the contact.
OTHER REFERENCES: Supercedes RFC 912
DEPENDENCIES: Transmission Control Protocol
CONTACT: StJohns@SRI-NIC.ARPA
Reynolds & Postel [Page 33]
^L
RFC 1011 - Official Internet Protocols May 1987
Authentication Scheme --------------------------------- (COOKIE-JAR)
STATUS: Experimental
SPECIFICATION: RFC 1004
COMMENTS:
This RFC focuses its discussion on authentication problems in
the Internet and possible methods of solution.
Please discuss any plans for implementation or use of this
protocol with the contact.
OTHER REFERENCES:
DEPENDENCIES:
CONTACT: Mills@UDEL.EDU
Internet Message Protocol ------------------------------------ (MPM)
STATUS: Experimental
SPECIFICATION: RFC 759 (in DPH)
COMMENTS:
This is an experimental multimedia mail transfer protocol. The
implementation is called a Message Processing Module or MPM.
Please discuss any plans for implementation or use of this
protocol with the contact.
OTHER REFERENCES:
RFC 767 - Structured Document Formats
DEPENDENCIES: Transmission Control Protocol
CONTACT: Postel@ISI.EDU
Reynolds & Postel [Page 34]
^L
RFC 1011 - Official Internet Protocols May 1987
Network Standard Text Editor ------------------------------- (NETED)
STATUS: Elective
SPECIFICATION: RFC 569 (in DPH)
COMMENTS:
Describes a simple line editor which could be provided by every
Internet host.
OTHER REFERENCES:
DEPENDENCIES:
CONTACT: Postel@ISI.EDU
Reynolds & Postel [Page 35]
^L
RFC 1011 - Official Internet Protocols May 1987
APPENDICES
Internet Numbers ---------------------------------------------------
STATUS: None
SPECIFICATION: RFC 997
COMMENTS:
Describes the fields of network numbers and autonomous system
numbers that are assigned specific values for actual use, and
lists the currently assigned values.
Issued March 1987, replaces RFC 990, RFC 790 in IPTW, and
RFC 960.
OTHER REFERENCES:
CONTACT: Hostmaster@SRI-NIC.ARPA
Assigned Numbers ---------------------------------------------------
STATUS: None
SPECIFICATION: RFC 1010
COMMENTS:
Describes the fields of various protocols that are assigned
specific values for actual use, and lists the currently
assigned values.
Issued May 1987, replaces RFC 990, RFC 790 in IPTW, and
RFC 960.
OTHER REFERENCES:
CONTACT: JKREYNOLDS@ISI.EDU
Reynolds & Postel [Page 36]
^L
RFC 1011 - Official Internet Protocols May 1987
Pre-emption --------------------------------------------------------
STATUS: Elective
SPECIFICATION: RFC 794 (in DPH)
COMMENTS:
Describes how to do pre-emption of TCP connections.
OTHER REFERENCES:
CONTACT: Postel@ISI.EDU
Service Mappings ---------------------------------------------------
STATUS: None
SPECIFICATION: RFC 795 (in DPH)
COMMENTS:
Describes the mapping of the IP type of service field onto the
parameters of some specific networks.
Out of date, needs revision.
OTHER REFERENCES:
CONTACT: Postel@ISI.EDU
Address Mappings ---------------------------------------------------
STATUS: None
SPECIFICATION: RFC 796 (in DPH)
COMMENTS:
Describes the mapping between Internet Addresses and the
addresses of some specific networks.
Out of date, needs revision.
OTHER REFERENCES:
CONTACT: Postel@ISI.EDU
Reynolds & Postel [Page 37]
^L
RFC 1011 - Official Internet Protocols May 1987
Document Formats ---------------------------------------------------
STATUS: None
SPECIFICATION: RFC 678 (in DPH)
COMMENTS:
Describes standard format rules for several types of documents.
OTHER REFERENCES:
CONTACT: Postel@ISI.EDU
Equations Representation -------------------------------------------
STATUS: None
SPECIFICATION: RFC 1003
COMMENTS:
Identifies and explores issues in defining a standard for the
exchange of mathematical equations.
OTHER REFERENCES:
CONTACT: Katz@ISI.EDU
Bitmap Formats -----------------------------------------------------
STATUS: None
SPECIFICATION: RFC 797 (in DPH)
COMMENTS:
Describes a standard format for bitmap data.
OTHER REFERENCES:
CONTACT: Postel@ISI.EDU
Reynolds & Postel [Page 38]
^L
RFC 1011 - Official Internet Protocols May 1987
Facsimile Formats --------------------------------------------------
STATUS: None
SPECIFICATION: RFC 804
COMMENTS:
Describes a standard format for facsimile data.
OTHER REFERENCES: RFC 769 (in DPH)
CONTACT: Postel@ISI.EDU
Host-Front End Protocol ------------------------------------- (HFEP)
STATUS: Experimental
SPECIFICATION: RFC 929
COMMENTS:
Please discuss any plans for implementation or use of this
protocol with the contact.
OTHER REFERENCES: RFC 928
DEPENDENCIES:
CONTACT: Padlipsky@ISI.EDU
Internet Protocol on ARPANET ----------------------------- (IP-ARPA)
STATUS: Recommended
SPECIFICATION: BBN Report 1822
COMMENTS:
Describes the interface between a Host and an IMP, and by
implication the transmission of IP Datagrams over the ARPANET.
OTHER REFERENCES: RFC 851, RFC 852, RFC 878 (in DPH), RFC 979,
RFC 1005
CONTACT: Malis@BBN.COM
Reynolds & Postel [Page 39]
^L
RFC 1011 - Official Internet Protocols May 1987
Internet Protocol on WBNET --------------------------------- (IP-WB)
STATUS: Recommended
SPECIFICATION: RFC 907 (in DPH)
COMMENTS:
Describes a standard for the transmission of IP Datagrams over
the Wideband Net.
This protocol specifies the network-access level communication
between an arbitrary computer, called a host, and a
packet-switched satellite network, e.g., SATNET or WBNET.
Note: Implementations of HAP should be performed in
coordination with satellite network development and operations
personnel.
OTHER REFERENCES:
CONTACT: Blumenthal@BBN.COM
Internet Protocol on Wideband Network ---------------------- (IP-WB)
STATUS: Recommended
SPECIFICATION: RFC 907 (in DPH)
COMMENTS:
Describes a standard for the transmission of IP Datagrams over
the WBNET.
This protocol specifies the network-access level communication
between an arbitrary computer, called a host, and a
packet-switched satellite network, e.g., SATNET or WBNET.
Note: Implementations of HAP should be performed in
coordination with satellite network development and operations
personnel.
OTHER REFERENCES:
DEPENDENCIES:
CONTACT: Schoen@BBN.COM
Reynolds & Postel [Page 40]
^L
RFC 1011 - Official Internet Protocols May 1987
Internet Protocol on X.25 Networks ------------------------ (IP-X25)
STATUS: Recommended
SPECIFICATION: RFC 877 (in DPH)
COMMENTS:
Describes a standard for the transmission of IP Datagrams over
Public Data Networks.
OTHER REFERENCES:
CONTACT: jtk@PURDUE.EDU
Internet Protocol on DC Networks --------------------------- (IP-DC)
STATUS: Elective
SPECIFICATION: RFC 891 (in DPH)
COMMENTS:
OTHER REFERENCES:
RFC 778 - DCNET Internet Clock Service
CONTACT: Mills@UDEL.EDU
Internet Protocol on Ethernet Networks ---------------------- (IP-E)
STATUS: Recommended
SPECIFICATION: RFC 894 (in DPH)
COMMENTS:
OTHER REFERENCES: RFC 893
CONTACT: Postel@ISI.EDU
Reynolds & Postel [Page 41]
^L
RFC 1011 - Official Internet Protocols May 1987
Internet Protocol on Experimental Ethernet Networks -------- (IP-EE)
STATUS: Recommended
SPECIFICATION: RFC 895 (in DPH)
COMMENTS:
OTHER REFERENCES:
CONTACT: Postel@ISI.EDU
Internet Protocol on IEEE 802 ---------------------------- (IP-IEEE)
STATUS: Recommended
SPECIFICATION: see comments
COMMENTS:
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 sent DOD-IP datagrams and other IP
related protocols on 802 networks was developed.
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 Address Resolution Protocol (ARP)) on IEEE
802 networks, the following new policy is established, which
will replace the current policy (see RFC-990 section on IEEE
802 Numbers of Interest, and RFC-948).
The policy is for DDN and Internet community to use 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 RFC-1010 section on Ethernet Numbers of Interest).
Header
...--------+--------+--------+
MAC Header| Length | 802.{3/4/5} MAC
...--------+--------+--------+
+--------+--------+--------+
| Dsap=K1| Ssap=K1| control| 802.2 SAP
+--------+--------+--------+
Reynolds & Postel [Page 42]
^L
RFC 1011 - Official Internet Protocols May 1987
+--------+--------+---------+--------+--------+
|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 like to talk about things in 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).
Note: The method described in RFC 948 (in DPH) is no longer to
be used.
OTHER REFERENCES:
CONTACT: Postel@ISI.EDU
Internet Subnet Protocol ---------------------------------- (IP-SUB)
STATUS: Required
SPECIFICATION: RFC 950
COMMENTS:
This is a very important feature and must be included in all IP
implementations.
Specifies procedures for the use of subnets, which are logical
sub-sections of a single Internet network.
OTHER REFERENCES: RFC 940, RFC 917, RFC 925, RFC 932, RFC 936,
RFC 922
DEPENDENCIES:
CONTACT: Mogul@SU-SCORE.STANFORD.EDU
Reynolds & Postel [Page 43]
^L
RFC 1011 - Official Internet Protocols May 1987
Address Resolution Protocol ---------------------------------- (ARP)
STATUS: Recommended
SPECIFICATION: RFC 826 (IN DPH)
COMMENTS:
This is a procedure for finding the network hardware address
corresponding to an Internet Address.
OTHER REFERENCES:
CONTACT: Postel@ISI.EDU
A Reverse Address Resolution Protocol ----------------------- (RARP)
STATUS: Elective
SPECIFICATION: RFC 903 (IN DPH)
COMMENTS:
This is a procedure for workstations to dynamically find their
protocol address (e.g., their Internet Address), when they only
only know their hardware address (e.g., their attached physical
network address).
OTHER REFERENCES:
CONTACT: Mogul@SU-SCORE.STANFORD.EDU
Multi-LAN Address Resolution Protocol ----------------------- (MARP)
STATUS: Experimental
SPECIFICATION: RFC 925
COMMENTS:
Discussion of the various problems and potential solutions of
"transparent subnets" in a multi-LAN environment.
Please discuss any plans for implementation or use of this
protocol with the contact.
OTHER REFERENCES: RFC 917, RFC 826
Reynolds & Postel [Page 44]
^L
RFC 1011 - Official Internet Protocols May 1987
DEPENDENCIES:
CONTACT: Postel@ISI.EDU
Broadcasting Internet Datagrams ------------------------- (IP-BROAD)
STATUS: Recommended
SPECIFICATION: RFC 919
COMMENTS:
A proposed protocol of simple rules for broadcasting Internet
datagrams on local networks that support broadcast, for
addressing broadcasts, and for how gateways should handle them.
Recommended in the sense of "if you do broadcasting at all then
do it this way".
Please discuss any plans for implementation or use of this
protocol with the contact.
OTHER REFERENCES: RFC 922
DEPENDENCIES:
CONTACT: Mogul@SU-SCORE.STANFORD.EDU
Broadcasting Internet Datagrams with Subnets --------- (IP-SUB-BROAD)
STATUS: Recommended
SPECIFICATION: RFC 922
COMMENTS:
A proposed protocol of simple rules for broadcasting Internet
datagrams on local networks that support broadcast, for
addressing broadcasts, and for how gateways should handle them.
Recommended in the sense of "if you do broadcasting with
subnets at all then do it this way".
Please discuss any plans for implementation or use of this
protocol with the contact.
OTHER REFERENCES: RFC 919
Reynolds & Postel [Page 45]
^L
RFC 1011 - Official Internet Protocols May 1987
DEPENDENCIES:
CONTACT: Mogul@SU-SCORE.STANFORD.EDU
Reliable Asynchronous Transfer Protocol --------------------- (RATP)
STATUS: Experimental
SPECIFICATION: RFC 916
COMMENTS:
This paper specifies a protocol which allows two programs to
reliably communicate over a communication link. It ensures
that the data entering one end of the link if received arrives
at the other end intact and unaltered. This proposed protocol
is designed to operate over a full duplex point-to-point
connection. It contains some features which tailor it to the
RS-232 links now in current use.
Please discuss any plans for implementation or use of this
protocol with the contact.
OTHER REFERENCES:
DEPENDENCIES: Transmission Control Protocol
CONTACT: Finn@ISI.EDU
Thinwire Protocol --------------------------------------- (THINWIRE)
STATUS: Experimental
SPECIFICATION: RFC 914
COMMENTS:
This paper discusses a Thinwire Protocol for connecting
personal computers to the Internet. It primarily focuses on
the particular problems in the Internet of low speed network
interconnection with personal computers, and possible methods
of solution.
Please discuss any plans for implementation or use of this
protocol with the contact.
OTHER REFERENCES:
Reynolds & Postel [Page 46]
^L
RFC 1011 - Official Internet Protocols May 1987
DEPENDENCIES:
CONTACT: Farber@UDEL.EDU
Reynolds & Postel [Page 47]
^L
RFC 1011 - Official Internet Protocols May 1987
ISO and CCITT PROTOCOLS
The International Standards Organization (ISO) and the International
Telegraph and Telephone Consultative Committee (CCITT) are defining a
set of protocols that may be of interest to the Internet community.
Some of these have been published as RFCs for information purposes.
This section lists these protocols.
End System to Intermediate System Routing Exchange Protocol --------
STATUS:
SPECIFICATION: RFC 995
COMMENTS:
This protocol is one of a set of International Standards
produced to facilitate the interconnection of open systems.
The set of standards covers the services and protocols required
to achieve such interconnection. This protocol is positioned
with respect to other related standards by the layers defined
in the Reference Model for Open Systems Interconnection (ISO
7498) and by the structure defined in the Internal Organization
of the Network Layer (DIS 8648). In particular, it is a
protocol of the Network Layer. This protocol permits End
Systems and Intermediate Systems to exchange configuration and
routing information to facilitate the operation of the routing
and relaying functions of the Network Layer.
OTHER REFERENCES: RFC 994
DEPENDENCIES:
CONTACT: ANSI
Connectionless Mode Network Service --------------------- (ISO-8473)
STATUS:
SPECIFICATION: RFC 994
COMMENTS:
This Protocol Standard is one of a set of International
Standards produced to facilitate the interconnection of open
systems. The set of standards covers the services and
protocols required to achieve such interconnection. This
Reynolds & Postel [Page 48]
^L
RFC 1011 - Official Internet Protocols May 1987
Protocol Standard is positioned with respect to other related
standards by the layers defined in the Reference Model for Open
Systems Interconnection (ISO 7498). In particular, it is a
protocol of the Network Layer. This Protocol may be used
between network-entities in end systems or in Network Layer
relay systems (or both). It provides the Connectionless-mode
Network Service as defined in Addendum 1 to the Network Service
Definition Covering Connectionless-mode Transmission (ISO
8348/AD1).
OTHER REFERENCES: RFC 926
DEPENDENCIES:
CONTACT: ANSI
Internet-IP Addressing in ISO-IP -----------------------------------
STATUS:
SPECIFICATION: RFC 986
COMMENTS:
This RFC suggests a method to allow the existing IP addressing,
including the IP protocol field, to be used for the ISO
Connectionless Network Protocol (CLNP). This is a draft
solution to one of the problems inherent in the use of
"ISO-grams" in the DoD Internet. Related issues will be
discussed in subsequent RFCs. This RFC suggests a proposed
protocol for the Internet community, and requests discussion
and suggestions for improvements.
Please discuss any plans for implementation or use of this
protocol with the contact.
OTHER REFERENCES:
DEPENDENCIES:
CONTACT: RCallon@BBN.COM
Reynolds & Postel [Page 49]
^L
RFC 1011 - Official Internet Protocols May 1987
Network Layer Addressing -------------------------------------------
STATUS:
SPECIFICATION: RFC 941
COMMENTS:
This Addendum to the Network Service Definition Standard, ISO
8348, defines the abstract syntax and semantics of the Network
Address (Network Service Access Point Address). The Network
Address defined in this Addendum is the address that appears in
the primitives of the connection-mode Network Service as the
calling address, called address, and responding address
parameters, and in the primitives of the connectionless-mode
Network Service as the source address and destination
address parameters.
Please discuss any plans for implementation or use of this
protocol with the contact.
OTHER REFERENCES:
DEPENDENCIES:
CONTACT: ISO
Transport Protocol Specification ------------------------ (ISO-8073)
STATUS:
SPECIFICATION: RFC 905
COMMENTS:
This is the current specification of the ISO Transport
Protocol. This document is the text of ISO/TC97/SC16/N1576 as
corrected by ISO/TC97/SC16/N1695. This is the specification
currently being voted on in ISO as a Draft International
Standard (DIS).
OTHER REFERENCES: RFC 892
DEPENDENCIES:
CONTACT: ISO
Reynolds & Postel [Page 50]
^L
RFC 1011 - Official Internet Protocols May 1987
ISO Transport Services on Top of the TCP ---------------------------
STATUS:
SPECIFICATION: RFC 1006
COMMENTS:
This memo describes a proposed protocol standard for the
Internet community. The CCITT and the ISO have defined various
session, presentation, and application recommendations which
have been adopted by the international community and numerous
vendors. To the largest extent possible, it is desirable to
offer these higher level services directly to the Internet,
without disrupting existing facilities. This permits users to
develop expertise with ISO and CCITT applications which
previously were not available in the Internet. The intention
is that hosts within the Internet that choose to implement ISO
TSAP services on top of the TCP be expected to adopt and
implement this standard. Suggestions for improvement are
encouraged.
Please discuss any plans for implementation or use of this
protocol with the contact.
OTHER REFERENCES: RFC 983
DEPENDENCIES:
CONTACT: DCass@NRTC.NORTHROP.COM
Mapping Between X.400 and RFC 822 -------------------------- (X.400)
STATUS:
SPECIFICATION: RFC 987
COMMENTS:
The X.400 series of protocols have been defined by CCITT to
provide an Interpersonal Messaging Service (IPMS), making use
of a store and forward Message Transfer Service. It is
expected that this standard will be implemented very widely.
This document describes a set of mappings which will enable
interworking between systems operating the X.400 protocols and
systems using RFC 822 mail protocol or protocols derived from
RFC 822.
Reynolds & Postel [Page 51]
^L
RFC 1011 - Official Internet Protocols May 1987
Please discuss any plans for implementation or use of this
protocol with the contact.
OTHER REFERENCES:
DEPENDENCIES:
CONTACT: Kille@CS.UCL.AC.UK
Reynolds & Postel [Page 52]
^L
|