-
Notifications
You must be signed in to change notification settings - Fork 4
/
rfc-ref.txt
6400 lines (6400 loc) · 842 KB
/
rfc-ref.txt
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
Number | Obsoleted | Reference
| By |
--------+-----------+-----------------------------------------------------------
RFC0001 | | Crocker, S., "Host Software", RFC 1, April 1969.
RFC0002 | | Duvall, B., "Host software", RFC 2, April 1969.
RFC0003 | RFC0010 | Crocker, S., "Documentation conventions", RFC 3, April 1969.
RFC0004 | | Shapiro, E., "Network timetable", RFC 4, March 1969.
RFC0005 | | Rulifson, J., "Decode Encode Language (DEL)", RFC 5, June 1969.
RFC0006 | | Crocker, S., "Conversation with Bob Kahn", RFC 6, April 1969.
RFC0007 | | Deloche, G., "Host-IMP interface", RFC 7, May 1969.
RFC0008 | | Deloche, G., "ARPA Network Functional Specifications", RFC 8, May 1969.
RFC0009 | | Deloche, G., "Host Software", RFC 9, May 1969.
RFC0010 | RFC0016 | Crocker, S., "Documentation conventions", RFC 10, July 1969.
RFC0011 | RFC0033 | Deloche, G., "Implementation of the Host - Host Software Procedures in GORDO", RFC 11, August 1969.
RFC0012 | | Wingfield, M., "IMP-Host interface flow diagrams", RFC 12, August 1969.
RFC0013 | | Cerf, V., "Zero Text Length EOF Message", RFC 13, August 1969.
RFC0015 | | Carr, C., "Network subsystem for time sharing hosts", RFC 15, September 1969.
RFC0016 | RFC0024 | Crocker, S., "M.I.T", RFC 16, August 1969.
RFC0017 | | Kreznar, J., "Some questions re: Host-IMP Protocol", RFC 17, August 1969.
RFC0018 | | Cerf, V., "IMP-IMP and HOST-HOST Control Links", RFC 18, September 1969.
RFC0019 | | Kreznar, J., "Two protocol suggestions to reduce congestion at swap bound nodes", RFC 19, October 1969.
RFC0020 | | Cerf, V., "ASCII format for network interchange", RFC 20, October 1969.
RFC0021 | | Cerf, V., "Network meeting", RFC 21, October 1969.
RFC0022 | | Cerf, V., "Host-host control message formats", RFC 22, October 1969.
RFC0023 | | Gregg, G., "Transmission of Multiple Control Messages", RFC 23, October 1969.
RFC0024 | | Crocker, S., "Documentation Conventions", RFC 24, November 1969.
RFC0025 | | Crocker, S., "No High Link Numbers", RFC 25, October 1969.
RFC0027 | | Crocker, S., "Documentation Conventions", RFC 27, December 1969.
RFC0028 | | English, W., "Time Standards", RFC 28, January 1970.
RFC0029 | | Kahn, R., "Response to RFC 28", RFC 29, January 1970.
RFC0030 | | Crocker, S., "Documentation Conventions", RFC 30, February 1970.
RFC0031 | | Bobrow, D. and W. Sutherland, "Binary Message Forms in Computer", RFC 31, February 1968.
RFC0032 | | Cole, J., "Some Thoughts on SRI's Proposed Real Time Clock", RFC 32, February 1970.
RFC0033 | | Crocker, S., "New Host-Host Protocol", RFC 33, February 1970.
RFC0034 | | English, W., "Some Brief Preliminary Notes on the Augmentation Research Center Clock", RFC 34, February 1970.
RFC0035 | | Crocker, S., "Network Meeting", RFC 35, March 1970.
RFC0036 | | Crocker, S., "Protocol Notes", RFC 36, March 1970.
RFC0037 | | Crocker, S., "Network Meeting Epilogue, etc", RFC 37, March 1970.
RFC0038 | | Wolfe, S., "Comments on Network Protocol from NWG/RFC #36", RFC 38, March 1970.
RFC0039 | | Harslem, E. and J. Heafner, "Comments on Protocol Re: NWG/RFC #36", RFC 39, March 1970.
RFC0040 | | Harslem, E. and J. Heafner, "More Comments on the Forthcoming Protocol", RFC 40, March 1970.
RFC0041 | | Melvin, J., "IMP-IMP Teletype Communication", RFC 41, March 1970.
RFC0042 | | Ancona, E., "Message Data Types", RFC 42, March 1970.
RFC0043 | | Nemeth, A., "Proposed Meeting", RFC 43, April 1970.
RFC0044 | | Shoshani, A., Long, R., and A. Landsberg, "Comments on NWG/RFC 33 and 36", RFC 44, April 1970.
RFC0045 | | Postel, J. and S. Crocker, "New Protocol is Coming", RFC 45, April 1970.
RFC0046 | | Meyer, E., "ARPA Network protocol notes", RFC 46, April 1970.
RFC0047 | | Postel, J. and S. Crocker, "BBN's Comments on NWG/RFC #33", RFC 47, April 1970.
RFC0048 | | Postel, J. and S. Crocker, "Possible protocol plateau", RFC 48, April 1970.
RFC0049 | | Meyer, E., "Conversations with S. Crocker (UCLA)", RFC 49, April 1970.
RFC0050 | | Harslen, E. and J. Heafner, "Comments on the Meyer Proposal", RFC 50, April 1970.
RFC0051 | | Elie, M., "Proposal for a Network Interchange Language", RFC 51, May 1970.
RFC0052 | | Postel, J. and S. Crocker, "Updated distribution list", RFC 52, July 1970.
RFC0053 | | Crocker, S., "Official protocol mechanism", RFC 53, June 1970.
RFC0054 | | Crocker, S., Postel, J., Newkirk, J., and M. Kraley, "Official Protocol Proffering", RFC 54, June 1970.
RFC0055 | | Newkirk, J., Kraley, M., Postel, J., and S. Crocker, "Prototypical implementation of the NCP", RFC 55, June 1970.
RFC0056 | | Belove, E., Black, D., Flegal, R., and L. Farquar, "Third Level Protocol: Logger Protocol", RFC 56, June 1970.
RFC0057 | | Kraley, M. and J. Newkirk, "Thoughts and Reflections on NWG/RFC 54", RFC 57, June 1970.
RFC0058 | | Skinner, T., "Logical Message Synchronization", RFC 58, June 1970.
RFC0059 | | Meyer, E., "Flow Control - Fixed Versus Demand Allocation", RFC 59, June 1970.
RFC0060 | | Kalin, R., "Simplified NCP Protocol", RFC 60, July 1970.
RFC0061 | RFC0062 | Walden, D., "Note on Interprocess Communication in a Resource Sharing Computer Network", RFC 61, July 1970.
RFC0062 | | Walden, D., "Systems for Interprocess Communication in a Resource Sharing Computer Network", RFC 62, August 1970.
RFC0063 | | Cerf, V., "Belated Network Meeting Report", RFC 63, July 1970.
RFC0064 | | Elie, M., "Getting rid of marking", RFC 64, July 1970.
RFC0065 | | Walden, D., "Comments on Host/Host Protocol document #1", RFC 65, August 1970.
RFC0066 | RFC0123 | Crocker, S., "NIC - third level ideas and other noise", RFC 66, August 1970.
RFC0067 | | Crowther, W., "Proposed Change to Host/IMP Spec to Eliminate Marking", RFC 67, January 1970.
RFC0068 | | Elie, M., "Comments on Memory Allocation Control Commands: CEASE, ALL, GVB, RET, and RFNM", RFC 68, August 1970.
RFC0069 | | Bhushan, A., "Distribution List Change for MIT", RFC 69, September 1970.
RFC0070 | | Crocker, S., "Note on Padding", RFC 70, October 1970.
RFC0071 | | Schipper, T., "Reallocation in Case of Input Error", RFC 71, September 1970.
RFC0072 | | Bressler, R., "Proposed Moratorium on Changes to Network Protocol", RFC 72, September 1970.
RFC0073 | | Crocker, S., "Response to NWG/RFC 67", RFC 73, September 1970.
RFC0074 | | White, J., "Specifications for Network Use of the UCSB On-Line System", RFC 74, October 1970.
RFC0075 | | Crocker, S., "Network Meeting", RFC 75, October 1970.
RFC0076 | | Bouknight, J., Madden, J., and G. Grossman, "Connection by name: User oriented protocol", RFC 76, October 1970.
RFC0077 | | Postel, J., "Network meeting report", RFC 77, November 1970.
RFC0078 | | Harslem, E., Heafner, J., and J. White, "NCP Status Report: UCSB/Rand", RFC 78, October 1970.
RFC0079 | | Meyer, E., "Logger Protocol error", RFC 79, November 1970.
RFC0080 | RFC0123 | Harslem, E. and J. Heafner, "Protocols and Data Formats", RFC 80, December 1970.
RFC0081 | | Bouknight, J., "Request for Reference Information", RFC 81, December 1970.
RFC0082 | | Meyer, E., "Network Meeting Notes", RFC 82, December 1970.
RFC0083 | | Anderson, R., Harslem, E., and J. Heafner, "Language-machine for data reconfiguration", RFC 83, December 1970.
RFC0084 | | North, J., "List of NWG/RFC's 1-80", RFC 84, December 1970.
RFC0085 | | Crocker, S., "Network Working Group meeting", RFC 85, December 1970.
RFC0086 | | Crocker, S., "Proposal for a Network Standard Format for a Data Stream to Control Graphics Display", RFC 86, January 1971.
RFC0087 | | Vezza, A., "Topic for Discussion at the Next Network Working Group Meeting", RFC 87, January 1971.
RFC0088 | RFC0189 | Braden, R. and S. Wolfe, "NETRJS: A third level protocol for Remote Job Entry", RFC 88, January 1971.
RFC0089 | | Metcalfe, R., "Some historic moments in networking", RFC 89, January 1971.
RFC0090 | | Braden, R., "CCN as a Network Service Center", RFC 90, January 1971.
RFC0091 | | Mealy, G., "Proposed User-User Protocol", RFC 91, December 1970.
RFC0093 | | McKenzie, A., "Initial Connection Protocol", RFC 93, January 1971.
RFC0094 | | Harslem, E. and J. Heafner, "Some thoughts on Network Graphics", RFC 94, February 1971.
RFC0095 | RFC0155 | Crocker, S., "Distribution of NWG/RFC's through the NIC", RFC 95, February 1971.
RFC0096 | | Watson, R., "An Interactive Network Experiment to Study Modes of Access the Network Information Center", RFC 96, February 1971.
RFC0097 | | Melvin, J. and R. Watson, "First Cut at a Proposed Telnet Protocol", RFC 97, February 1971.
RFC0098 | | Meyer, E. and T. Skinner, "Logger Protocol Proposal", RFC 98, February 1971.
RFC0099 | | Karp, P., "Network Meeting", RFC 99, February 1971.
RFC0100 | | Karp, P., "Categorization and guide to NWG/RFCs", RFC 100, February 1971.
RFC0101 | | Watson, R., "Notes on the Network Working Group meeting, Urbana, Illinois, February 17, 1971", RFC 101, February 1971.
RFC0102 | | Crocker, S., "Output of the Host-Host Protocol glitch cleaning committee", RFC 102, February 1971.
RFC0103 | | Kalin, R., "Implementation of Interrupt Keys", RFC 103, February 1971.
RFC0104 | | Postel, J. and S. Crocker, "Link 191", RFC 104, February 1971.
RFC0105 | | White, J., "Network Specifications for Remote Job Entry and Remote Job Output Retrieval at UCSB", RFC 105, March 1971.
RFC0106 | | O'Sullivan, T., "User/Server Site Protocol Network Host Questionnaire", RFC 106, March 1971.
RFC0107 | | Bressler, R., Crocker, S., Crowther, W., Grossman, G., Tomlinson, R., and J. White, "Output of the Host-Host Protocol Glitch Cleaning Committee", RFC 107, March 1971.
RFC0108 | | Watson, R., "Attendance list at the Urbana NWG meeting, February 17-19, 1971", RFC 108, March 1971.
RFC0109 | | Winett, J., "Level III Server Protocol for the Lincoln Laboratory 360/67 Host", RFC 109, March 1971.
RFC0110 | | Winett, J., "Conventions for Using an IBM 2741 Terminal as a User Console for Access to Network Server Hosts", RFC 110, March 1971.
RFC0111 | | Crocker, S., "Pressure from the Chairman", RFC 111, March 1971.
RFC0112 | | O'Sullivan, T., "User/Server Site Protocol: Network Host Questionnaire", RFC 112, April 1971.
RFC0113 | | Harslem, E., Heafner, J., and J. White, "Network activity report: UCSB Rand", RFC 113, April 1971.
RFC0114 | | Bhushan, A., "File Transfer Protocol", RFC 114, April 1971.
RFC0115 | | Watson, R. and J. North, "Some Network Information Center policies on handling documents", RFC 115, April 1971.
RFC0116 | | Crocker, S., "Structure of the May NWG Meeting", RFC 116, April 1971.
RFC0117 | | Wong, J., "Some comments on the official protocol", RFC 117, April 1971.
RFC0118 | | Watson, R., "Recommendations for facility documentation", RFC 118, April 1971.
RFC0119 | | Krilanovich, M., "Network Fortran Subprograms", RFC 119, April 1971.
RFC0120 | | Krilanovich, M., "Network PL1 subprograms", RFC 120, April 1971.
RFC0121 | | Krilanovich, M., "Network on-line operators", RFC 121, April 1971.
RFC0122 | | White, J., "Network specifications for UCSB's Simple-Minded File System", RFC 122, April 1971.
RFC0123 | RFC0165 | Crocker, S., "Proffered Official ICP", RFC 123, April 1971.
RFC0124 | | Melvin, J., "Typographical error in RFC 107", RFC 124, April 1971.
RFC0125 | | McConnell, J., "Response to RFC 86: Proposal for Network Standard Format for a Graphics Data Stream", RFC 125, April 1971.
RFC0126 | | McConnell, J., "Graphics Facilities at Ames Research Center", RFC 126, April 1971.
RFC0127 | RFC0145 | Postel, J., "Comments on RFC 123", RFC 127, April 1971.
RFC0128 | | Postel, J., "Bytes", RFC 128, April 1971.
RFC0129 | | Harslem, E., Heafner, J., and E. Meyer, "Request for comments on socket name structure", RFC 129, April 1971.
RFC0130 | | Heafner, J., "Response to RFC 111: Pressure from the chairman", RFC 130, April 1971.
RFC0131 | | Harslem, E. and J. Heafner, "Response to RFC 116: May NWG meeting", RFC 131, April 1971.
RFC0132 | RFC0154 | White, J., "Typographical Error in RFC 107", RFC 132, April 1971.
RFC0133 | | Sunberg, R., "File Transfer and Error Recovery", RFC 133, April 1971.
RFC0134 | | Vezza, A., "Network Graphics meeting", RFC 134, April 1971.
RFC0135 | | Hathaway, W., "Response to NWG/RFC 110", RFC 135, April 1971.
RFC0136 | | Kahn, R., "Host accounting and administrative procedures", RFC 136, April 1971.
RFC0137 | | O'Sullivan, T., "Telnet Protocol - a proposed document", RFC 137, April 1971.
RFC0138 | | Anderson, R., Cerf, V., Harslem, E., Heafner, J., Madden, J., Metcalfe, R., Shoshani, A., White, J., and D. Wood, "Status report on proposed Data Reconfiguration Service", RFC 138, April 1971.
RFC0139 | | O'Sullivan, T., "Discussion of Telnet Protocol", RFC 139, May 1971.
RFC0140 | | Crocker, S., "Agenda for the May NWG meeting", RFC 140, May 1971.
RFC0141 | | Harslem, E. and J. Heafner, "Comments on RFC 114: A File Transfer Protocol", RFC 141, April 1971.
RFC0142 | | Kline, C. and J. Wong, "Time-Out Mechanism in the Host-Host Protocol", RFC 142, May 1971.
RFC0143 | RFC0165 | Naylor, W., Wong, J., Kline, C., and J. Postel, "Regarding proffered official ICP", RFC 143, May 1971.
RFC0144 | | Shoshani, A., "Data sharing on computer networks", RFC 144, April 1971.
RFC0145 | RFC0165 | Postel, J., "Initial Connection Protocol Control Commands", RFC 145, May 1971.
RFC0146 | | Karp, P., McKay, D., and D. Wood, "Views on issues relevant to data sharing on computer networks", RFC 146, May 1971.
RFC0147 | | Winett, J., "Definition of a socket", RFC 147, May 1971.
RFC0148 | | Bhushan, A., "Comments on RFC 123", RFC 148, May 1971.
RFC0149 | | Crocker, S., "Best Laid Plans", RFC 149, May 1971.
RFC0150 | | Kalin, R., "Use of IPC Facilities: A Working Paper", RFC 150, May 1971.
RFC0151 | | Shoshani, A., "Comments on a proffered official ICP: RFCs 123, 127", RFC 151, May 1971.
RFC0152 | | Wilber, M., "SRI Artificial Intelligence status report", RFC 152, May 1971.
RFC0153 | | Melvin, J. and R. Watson, "SRI ARC-NIC status", RFC 153, May 1971.
RFC0154 | | Crocker, S., "Exposition Style", RFC 154, May 1971.
RFC0155 | RFC0168 | North, J., "ARPA Network mailing lists", RFC 155, May 1971.
RFC0156 | | Bouknight, J., "Status of the Illinois site: Response to RFC 116", RFC 156, April 1971.
RFC0157 | | Cerf, V., "Invitation to the Second Symposium on Problems in the Optimization of Data Communications Systems", RFC 157, May 1971.
RFC0158 | RFC0495 | O'Sullivan, T., "Telnet Protocol: A Proposed Document", RFC 158, May 1971.
RFC0160 | RFC0200, RFC0999 | Network Information Center. Stanford Research Institute, "RFC brief list", RFC 160, May 1971.
RFC0161 | | Shoshani, A., "Solution to the race condition in the ICP", RFC 161, May 1971.
RFC0162 | | Kampe, M., "NETBUGGER3", RFC 162, May 1971.
RFC0163 | | Cerf, V., "Data transfer protocols", RFC 163, May 1971.
RFC0164 | | Heafner, J., "Minutes of Network Working Group meeting, 5/16 through 5/19/71", RFC 164, May 1971.
RFC0165 | | Postel, J., "Proffered Official Initial Connection Protocol", RFC 165, May 1971.
RFC0166 | | Anderson, R., Cerf, V., Harslem, E., Heafner, J., Madden, J., Metcalfe, R., Shoshani, A., White, J., and D. Wood, "Data Reconfiguration Service: An implementation specification", RFC 166, May 1971.
RFC0167 | | Bhushan, A., Metcalfe, R., and J. Winett, "Socket conventions reconsidered", RFC 167, May 1971.
RFC0168 | RFC0211 | North, J., "ARPA Network mailing lists", RFC 168, May 1971.
RFC0169 | | Crocker, S., "COMPUTER NETWORKS", RFC 169, May 1971.
RFC0170 | RFC0200 | Network Information Center. Stanford Research Institute, "RFC List by Number", RFC 170, June 1971.
RFC0171 | RFC0264 | Bhushan, A., Braden, B., Crowther, W., Harslem, E., Heafner, J., McKenize, A., Melvin, J., Sundberg, B., Watson, D., and J. White, "The Data Transfer Protocol", RFC 171, June 1971.
RFC0172 | RFC0265 | Bhushan, A., Braden, B., Crowther, W., Harslem, E., Heafner, J., McKenzie, A., Melvin, J., Sundberg, B., Watson, D., and J. White, "The File Transfer Protocol", RFC 172, June 1971.
RFC0173 | | Karp, P. and D. McKay, "Network Data Management Committee Meeting Announcement", RFC 173, June 1971.
RFC0174 | | Postel, J. and V. Cerf, "UCLA - Computer Science Graphics Overview", RFC 174, June 1971.
RFC0175 | | Harslem, E. and J. Heafner, "Comments on "Socket Conventions Reconsidered"", RFC 175, June 1971.
RFC0176 | | Bhushan, A., Kanodia, R., Metcalfe, R., and J. Postel, "Comments on "Byte size for connections"", RFC 176, June 1971.
RFC0177 | | McConnell, J., "Device independent graphical display description", RFC 177, June 1971.
RFC0178 | | Cotton, I., "Network graphic attention handling", RFC 178, June 1971.
RFC0179 | | McKenzie, A., "Link Number Assignments", RFC 179, June 1971.
RFC0180 | | McKenzie, A., "File system questionnaire", RFC 180, June 1971.
RFC0181 | | McConnell, J., "Modifications to RFC 177", RFC 181, July 1971.
RFC0182 | | North, J., "Compilation of list of relevant site reports", RFC 182, June 1971.
RFC0183 | | Winett, J., "EBCDIC Codes and Their Mapping to ASCII", RFC 183, July 1971.
RFC0184 | | Kelley, K., "Proposed graphic display modes", RFC 184, July 1971.
RFC0185 | | North, J., "NIC distribution of manuals and handbooks", RFC 185, July 1971.
RFC0186 | | Michener, J., "Network graphics loader", RFC 186, July 1971.
RFC0187 | | McKay, D. and D. Karp, "Network/440 Protocol Concept", RFC 187, July 1971.
RFC0188 | | Karp, P. and D. McKay, "Data management meeting announcement", RFC 188, January 1971.
RFC0189 | RFC0599 | Braden, R., "Interim NETRJS specifications", RFC 189, July 1971.
RFC0190 | | Deutsch, L., "DEC PDP-10-IMLAC communications system", RFC 190, July 1971.
RFC0191 | | Irby, C., "Graphics implementation and conceptualization at Augmentation Research Center", RFC 191, July 1971.
RFC0192 | | Watson, R., "Some factors which a Network Graphics Protocol must consider", RFC 192, July 1971.
RFC0193 | RFC0198 | Harslem, E. and J. Heafner, "NETWORK CHECKOUT", RFC 193, July 1971.
RFC0194 | | Cerf, V., Harslem, E., Heafner, J., Metcalfe, B., and J. White, "The Data Reconfiguration Service -- Compiler/Interpreter Implementation Notes", RFC 194, July 1971.
RFC0195 | | Mealy, G., "Data computers-data descriptions and access language", RFC 195, July 1971.
RFC0196 | RFC0221 | Watson, R., "Mail Box Protocol", RFC 196, July 1971.
RFC0197 | | Shoshani, A. and E. Harslem, "Initial Connection Protocol - Reviewed", RFC 197, July 1971.
RFC0198 | RFC0214 | Heafner, J., "Site Certification - Lincoln Labs 360/67", RFC 198, July 1971.
RFC0199 | | Williams, T., "Suggestions for a Network Data-Tablet Graphics Protocol", RFC 199, July 1971.
RFC0200 | NIC 7724 | North, J., "RFC list by number", RFC 200, August 1971.
RFC0202 | | Wolfe, S. and J. Postel, "Possible Deadlock in ICP", RFC 202, July 1971.
RFC0203 | | Kalin, R., "Achieving reliable communication", RFC 203, August 1971.
RFC0204 | | Postel, J., "Sockets in use", RFC 204, August 1971.
RFC0205 | | Braden, R., "NETCRT - a character display protocol", RFC 205, August 1971.
RFC0206 | | White, J., "A User TELNET Description of an Initial Implementation", RFC 206, August 1971.
RFC0207 | RFC0212 | Vezza, A., "September Network Working Group meeting", RFC 207, August 1971.
RFC0208 | | McKenzie, A., "Address tables", RFC 208, August 1971.
RFC0209 | | Cosell, B., "Host/IMP interface documentation", RFC 209, August 1971.
RFC0210 | | Conrad, W., "Improvement of Flow Control", RFC 210, August 1971.
RFC0211 | RFC0300 | North, J., "ARPA Network Mailing Lists", RFC 211, August 1971.
RFC0212 | | Information Sciences Institute University of Southern California, "NWG meeting on network usage", RFC 212, August 1971.
RFC0213 | | Cosell, B., "IMP System change notification", RFC 213, August 1971.
RFC0214 | | Harslem, E., "Network checkpoint", RFC 214, August 1971.
RFC0215 | | McKenzie, A., "NCP, ICP, and Telnet: The Terminal IMP implementation", RFC 215, August 1971.
RFC0216 | | White, J., "Telnet Access to UCSB's On-Line System", RFC 216, September 1971.
RFC0217 | | White, J., "Specifications changes for OLS, RJE/RJOR, and SMFS", RFC 217, September 1971.
RFC0218 | | Cosell, B., "Changing the IMP status reporting facility", RFC 218, September 1971.
RFC0219 | | Winter, R., "User's View of the Datacomputer", RFC 219, September 1971.
RFC0221 | RFC0278 | Watson, R., "Mail Box Protocol: Version 2", RFC 221, August 1971.
RFC0222 | | Metcalfe, R., "Subject: System programmer's workshop", RFC 222, September 1971.
RFC0223 | | Melvin, J. and R. Watson, "Network Information Center schedule for network users", RFC 223, September 1971.
RFC0224 | | McKenzie, A., "Comments on Mailbox Protocol", RFC 224, September 1971.
RFC0225 | | Harslem, E. and R. Stoughton, "Rand/UCSB network graphics experiment", RFC 225, September 1971.
RFC0226 | RFC0247 | Karp, P., "Standardization of host mnemonics", RFC 226, September 1971.
RFC0227 | | Heafner, J. and E. Harslem, "Data transfer rates (Rand/UCLA)", RFC 227, September 1971.
RFC0228 | | Walden, D., "Clarification", RFC 228, September 1971.
RFC0229 | RFC0236 | Postel, J., "Standard host names", RFC 229, September 1971.
RFC0230 | | Pyke, T., "Toward reliable operation of minicomputer-based terminals on a TIP", RFC 230, September 1971.
RFC0231 | | Heafner, J. and E. Harslem, "Service center standards for remote usage: A user's view", RFC 231, September 1971.
RFC0232 | | Vezza, A., "Postponement of network graphics meeting", RFC 232, September 1971.
RFC0233 | | Bhushan, A. and R. Metcalfe, "Standardization of host call letters", RFC 233, September 1971.
RFC0234 | | Vezza, A., "Network Working Group meeting schedule", RFC 234, October 1971.
RFC0235 | RFC0240 | Westheimer, E., "Site status", RFC 235, September 1971.
RFC0236 | | Postel, J., "Standard host names", RFC 236, September 1971.
RFC0237 | RFC0273 | Watson, R., "NIC view of standard host names", RFC 237, October 1971.
RFC0238 | | Braden, R., "Comments on DTP and FTP proposals", RFC 238, September 1971.
RFC0239 | | Braden, R., "Host mnemonics proposed in RFC 226 (NIC 7625)", RFC 239, September 1971.
RFC0240 | RFC0252 | McKenzie, A., "Site Status", RFC 240, September 1971.
RFC0241 | | McKenzie, A., "Connecting computers to MLC ports", RFC 241, September 1971.
RFC0242 | | Haibt, L. and A. Mullery, "Data Descriptive Language for Shared Data", RFC 242, July 1971.
RFC0243 | RFC0290 | Mullery, A., "Network and data sharing bibliography", RFC 243, October 1971.
RFC0245 | | Falls, C., "Reservations for Network Group meeting", RFC 245, October 1971.
RFC0246 | | Vezza, A., "Network Graphics meeting", RFC 246, October 1971.
RFC0247 | | Karp, P., "Proffered set of standard host names", RFC 247, October 1971.
RFC0249 | | Borelli, R., "Coordination of equipment and supplies purchase", RFC 249, October 1971.
RFC0250 | | Brodie, H., "Some thoughts on file transfer", RFC 250, October 1971.
RFC0251 | | Stern, D., "Weather data", RFC 251, October 1971.
RFC0252 | RFC0255 | Westheimer, E., "Network host status", RFC 252, October 1971.
RFC0253 | | Moorer, J., "Second Network Graphics meeting details", RFC 253, October 1971.
RFC0254 | | Bhushan, A., "Scenarios for using ARPANET computers", RFC 254, October 1971.
RFC0255 | RFC0266 | Westheimer, E., "Status of network hosts", RFC 255, October 1971.
RFC0256 | | Cosell, B., "IMPSYS change notification", RFC 256, November 1971.
RFC0263 | | McKenzie, A., ""Very Distant" Host interface", RFC 263, December 1971.
RFC0264 | RFC0354 | Bhushan, A., Braden, B., Crowther, W., Harslem, E., Heafner, J., McKenize, A., Sundberg, B., Watson, D., and J. White, "The Data Transfer Protocol", RFC 264, January 1972.
RFC0265 | RFC0354 | Bhushan, A., Braden, B., Crowther, W., Harslem, E., Heafner, J., McKenzie, A., Melvin, J., Sundberg, B., Watson, D., and J. White, "The File Transfer Protocol", RFC 265, November 1971.
RFC0266 | RFC0267 | Westheimer, E., "Network host status", RFC 266, November 1971.
RFC0267 | RFC0287 | Westheimer, E., "Network Host Status", RFC 267, November 1971.
RFC0268 | | Postel, J., "Graphics facilities information", RFC 268, November 1971.
RFC0269 | | Brodie, H., "Some Experience with File Transfer", RFC 269, December 1971.
RFC0270 | | McKenzie, A., "Correction to BBN Report No. 1822 (NIC NO 7958)", RFC 270, January 1972.
RFC0271 | | Cosell, B., "IMP System change notifications", RFC 271, January 1972.
RFC0273 | | Watson, R., "More on standard host names", RFC 273, October 1971.
RFC0274 | | Forman, E., "Establishing a local guide for network usage", RFC 274, November 1971.
RFC0276 | | Watson, R., "NIC course", RFC 276, November 1971.
RFC0278 | | Bhushan, A., Braden, R., Harslem, E., Heafner, J., McKenzie, A., Melvin, J., Sundberg, R., Watson, R., and J. White, "Revision of the Mail Box Protocol", RFC 278, November 1971.
RFC0280 | | Watson, R., "A Draft of Host Names", RFC 280, November 1971.
RFC0281 | | McKenzie, A., "Suggested addition to File Transfer Protocol", RFC 281, December 1971.
RFC0282 | | Padlipsky, M., "Graphics meeting report", RFC 282, December 1971.
RFC0283 | | Braden, R., "NETRJT: Remote Job Service Protocol for TIPS", RFC 283, December 1971.
RFC0285 | | Huff, D., "Network graphics", RFC 285, December 1971.
RFC0286 | | Forman, E., "Network Library Information System", RFC 286, December 1971.
RFC0287 | RFC0288 | Westheimer, E., "Status of Network Hosts", RFC 287, December 1971.
RFC0288 | RFC0293 | Westheimer, E., "Network host status", RFC 288, January 1972.
RFC0289 | RFC0384 | Watson, R., "What we hope is an official list of host names", RFC 289, December 1971.
RFC0290 | | Mullery, A., "Computer networks and data sharing: A bibliography", RFC 290, January 1972.
RFC0291 | | McKay, D., "Data Management Meeting Announcement", RFC 291, January 1972.
RFC0292 | RFC0493 | Michener, J., Cotton, I., Kelley, K., Liddle, D., and E. Meyer, "Graphics Protocol: Level 0 only", RFC 292, January 1972.
RFC0293 | RFC0298 | Westheimer, E., "Network Host Status", RFC 293, January 1972.
RFC0294 | | Bhushan, A., "The Use of "Set Data Type" Transaction in File Transfer Protocol", RFC 294, January 1972.
RFC0295 | | Postel, J., "Report of the Protocol Workshop, 12 October 1971", RFC 295, January 1972.
RFC0296 | | Liddle, D., "DS-1 Display System", RFC 296, January 1972.
RFC0297 | | Walden, D., "TIP Message Buffers", RFC 297, January 1972.
RFC0298 | RFC0306 | Westheimer, E., "Network host status", RFC 298, February 1972.
RFC0299 | | Hopkin, D., "Information Management System", RFC 299, February 1972.
RFC0300 | RFC0303 | North, J., "ARPA Network mailing lists", RFC 300, January 1972.
RFC0301 | | Alter, R., "BBN IMP (#5) and NCC Schedule March 4, 1971", RFC 301, February 1972.
RFC0302 | | Bryan, R., "Exercising The ARPANET", RFC 302, February 1972.
RFC0303 | RFC0329 | Network Information Center. Stanford Research Institute, "ARPA Network mailing lists", RFC 303, March 1972.
RFC0304 | | McKay, D., "Data Management System Proposal for the ARPA Network", RFC 304, February 1972.
RFC0305 | | Alter, R., "Unknown Host Numbers", RFC 305, February 1972.
RFC0306 | RFC0315 | Westheimer, E., "Network host status", RFC 306, February 1972.
RFC0307 | | Harslem, E., "Using network Remote Job Entry", RFC 307, February 1972.
RFC0308 | | Seriff, M., "ARPANET host availability data", RFC 308, March 1972.
RFC0309 | | Bhushan, A., "Data and File Transfer Workshop Announcement", RFC 309, March 1972.
RFC0310 | | Bhushan, A., "Another Look at Data and File Transfer Protocols", RFC 310, April 1972.
RFC0311 | | Bryan, R., "New Console Attachments to the USCB Host", RFC 311, February 1972.
RFC0312 | | McKenzie, A., "Proposed Change in IMP-to-Host Protocol", RFC 312, March 1972.
RFC0313 | | O'Sullivan, T., "Computer based instruction", RFC 313, March 1972.
RFC0314 | | Cotton, I., "Network Graphics Working Group Meeting", RFC 314, March 1972.
RFC0315 | RFC0319 | Westheimer, E., "Network Host Status", RFC 315, March 1972.
RFC0316 | | McKay, D. and A. Mullery, "ARPA Network Data Management Working Group", RFC 316, February 1972.
RFC0317 | RFC0604 | Postel, J., "Official Host-Host Protocol Modification: Assigned Link Numbers", RFC 317, March 1972.
RFC0318 | | Postel, J., "Telnet Protocols", RFC 318, April 1972.
RFC0319 | | Westheimer, E., "Network Host Status", RFC 319, March 1972.
RFC0320 | | Reddy, R., "Workshop on Hard Copy Line Graphics", RFC 320, March 1972.
RFC0321 | | Karp, P., "CBI Networking Activity at MITRE", RFC 321, March 1972.
RFC0322 | | Cerf, V. and J. Postel, "Well known socket numbers", RFC 322, March 1972.
RFC0323 | | Cerf, V., "Formation of Network Measurement Group (NMG)", RFC 323, March 1972.
RFC0324 | | Postel, J., "RJE Protocol meeting", RFC 324, April 1972.
RFC0325 | | Hicks, G., "Network Remote Job Entry program - NETRJS", RFC 325, April 1972.
RFC0326 | RFC0330 | Westheimer, E., "Network Host Status", RFC 326, April 1972.
RFC0327 | | Bhushan, A., "Data and File Transfer workshop notes", RFC 327, April 1972.
RFC0328 | | Postel, J., "Suggested Telnet Protocol Changes", RFC 328, April 1972.
RFC0329 | RFC0363 | Network Information Center. Stanford Research Institute, "ARPA Network Mailing Lists", RFC 329, May 1972.
RFC0330 | | Westheimer, E., "Network Host Status", RFC 330, April 1972.
RFC0331 | RFC0343 | McQuillan, J., "IMP System Change Notification", RFC 331, April 1972.
RFC0332 | RFC0342 | Westheimer, E., "Network Host Status", RFC 332, April 1972.
RFC0333 | | Bressler, R., Murphy, D., and D. Walden, "Proposed experiment with a Message Switching Protocol", RFC 333, May 1972.
RFC0334 | | McKenzie, A., "Network Use on May 8", RFC 334, May 1972.
RFC0335 | | Bryan, R., "New Interface - IMP/360", RFC 335, May 1972.
RFC0336 | | Cotton, I., "Level 0 Graphic Input Protocol", RFC 336, May 1972.
RFC0338 | | Braden, R., "EBCDIC/ASCII Mapping for Network RJE", RFC 338, May 1972.
RFC0339 | | Thomas, R., "MLTNET: A "Multi Telnet" Subsystem for Tenex", RFC 339, May 1972.
RFC0340 | | O'Sullivan, T., "Proposed Telnet Changes", RFC 340, May 1972.
RFC0342 | RFC0344 | Westheimer, E., "Network Host Status", RFC 342, May 1972.
RFC0343 | RFC0359 | McKenzie, A., "IMP System change notification", RFC 343, May 1972.
RFC0344 | RFC0353 | Westheimer, E., "Network Host Status", RFC 344, May 1972.
RFC0345 | | Kelley, K., "Interest in Mixed Integer Programming (MPSX on NIC 360/91 at CCN)", RFC 345, May 1972.
RFC0346 | | Postel, J., "Satellite Considerations", RFC 346, May 1972.
RFC0347 | | Postel, J., "Echo process", RFC 347, May 1972.
RFC0348 | | Postel, J., "Discard Process", RFC 348, May 1972.
RFC0349 | RFC0433 | Postel, J., "Proposed Standard Socket Numbers", RFC 349, May 1972.
RFC0350 | | Stoughton, R., "User Accounts for UCSB On-Line System", RFC 350, May 1972.
RFC0351 | | Crocker, D., "Graphics information form for the ARPANET graphics resources notebook", RFC 351, June 1972.
RFC0352 | | Crocker, D., "TIP Site Information Form", RFC 352, June 1972.
RFC0353 | RFC0362 | Westheimer, E., "Network host status", RFC 353, June 1972.
RFC0354 | RFC0542 | Bhushan, A., "File Transfer Protocol", RFC 354, July 1972.
RFC0355 | | Davidson, J., "Response to NWG/RFC 346", RFC 355, June 1972.
RFC0356 | | Alter, R., "ARPA Network Control Center", RFC 356, June 1972.
RFC0357 | | Davidson, J., "Echoing strategy for satellite links", RFC 357, June 1972.
RFC0359 | | Walden, D., "Status of the Release of the New IMP System (2600)", RFC 359, June 1972.
RFC0360 | RFC0407 | Holland, C., "Proposed Remote Job Entry Protocol", RFC 360, June 1972.
RFC0361 | | Bressler, R., "Deamon Processes on Host 106", RFC 361, July 1972.
RFC0362 | RFC0366 | Westheimer, E., "Network Host Status", RFC 362, June 1972.
RFC0363 | RFC0402 | Network Information Center. Stanford Research Institute, "ARPA Network mailing lists", RFC 363, August 1972.
RFC0364 | | Abrams, M., "Serving remote users on the ARPANET", RFC 364, July 1972.
RFC0365 | | Walden, D., "Letter to All TIP Users", RFC 365, July 1972.
RFC0366 | RFC0367 | Westheimer, E., "Network Host Status", RFC 366, July 1972.
RFC0367 | RFC0370 | Westheimer, E., "Network host status", RFC 367, July 1972.
RFC0368 | | Braden, R., "Comments on "Proposed Remote Job Entry Protocol"", RFC 368, July 1972.
RFC0369 | | Pickens, J., "Evaluation of ARPANET services January-March, 1972", RFC 369, July 1972.
RFC0370 | | Westheimer, E., "Network Host Status", RFC 370, July 1972.
RFC0371 | | Kahn, R., "Demonstration at International Computer Communications Conference", RFC 371, July 1972.
RFC0372 | | Watson, R., "Notes on a Conversation with Bob Kahn on the ICCC", RFC 372, July 1972.
RFC0373 | | McCarthy, J., "Arbitrary Character Sets", RFC 373, July 1972.
RFC0374 | | McKenzie, A., "IMP System Announcement", RFC 374, July 1972.
RFC0376 | | Westheimer, E., "Network Host Status", RFC 376, August 1972.
RFC0377 | | Braden, R., "Using TSO via ARPA Network Virtual Terminal", RFC 377, August 1972.
RFC0378 | RFC0391 | McKenzie, A., "Traffic statistics (July 1972)", RFC 378, August 1972.
RFC0379 | | Braden, R., "Using TSO at CCN", RFC 379, August 1972.
RFC0381 | | McQuillan, J., "Three aids to improved network operation", RFC 381, July 1972.
RFC0382 | | McDaniel, L., "Mathematical Software on the ARPA Network", RFC 382, August 1972.
RFC0384 | | North, J., "Official site idents for organizations in the ARPA Network", RFC 384, August 1972.
RFC0385 | | Bhushan, A., "Comments on the File Transfer Protocol", RFC 385, August 1972.
RFC0386 | | Cosell, B. and D. Walden, "Letter to TIP users-2", RFC 386, August 1972.
RFC0387 | | Kelley, K. and J. Meir, "Some experiences in implementing Network Graphics Protocol Level 0", RFC 387, August 1972.
RFC0388 | | Cerf, V., "NCP statistics", RFC 388, August 1972.
RFC0389 | RFC0423 | Noble, B., "UCLA Campus Computing Network Liaison Staff for ARPA Network", RFC 389, August 1972.
RFC0390 | | Braden, R., "TSO Scenario", RFC 390, September 1972.
RFC0391 | | McKenzie, A., "Traffic statistics (August 1972)", RFC 391, September 1972.
RFC0392 | | Hicks, G. and B. Wessler, "Measurement of host costs for transmitting network data", RFC 392, September 1972.
RFC0393 | | Winett, J., "Comments on Telnet Protocol Changes", RFC 393, October 1972.
RFC0394 | | McQuillan, J., "Two Proposed Changes to the IMP-Host Protocol", RFC 394, September 1972.
RFC0395 | | McQuillan, J., "Switch Settings on IMPs and TIPs", RFC 395, October 1972.
RFC0396 | | Bunch, S., "Network Graphics Working Group Meeting - Second Iteration", RFC 396, November 1972.
RFC0398 | | Pickens, J. and E. Faeh, "ICP Sockets", RFC 398, September 1972.
RFC0399 | RFC0431 | Krilanovich, M., "SMFS Login and Logout", RFC 399, September 1972.
RFC0400 | | McKenzie, A., "Traffic Statistics (September 1972)", RFC 400, October 1972.
RFC0401 | | Hansen, J., "Conversion of NGP-0 Coordinates to Device Specific Coordinates", RFC 401, October 1972.
RFC0402 | | North, J., "ARPA Network Mailing Lists", RFC 402, October 1972.
RFC0403 | | Hicks, G., "Desirability of a Network 1108 Service", RFC 403, January 1973.
RFC0404 | | McKenzie, A., "Host Address Changes Involving Rand and ISI", RFC 404, October 1972.
RFC0405 | | McKenzie, A., "Correction to RFC 404", RFC 405, October 1972.
RFC0406 | | McQuillan, J., "Scheduled IMP Software Releases", RFC 406, October 1972.
RFC0407 | | Bressler, R., Guida, R., and A. McKenzie, "Remote Job Entry Protocol", RFC 407, October 1972.
RFC0408 | | Owen, A. and J. Postel, "NETBANK", RFC 408, October 1972.
RFC0409 | | White, J., "Tenex interface to UCSB's Simple-Minded File System", RFC 409, December 1972.
RFC0410 | | McQuillan, J., "Removal of the 30-Second Delay When Hosts Come Up", RFC 410, November 1972.
RFC0411 | | Padlipsky, M., "New MULTICS Network Software Features", RFC 411, November 1972.
RFC0412 | | Hicks, G., "User FTP Documentation", RFC 412, November 1972.
RFC0413 | | McKenzie, A., "Traffic statistics (October 1972)", RFC 413, November 1972.
RFC0414 | | Bhushan, A., "File Transfer Protocol (FTP) status and further comments", RFC 414, December 1972.
RFC0415 | | Murray, H., "Tenex bandwidth", RFC 415, November 1972.
RFC0416 | | Norton, J., "ARC System Will Be Unavailable for Use During Thanksgiving Week", RFC 416, November 1972.
RFC0417 | | Postel, J. and C. Kline, "Link usage violation", RFC 417, December 1972.
RFC0418 | | Hathaway, W., "Server File Transfer Under TSS/360 At NASA-Ames Research Center", RFC 418, November 1972.
RFC0419 | | Vezza, A., "To: Network liaisons and station agents", RFC 419, December 1972.
RFC0420 | | Murray, H., "CCA ICCC weather demo", RFC 420, January 1973.
RFC0421 | | McKenzie, A., "Software Consulting Service for Network Users", RFC 421, November 1972.
RFC0422 | | McKenzie, A., "Traffic statistics (November 1972)", RFC 422, December 1972.
RFC0423 | | Noble, B., "UCLA Campus Computing Network Liaison Staff for ARPANET", RFC 423, December 1972.
RFC0425 | | Bressler, R., ""But my NCP costs $500 a day"", RFC 425, December 1972.
RFC0426 | | Thomas, R., "Reconnection Protocol", RFC 426, January 1973.
RFC0429 | | Postel, J., "Character Generator Process", RFC 429, December 1972.
RFC0430 | | Braden, R., "Comments on File Transfer Protocol", RFC 430, February 1973.
RFC0431 | | Krilanovich, M., "Update on SMFS Login and Logout", RFC 431, December 1972.
RFC0432 | | Neigus, N., "Network logical map", RFC 432, December 1972.
RFC0433 | RFC0503 | Postel, J., "Socket number list", RFC 433, December 1972.
RFC0434 | RFC0447 | McKenzie, A., "IMP/TIP memory retrofit schedule", RFC 434, January 1973.
RFC0435 | | Cosell, B. and D. Walden, "Telnet issues", RFC 435, January 1973.
RFC0436 | | Krilanovich, M., "Announcement of RJS at UCSB", RFC 436, January 1973.
RFC0437 | | Faeh, E., "Data Reconfiguration Service at UCSB", RFC 437, June 1973.
RFC0438 | | Thomas, R. and R. Clements, "FTP server-server interaction", RFC 438, January 1973.
RFC0439 | | Cerf, V., "PARRY encounters the DOCTOR", RFC 439, January 1973.
RFC0440 | | Walden, D., "Scheduled network software maintenance", RFC 440, January 1973.
RFC0441 | | Bressler, R. and R. Thomas, "Inter-Entity Communication - an experiment", RFC 441, January 1973.
RFC0442 | | Cerf, V., "Current flow-control scheme for IMPSYS", RFC 442, January 1973.
RFC0443 | | McKenzie, A., "Traffic statistics (December 1972)", RFC 443, January 1973.
RFC0445 | | McKenzie, A., "IMP/TIP preventive maintenance schedule", RFC 445, January 1973.
RFC0446 | | Deutsch, L., "Proposal to consider a network program resource notebook", RFC 446, January 1973.
RFC0447 | RFC0476 | McKenzie, A., "IMP/TIP memory retrofit schedule", RFC 447, January 1973.
RFC0448 | | Braden, R., "Print files in FTP", RFC 448, February 1973.
RFC0449 | | Walden, D., "Current flow-control scheme for IMPSYS", RFC 449, January 1973.
RFC0450 | | Padlipsky, M., "MULTICS sampling timeout change", RFC 450, February 1973.
RFC0451 | | Padlipsky, M., "Tentative proposal for a Unified User Level Protocol", RFC 451, February 1973.
RFC0452 | | Winett, J., "TELNET Command at Host LL", RFC 452, February 1973.
RFC0453 | | Kudlick, M., "Meeting announcement to discuss a network mail system", RFC 453, February 1973.
RFC0454 | | McKenzie, A., "File Transfer Protocol - meeting announcement and a new proposed document", RFC 454, February 1973.
RFC0455 | | McKenzie, A., "Traffic statistics (January 1973)", RFC 455, February 1973.
RFC0456 | | Kudlick, M., "Memorandum: Date change of mail meeting", RFC 456, February 1973.
RFC0457 | | Walden, D., "TIPUG", RFC 457, February 1973.
RFC0458 | | Bressler, R. and R. Thomas, "Mail retrieval via FTP", RFC 458, February 1973.
RFC0459 | | Kantrowitz, W., "Network questionnaires", RFC 459, February 1973.
RFC0460 | | Kline, C., "NCP survey", RFC 460, February 1973.
RFC0461 | | McKenzie, A., "Telnet Protocol meeting announcement", RFC 461, February 1973.
RFC0462 | | Iseli, J. and D. Crocker, "Responding to user needs", RFC 462, February 1973.
RFC0463 | | Bhushan, A., "FTP comments and response to RFC 430", RFC 463, February 1973.
RFC0464 | | Kudlick, M., "Resource notebook framework", RFC 464, February 1973.
RFC0466 | | Winett, J., "Telnet logger/server for host LL-67", RFC 466, February 1973.
RFC0467 | | Burchfiel, J. and R. Tomlinson, "Proposed change to Host-Host Protocol: Resynchronization of connection status", RFC 467, February 1973.
RFC0468 | | Braden, R., "FTP data compression", RFC 468, March 1973.
RFC0469 | | Kudlick, M., "Network mail meeting summary", RFC 469, March 1973.
RFC0470 | | Thomas, R., "Change in socket for TIP news facility", RFC 470, March 1973.
RFC0471 | | Thomas, R., "Workshop on multi-site executive programs", RFC 471, March 1973.
RFC0472 | | Bunch, S., "Illinois' reply to Maxwell's request for graphics information (NIC 14925)", RFC 472, March 1973.
RFC0473 | | Walden, D., "MIX and MIXAL?", RFC 473, February 1973.
RFC0474 | | Bunch, S., "Announcement of NGWG meeting: Call for papers", RFC 474, March 1973.
RFC0475 | | Bhushan, A., "FTP and Network Mail System", RFC 475, March 1973.
RFC0476 | | McKenzie, A., "IMP/TIP memory retrofit schedule (rev 2)", RFC 476, March 1973.
RFC0477 | | Krilanovich, M., "Remote Job Service at UCSB", RFC 477, May 1973.
RFC0478 | | Bressler, R. and R. Thomas, "FTP server-server interaction - II", RFC 478, March 1973.
RFC0479 | | White, J., "Use of FTP by the NIC Journal", RFC 479, March 1973.
RFC0480 | | White, J., "Host-dependent FTP parameters", RFC 480, March 1973.
RFC0482 | | McKenzie, A., "Traffic statistics (February 1973)", RFC 482, March 1973.
RFC0483 | | Kudlick, M., "Cancellation of the resource notebook framework meeting", RFC 483, March 1973.
RFC0485 | | Pickens, J., "MIX and MIXAL at UCSB", RFC 485, March 1973.
RFC0486 | | Bressler, R., "Data transfer revisited", RFC 486, March 1973.
RFC0487 | | Bressler, R., "Free file transfer", RFC 487, April 1973.
RFC0488 | | Auerbach, M., "NLS classes at network sites", RFC 488, March 1973.
RFC0489 | | Postel, J., "Comment on resynchronization of connection status proposal", RFC 489, March 1973.
RFC0490 | | Pickens, J., "Surrogate RJS for UCLA-CCN", RFC 490, March 1973.
RFC0491 | | Padlipsky, M., "What is "Free"?", RFC 491, April 1973.
RFC0492 | | Meyer, E., "Response to RFC 467", RFC 492, April 1973.
RFC0493 | | Michener, J., Cotton, I., Kelley, K., Liddle, D., and E. Meyer, "GRAPHICS PROTOCOL", RFC 493, April 1973.
RFC0494 | | Walden, D., "Availability of MIX and MIXAL in the Network", RFC 494, April 1973.
RFC0495 | | McKenzie, A., "Telnet Protocol specifications", RFC 495, May 1973.
RFC0496 | | Auerbach, M., "TNLS quick reference card is available", RFC 496, April 1973.
RFC0497 | | McKenzie, A., "Traffic Statistics (March 1973)", RFC 497, April 1973.
RFC0498 | | Braden, R., "On mail service to CCN", RFC 498, April 1973.
RFC0499 | | Reussow, B., "Harvard's network RJE", RFC 499, April 1973.
RFC0500 | | Shoshani, A. and I. Spiegler, "Integration of data management systems on a computer network", RFC 500, April 1973.
RFC0501 | | Pogran, K., "Un-muddling "free file transfer"", RFC 501, May 1973.
RFC0503 | RFC0739 | Neigus, N. and J. Postel, "Socket number list", RFC 503, April 1973.
RFC0504 | | Thomas, R., "Distributed resources workshop announcement", RFC 504, April 1973.
RFC0505 | | Padlipsky, M., "Two solutions to a file transfer access problem", RFC 505, June 1973.
RFC0506 | | Padlipsky, M., "FTP command naming problem", RFC 506, June 1973.
RFC0508 | | Pfeifer, L. and J. McAfee, "Real-time data transmission on the ARPANET", RFC 508, May 1973.
RFC0509 | | McKenzie, A., "Traffic statistics (April 1973)", RFC 509, April 1973.
RFC0510 | | White, J., "Request for network mailbox addresses", RFC 510, May 1973.
RFC0511 | | North, J., "Enterprise phone service to NIC from ARPANET sites", RFC 511, May 1973.
RFC0512 | | Hathaway, W., "More on lost message detection", RFC 512, May 1973.
RFC0513 | | Hathaway, W., "Comments on the new Telnet specifications", RFC 513, May 1973.
RFC0514 | | Kantrowitz, W., "Network make-work", RFC 514, June 1973.
RFC0515 | | Winter, R., "Specifications for Datalanguage, Version 0/9", RFC 515, June 1973.
RFC0516 | | Postel, J., "Lost message detection", RFC 516, May 1973.
RFC0518 | | Vaughan, N. and E. Feinler, "ARPANET accounts", RFC 518, June 1973.
RFC0519 | | Pickens, J., "Resource Evaluation", RFC 519, June 1973.
RFC0520 | | Day, J., "Memo to FTP group: Proposal for File Access Protocol", RFC 520, June 1973.
RFC0521 | | McKenzie, A., "Restricted use of IMP DDT", RFC 521, May 1973.
RFC0522 | | McKenzie, A., "Traffic Statistics (May 1973)", RFC 522, June 1973.
RFC0523 | | Bhushan, A., "SURVEY is in operation again", RFC 523, June 1973.
RFC0524 | | White, J., "Proposed Mail Protocol", RFC 524, June 1973.
RFC0525 | | Parrish, W. and J. Pickens, "MIT-MATHLAB meets UCSB-OLS -an example of resource sharing", RFC 525, June 1973.
RFC0526 | | Pratt, W., "Technical meeting: Digital image processing software systems", RFC 526, June 1973.
RFC0527 | | Merryman, R., "ARPAWOCKY", RFC 527, May 1973.
RFC0528 | | McQuillan, J., "Software checksumming in the IMP and network reliability", RFC 528, June 1973.
RFC0529 | | McKenzie, A., Thomas, R., Tomlinson, R., and K. Pogran, "Note on protocol synch sequences", RFC 529, June 1973.
RFC0530 | | Bhushan, A., "Report on the Survey Project", RFC 530, June 1973.
RFC0531 | | Padlipsky, M., "Feast or famine? A response to two recent RFC's about network information", RFC 531, June 1973.
RFC0532 | | Merryman, R., "UCSD-CC Server-FTP facility", RFC 532, July 1973.
RFC0533 | | Walden, D., "Message-ID numbers", RFC 533, July 1973.
RFC0534 | | Walden, D., "Lost message detection", RFC 534, July 1973.
RFC0535 | | Thomas, R., "Comments on File Access Protocol", RFC 535, July 1973.
RFC0537 | | Bunch, S., "Announcement of NGG meeting July 16-17", RFC 537, June 1973.
RFC0538 | | McKenzie, A., "Traffic statistics (June 1973)", RFC 538, July 1973.
RFC0539 | | Crocker, D. and J. Postel, "Thoughts on the mail protocol proposed in RFC 524", RFC 539, July 1973.
RFC0542 | RFC0765 | Neigus, N., "File Transfer Protocol", RFC 542, August 1973.
RFC0543 | | Meyer, N., "Network journal submission and delivery", RFC 543, July 1973.
RFC0544 | | Meyer, N. and K. Kelley, "Locating on-line documentation at SRI-ARC", RFC 544, July 1973.
RFC0545 | | Pickens, J., "Of what quality be the UCSB resources evaluators?", RFC 545, July 1973.
RFC0546 | | Thomas, R., "Tenex load averages for July 1973", RFC 546, August 1973.
RFC0547 | | Walden, D., "Change to the Very Distant Host specification", RFC 547, August 1973.
RFC0548 | | Walden, D., "Hosts using the IMP Going Down message", RFC 548, August 1973.
RFC0549 | | Michener, J., "Minutes of Network Graphics Group meeting, 15-17 July 1973", RFC 549, July 1973.
RFC0550 | | Deutsch, L., "NIC NCP experiment", RFC 550, August 1973.
RFC0551 | | Feinroth, Y. and R. Fink, "NYU, ANL, and LBL Joining the Net", RFC 551, August 1973.
RFC0552 | | Owen, A., "Single access to standard protocols", RFC 552, July 1973.
RFC0553 | | Irby, C. and K. Victor, "Draft design for a text/graphics protocol", RFC 553, July 1973.
RFC0555 | | White, J., "Responses to critiques of the proposed mail protocol", RFC 555, July 1973.
RFC0556 | | McKenzie, A., "Traffic Statistics (July 1973)", RFC 556, August 1973.
RFC0557 | | Wessler, B., "REVELATIONS IN NETWORK HOST MEASUREMENTS", RFC 557, August 1973.
RFC0559 | | Bushan, A., "Comments on The New Telnet Protocol and its Implementation", RFC 559, August 1973.
RFC0560 | | Crocker, D. and J. Postel, "Remote Controlled Transmission and Echoing Telnet option", RFC 560, August 1973.
RFC0561 | | Bhushan, A., Pogran, K., Tomlinson, R., and J. White, "Standardizing Network Mail Headers", RFC 561, September 1973.
RFC0562 | | McKenzie, A., "Modifications to the TELNET Specification", RFC 562, August 1973.
RFC0563 | | Davidson, J., "Comments on the RCTE Telnet option", RFC 563, August 1973.
RFC0565 | | Cantor, D., "Storing network survey data at the datacomputer", RFC 565, August 1973.
RFC0566 | | McKenzie, A., "Traffic statistics (August 1973)", RFC 566, September 1973.
RFC0567 | | Deutsch, L., "Cross Country Network Bandwidth", RFC 567, September 1973.
RFC0568 | | McQuillan, J., "Response to RFC 567 - cross country network bandwidth", RFC 568, September 1973.
RFC0569 | | Padlipsky, M., "NETED: A Common Editor for the ARPA Network", RFC 569, October 1973.
RFC0570 | | Pickens, J., "Experimental input mapping between NVT ASCII and UCSB On Line System", RFC 570, October 1973.
RFC0571 | | Braden, R., "TENEX FTP PROBLEM", RFC 571, November 1973.
RFC0573 | | Bhushan, A., "DATA AND FILE TRANSFER - SOME MEASUREMENT RESULTS", RFC 573, September 1973.
RFC0574 | | Krilanovich, M., "Announcement of a Mail Facility at UCSB", RFC 574, September 1973.
RFC0576 | | Victor, K., "Proposal for modifying linking", RFC 576, September 1973.
RFC0577 | | Crocker, D., "Mail priority", RFC 577, October 1973.
RFC0578 | | Bhushan, A. and N. Ryan, "Using MIT-Mathlab MACSYMA from MIT-DMS Muddle", RFC 578, October 1973.
RFC0579 | | McKenzie, A., "Traffic statistics (September 1973)", RFC 579, November 1973.
RFC0580 | | Postel, J., "Note to Protocol Designers and Implementers", RFC 580, October 1973.
RFC0581 | | Crocker, D. and J. Postel, "Corrections to RFC 560: Remote Controlled Transmission and Echoing Telnet Option", RFC 581, November 1973.
RFC0582 | | Clements, R., "Comments on RFC 580: Machine readable protocols", RFC 582, November 1973.
RFC0584 | | Iseli, J., Crocker, D., and N. Neigus, "Charter for ARPANET Users Interest Working Group", RFC 584, November 1973.
RFC0585 | | Crocker, D., Neigus, N., Feinler, E., and J. Iseli, "ARPANET users interest working group meeting", RFC 585, November 1973.
RFC0586 | | McKenzie, A., "Traffic statistics (October 1973)", RFC 586, November 1973.
RFC0587 | | Postel, J., "Announcing New Telnet Options", RFC 587, November 1973.
RFC0588 | | Stokes, A., "London Node Is Now Up", RFC 588, October 1973.
RFC0589 | | Braden, R., "CCN NETRJS server messages to remote user", RFC 589, November 1973.
RFC0590 | | Padlipsky, M., "MULTICS address change", RFC 590, November 1973.
RFC0591 | | Walden, D., "Addition to the Very Distant Host specifications", RFC 591, November 1973.
RFC0592 | | Watson, R., "Some thoughts on system design to facilitate resource sharing", RFC 592, November 1973.
RFC0593 | | McKenzie, A. and J. Postel, "Telnet and FTP implementation schedule change", RFC 593, November 1973.
RFC0594 | | Burchfiel, J., "Speedup of Host-IMP interface", RFC 594, December 1973.
RFC0595 | | Hathaway, W., "Second thoughts in defense of the Telnet Go-Ahead", RFC 595, December 1973.
RFC0596 | | Taft, E., "Second thoughts on Telnet Go-Ahead", RFC 596, December 1973.
RFC0597 | | Neigus, N. and E. Feinler, "Host status", RFC 597, December 1973.
RFC0598 | | Network Information Center. Stanford Research Institute, "RFC index - December 5, 1973", RFC 598, December 1973.
RFC0599 | RFC0740 | Braden, R., "Update on NETRJS", RFC 599, December 1973.
RFC0600 | | Berggreen, A., "Interfacing an Illinois plasma terminal to the ARPANET", RFC 600, November 1973.
RFC0601 | | McKenzie, A., "Traffic statistics (November 1973)", RFC 601, December 1973.
RFC0602 | | Metcalfe, R., ""The stockings were hung by the chimney with care"", RFC 602, December 1973.
RFC0603 | | Burchfiel, J., "Response to RFC 597: Host status", RFC 603, December 1973.
RFC0604 | RFC0739 | Postel, J., "Assigned link numbers", RFC 604, December 1973.
RFC0606 | | Deutsch, L., "Host names on-line", RFC 606, December 1973.
RFC0607 | RFC0624 | Krilanovich, M. and G. Gregg, "Comments on the File Transfer Protocol", RFC 607, January 1974.
RFC0608 | RFC0810 | Kudlick, M., "Host names on-line", RFC 608, January 1974.
RFC0609 | | Ferguson, B., "Statement of upcoming move of NIC/NLS service", RFC 609, January 1974.
RFC0610 | | Winter, R., Hill, J., and W. Greiff, "Further datalanguage design concepts", RFC 610, December 1973.
RFC0611 | | Walden, D., "Two changes to the IMP/Host Protocol to improve user/network communications", RFC 611, February 1974.
RFC0612 | | McKenzie, A., "Traffic statistics (December 1973)", RFC 612, January 1974.
RFC0613 | | McKenzie, A., "Network connectivity: A response to RFC 603", RFC 613, January 1974.
RFC0614 | | Pogran, K. and N. Neigus, "Response to RFC 607: "Comments on the File Transfer Protocol"", RFC 614, January 1974.
RFC0615 | RFC0645 | Crocker, D., "Proposed Network Standard Data Pathname syntax", RFC 615, March 1974.
RFC0616 | | Walden, D., "LATEST NETWORK MAPS", RFC 616, February 1973.
RFC0617 | | Taft, E., "Note on socket number assignment", RFC 617, February 1974.
RFC0618 | | Taft, E., "Few observations on NCP statistics", RFC 618, February 1974.
RFC0619 | | Naylor, W. and H. Opderbeck, "Mean round-trip times in the ARPANET", RFC 619, March 1974.
RFC0620 | | Ferguson, B., "Request for monitor host table updates", RFC 620, March 1974.
RFC0621 | | Kudlick, M., "NIC user directories at SRI ARC", RFC 621, March 1974.
RFC0622 | | McKenzie, A., "Scheduling IMP/TIP down time", RFC 622, March 1974.
RFC0623 | | Krilanovich, M., "Comments on on-line host name service", RFC 623, February 1974.
RFC0624 | | Krilanovich, M., Gregg, G., Hathaway, W., and J. White, "Comments on the File Transfer Protocol", RFC 624, February 1974.
RFC0625 | | Kudlick, M. and E. Feinler, "On-line hostnames service", RFC 625, March 1974.
RFC0626 | | Kleinrock, L. and H. Opderbeck, "On a possible lockup condition in IMP subnet due to message sequencing", RFC 626, March 1974.
RFC0627 | | Kudlick, M. and E. Feinler, "ASCII text file of hostnames", RFC 627, March 1974.
RFC0628 | | Keeney, M., "Status of RFC numbers and a note on pre-assigned journal numbers", RFC 628, March 1974.
RFC0629 | | North, J., "Scenario for using the Network Journal", RFC 629, March 1974.
RFC0630 | | Sussman, J., "FTP error code usage for more reliable mail service", RFC 630, April 1974.
RFC0631 | | Danthine, A., "International meeting on minicomputers and data communication: Call for papers", RFC 631, April 1974.
RFC0632 | | Opderbeck, H., "Throughput degradations for single packet messages", RFC 632, May 1974.
RFC0633 | RFC0638 | McKenzie, A., "IMP/TIP preventive maintenance schedule", RFC 633, March 1974.
RFC0634 | | McKenzie, A., "Change in network address for Haskins Lab", RFC 634, April 1974.
RFC0635 | | Cerf, V., "Assessment of ARPANET protocols", RFC 635, April 1974.
RFC0636 | | Burchfiel, J., Cosell, B., Tomlinson, R., and D. Walden, "TIP/Tenex reliability improvements", RFC 636, June 1974.
RFC0637 | | McKenzie, A., "Change of network address for SU-DSL", RFC 637, April 1974.
RFC0638 | | McKenzie, A., "IMP/TIP preventive maintenance schedule", RFC 638, April 1974.
RFC0640 | | Postel, J., "Revised FTP reply codes", RFC 640, June 1974.
RFC0642 | | Burchfiel, J., "Ready line philosophy and implementation", RFC 642, July 1974.
RFC0643 | | Mader, E., "Network Debugging Protocol", RFC 643, July 1974.
RFC0644 | | Thomas, R., "On the problem of signature authentication for network mail", RFC 644, July 1974.
RFC0645 | | Crocker, D., "Network Standard Data Specification syntax", RFC 645, June 1974.
RFC0647 | | Padlipsky, M., "Proposed protocol for connecting host computers to ARPA-like networks via front end processors", RFC 647, November 1974.
RFC0651 | RFC0859 | Crocker, D., "Revised Telnet status option", RFC 651, October 1974.
RFC0652 | | Crocker, D., "Telnet output carriage-return disposition option", RFC 652, October 1974.
RFC0653 | | Crocker, D., "Telnet output horizontal tabstops option", RFC 653, October 1974.
RFC0654 | | Crocker, D., "Telnet output horizontal tab disposition option", RFC 654, October 1974.
RFC0655 | | Crocker, D., "Telnet output formfeed disposition option", RFC 655, October 1974.
RFC0656 | | Crocker, D., "Telnet output vertical tabstops option", RFC 656, October 1974.
RFC0657 | | Crocker, D., "Telnet output vertical tab disposition option", RFC 657, October 1974.
RFC0658 | | Crocker, D., "Telnet output linefeed disposition", RFC 658, October 1974.
RFC0659 | | Postel, J., "Announcing additional Telnet options", RFC 659, October 1974.
RFC0660 | | Walden, D., "Some changes to the IMP and the IMP/Host interface", RFC 660, October 1974.
RFC0661 | | Postel, J., "Protocol information", RFC 661, November 1974.
RFC0662 | | Kanodia, R., "Performance improvement in ARPANET file transfers from Multics", RFC 662, November 1974.
RFC0663 | | Kanodia, R., "Lost message detection and recovery protocol", RFC 663, November 1974.
RFC0666 | | Padlipsky, M., "Specification of the Unified User-Level Protocol", RFC 666, November 1974.
RFC0667 | | Chipman, S., "Host Ports", RFC 667, December 1974.
RFC0669 | | Dodds, D., "November, 1974, survey of New-Protocol Telnet servers", RFC 669, December 1974.
RFC0671 | | Schantz, R., "Note on Reconnection Protocol", RFC 671, December 1974.
RFC0672 | | Schantz, R., "Multi-site data collection facility", RFC 672, December 1974.
RFC0674 | | Postel, J. and J. White, "Procedure call documents: Version 2", RFC 674, December 1974.
RFC0675 | | Cerf, V., Dalal, Y., and C. Sunshine, "Specification of Internet Transmission Control Program", RFC 675, December 1974.
RFC0677 | | Johnson, P. and R. Thomas, "Maintenance of duplicate databases", RFC 677, January 1975.
RFC0678 | | Postel, J., "Standard file formats", RFC 678, December 1974.
RFC0679 | | Dodds, D., "February, 1975, survey of New-Protocol Telnet servers", RFC 679, February 1975.
RFC0680 | | Myer, T. and D. Henderson, "Message Transmission Protocol", RFC 680, April 1975.
RFC0681 | | Holmgren, S., "Network UNIX", RFC 681, March 1975.
RFC0683 | | Clements, R., "FTPSRV - Tenex extension for paged files", RFC 683, April 1975.
RFC0684 | | Schantz, R., "Commentary on procedure calling as a network protocol", RFC 684, April 1975.
RFC0685 | | Beeler, M., "Response time in cross network debugging", RFC 685, April 1975.
RFC0686 | | Harvey, B., "Leaving well enough alone", RFC 686, May 1975.
RFC0687 | RFC0704 | Walden, D., "IMP/Host and Host/IMP Protocol changes", RFC 687, June 1975.
RFC0688 | | Walden, D., "Tentative schedule for the new Telnet implementation for the TIP", RFC 688, June 1975.
RFC0689 | | Clements, R., "Tenex NCP finite state machine for connections", RFC 689, May 1975.
RFC0690 | | Postel, J., "Comments on the proposed Host/IMP Protocol changes", RFC 690, June 1975.
RFC0691 | | Harvey, B., "One more try on the FTP", RFC 691, June 1975.
RFC0692 | | Wolfe, S., "Comments on IMP/Host Protocol changes (RFCs 687 and 690)", RFC 692, June 1975.
RFC0694 | | Postel, J., "Protocol information", RFC 694, June 1975.
RFC0695 | | Krilanovich, M., "Official change in Host-Host Protocol", RFC 695, July 1975.
RFC0696 | | Cerf, V., "Comments on the IMP/Host and Host/IMP Protocol changes", RFC 696, July 1975.
RFC0697 | | Lieb, J., "CWD command of FTP", RFC 697, July 1975.
RFC0698 | RFC5198 | Mock, T., "Telnet extended ASCII option", RFC 698, July 1975.
RFC0699 | | Postel, J. and J. Vernon, "Request For Comments summary notes: 600-699", RFC 699, November 1982.
RFC0700 | | Mader, E., Plummer, W., and R. Tomlinson, "Protocol experiment", RFC 700, August 1974.
RFC0701 | | Dodds, D., "August, 1974, survey of New-Protocol Telnet servers", RFC 701, August 1974.
RFC0702 | | Dodds, D., "September, 1974, survey of New-Protocol Telnet servers", RFC 702, September 1974.
RFC0703 | | Dodds, D., "July, 1975, survey of New-Protocol Telnet Servers", RFC 703, July 1975.
RFC0704 | | Santos, P., "IMP/Host and Host/IMP Protocol change", RFC 704, September 1975.
RFC0705 | | Bryan, R., "Front-end Protocol B6700 version", RFC 705, November 1975.
RFC0706 | | Postel, J., "On the junk mail problem", RFC 706, November 1975.
RFC0707 | | White, J., "High-level framework for network-based resource sharing", RFC 707, December 1975.
RFC0708 | | White, J., "Elements of a Distributed Programming System", RFC 708, January 1976.
RFC0712 | | Donnelley, J., "Distributed Capability Computing System (DCCS)", RFC 712, February 1976.
RFC0713 | | Haverty, J., "MSDTP-Message Services Data Transmission Protocol", RFC 713, April 1976.
RFC0714 | | McKenzie, A., "Host-Host Protocol for an ARPANET-Type Network", RFC 714, April 1976.
RFC0716 | | Walden, D. and J. Levin, "Interim Revision to Appendix F of BBN 1822", RFC 716, May 1976.
RFC0717 | | Postel, J., "Assigned Network Numbers", RFC 717, July 1976.
RFC0718 | | Postel, J., "Comments on RCTE from the Tenex Implementation Experience", RFC 718, June 1976.
RFC0719 | | Postel, J., "Discussion on RCTE", RFC 719, July 1976.
RFC0720 | | Crocker, D., "Address Specification Syntax for Network Mail", RFC 720, August 1976.
RFC0721 | | Garlick, L., "Out-of-Band Control Signals in a Host-to-Host Protocol", RFC 721, September 1976.
RFC0722 | | Haverty, J., "Thoughts on Interactions in Distributed Services", RFC 722, September 1976.
RFC0724 | RFC0733 | Crocker, D., Pogran, K., Vittal, J., and D. Henderson, "Proposed official standard for the format of ARPA Network messages", RFC 724, May 1977.
RFC0725 | | Day, J. and G. Grossman, "RJE protocol for a resource sharing network", RFC 725, March 1977.
RFC0726 | | Postel, J. and D. Crocker, "Remote Controlled Transmission and Echoing Telnet option", RFC 726, March 1977.
RFC0727 | | Crispin, M., "Telnet logout option", RFC 727, April 1977.
RFC0728 | | Day, J., "Minor pitfall in the Telnet Protocol", RFC 728, April 1977.
RFC0729 | RFC0735 | Crocker, D., "Telnet byte macro option", RFC 729, May 1977.
RFC0730 | | Postel, J., "Extensible field addressing", RFC 730, May 1977.
RFC0731 | RFC0732 | Day, J., "Telnet Data Entry Terminal option", RFC 731, June 1977.
RFC0732 | | Day, J., "Telnet Data Entry Terminal option", RFC 732, September 1977.
RFC0733 | RFC0822 | Crocker, D., Vittal, J., Pogran, K., and D. Henderson, "Standard for the format of ARPA network text messages", RFC 733, November 1977.
RFC0734 | | Crispin, M., "SUPDUP Protocol", RFC 734, October 1977.
RFC0735 | | Crocker, D. and R. Gumpertz, "Revised Telnet byte macro option", RFC 735, November 1977.
RFC0736 | | Crispin, M., "Telnet SUPDUP option", RFC 736, October 1977.
RFC0737 | | Harrenstien, K., "FTP extension: XSEN", RFC 737, October 1977.
RFC0738 | | Harrenstien, K., "Time server", RFC 738, October 1977.
RFC0739 | RFC0750 | Postel, J., "Assigned numbers", RFC 739, November 1977.
RFC0740 | | Braden, R., "NETRJS Protocol", RFC 740, November 1977.
RFC0741 | | Cohen, D., "Specifications for the Network Voice Protocol (NVP)", RFC 741, November 1977.
RFC0742 | RFC1288, RFC1196, RFC1194 | Harrenstien, K., "NAME/FINGER Protocol", RFC 742, December 1977.
RFC0743 | | Harrenstien, K., "FTP extension: XRSQ/XRCP", RFC 743, December 1977.
RFC0744 | | Sattley, J., "MARS - a Message Archiving and Retrieval Service", RFC 744, January 1978.
RFC0745 | | Beeler, M., "JANUS interface specifications", RFC 745, March 1978.
RFC0746 | | Stallman, R., "SUPDUP graphics extension", RFC 746, March 1978.
RFC0747 | | Crispin, M., "Recent extensions to the SUPDUP Protocol", RFC 747, March 1978.
RFC0748 | | Crispin, M., "Telnet randomly-lose option", RFC 748, April 1 1978.
RFC0749 | | Greenberg, B., "Telnet SUPDUP-Output option", RFC 749, September 1978.
RFC0750 | RFC0755 | Postel, J., "Assigned numbers", RFC 750, September 1978.
RFC0751 | | Lebling, P., "Survey of FTP mail and MLFL", RFC 751, December 1978.
RFC0752 | | Crispin, M., "Universal host table", RFC 752, January 1979.
RFC0753 | | Postel, J., "Internet Message Protocol", RFC 753, March 1979.
RFC0754 | | Postel, J., "Out-of-net host addresses for mail", RFC 754, April 1979.
RFC0755 | RFC0758 | Postel, J., "Assigned numbers", RFC 755, May 1979.
RFC0756 | | Pickens, J., Feinler, E., and J. Mathis, "NIC name server - a datagram-based information utility", RFC 756, July 1979.
RFC0757 | | Deutsch, D., "Suggested solution to the naming, addressing, and delivery problem for ARPANET message systems", RFC 757, September 1979.
RFC0758 | RFC0762 | Postel, J., "Assigned numbers", RFC 758, August 1979.
RFC0759 | | Postel, J., "Internet Message Protocol", RFC 759, August 1980.
RFC0760 | RFC0791 | Postel, J., "DoD standard Internet Protocol", RFC 760, January 1980.
RFC0761 | RFC0793 | Postel, J., "DoD standard Transmission Control Protocol", RFC 761, January 1980.
RFC0762 | RFC0770 | Postel, J., "Assigned numbers", RFC 762, January 1980.
RFC0763 | | Abrams, M., "Role mailboxes", RFC 763, May 1980.
RFC0764 | RFC0854 | Postel, J., "Telnet Protocol specification", RFC 764, June 1980.
RFC0765 | RFC0959 | Postel, J., "File Transfer Protocol specification", RFC 765, June 1980.
RFC0766 | RFC0774 | Postel, J., "Internet Protocol Handbook: Table of contents", RFC 766, July 1980.
RFC0767 | | Postel, J., "Structured format for transmission of multi-media documents", RFC 767, August 1980.
RFC0768 | | Postel, J., "User Datagram Protocol", STD 6, RFC 768, August 1980.
RFC0769 | | Postel, J., "Rapicom 450 facsimile file format", RFC 769, September 1980.
RFC0770 | RFC0776 | Postel, J., "Assigned numbers", RFC 770, September 1980.
RFC0771 | | Cerf, V. and J. Postel, "Mail transition plan", RFC 771, September 1980.
RFC0772 | RFC0780, STD0010 | Sluizer, S. and J. Postel, "Mail Transfer Protocol", RFC 772, September 1980.
RFC0773 | | Cerf, V., "Comments on NCP/TCP mail service transition strategy", RFC 773, October 1980.
RFC0774 | | Postel, J., "Internet Protocol Handbook: Table of contents", RFC 774, October 1980.
RFC0775 | | Mankins, D., Franklin, D., and A. Owen, "Directory oriented FTP commands", RFC 775, December 1980.
RFC0776 | RFC0790 | Postel, J., "Assigned numbers", RFC 776, January 1981.
RFC0777 | RFC0792 | Postel, J., "Internet Control Message Protocol", RFC 777, April 1981.
RFC0778 | | Mills, D., "DCNET Internet Clock Service", RFC 778, April 1981.
RFC0779 | | Killian, E., "Telnet send-location option", RFC 779, April 1981.
RFC0780 | RFC0788, STD0010 | Sluizer, S. and J. Postel, "Mail Transfer Protocol", RFC 780, May 1981.
RFC0781 | | Su, Z., "Specification of the Internet Protocol (IP) timestamp option", RFC 781, May 1981.
RFC0782 | | Nabielsky, J. and A. Skelton, "Virtual Terminal management model", RFC 782, January 1981.
RFC0783 | RFC1350 | Sollins, K., "TFTP Protocol (revision 2)", RFC 783, June 1981.
RFC0784 | | Sluizer, S. and J. Postel, "Mail Transfer Protocol: ISI TOPS20 implementation", RFC 784, July 1981.
RFC0785 | | Sluizer, S. and J. Postel, "Mail Transfer Protocol: ISI TOPS20 file definitions", RFC 785, July 1981.
RFC0786 | | Sluizer, S. and J. Postel, "Mail Transfer Protocol: ISI TOPS20 MTP-NIMAIL interface", RFC 786, July 1981.
RFC0787 | | Chapin, A., "Connectionless data transmission survey/tutorial", RFC 787, July 1981.
RFC0788 | RFC0821, STD0010 | Postel, J., "Simple Mail Transfer Protocol", RFC 788, November 1981.
RFC0789 | | Rosen, E., "Vulnerabilities of network control protocols: An example", RFC 789, July 1981.
RFC0790 | RFC0820 | Postel, J., "Assigned numbers", RFC 790, September 1981.
RFC0791 | | Postel, J., "Internet Protocol", STD 5, RFC 791, September 1981.
RFC0792 | | Postel, J., "Internet Control Message Protocol", STD 5, RFC 792, September 1981.
RFC0793 | | Postel, J., "Transmission Control Protocol", STD 7, RFC 793, September 1981.
RFC0794 | | Cerf, V., "Pre-emption", RFC 794, September 1981.
RFC0795 | | Postel, J., "Service mappings", RFC 795, September 1981.
RFC0796 | | Postel, J., "Address mappings", RFC 796, September 1981.
RFC0797 | | Katz, A., "Format for Bitmap files", RFC 797, September 1981.
RFC0798 | | Katz, A., "Decoding facsimile data from the Rapicom 450", RFC 798, September 1981.
RFC0799 | | Mills, D., "Internet name domains", RFC 799, September 1981.
RFC0800 | | Postel, J. and J. Vernon, "Request For Comments summary notes: 700-799", RFC 800, November 1982.
RFC0801 | | Postel, J., "NCP/TCP transition plan", RFC 801, November 1981.
RFC0802 | RFC0851 | Malis, A., "ARPANET 1822L Host Access Protocol", RFC 802, November 1981.
RFC0803 | | Agarwal, A., O'Connor, M., and D. Mills, "Dacom 450/500 facsimile data transcoding", RFC 803, November 1981.
RFC0804 | | International Telegraph and Telephone Consultative Committee of the International Telecommunication Union, "CCITT draft recommendation T.4", RFC 804, January 1981.
RFC0805 | | Postel, J., "Computer mail meeting notes", RFC 805, February 1982.
RFC0806 | RFC0841 | National Bureau of Standards, "Proposed Federal Information Processing Standard: Specification for message format for computer based message systems", RFC 806, September 1981.
RFC0807 | | Postel, J., "Multimedia mail meeting notes", RFC 807, February 1982.
RFC0808 | | Postel, J., "Summary of computer mail services meeting held at BBN on 10 January 1979", RFC 808, March 1982.
RFC0809 | | Chang, T., "UCL facsimile system", RFC 809, February 1982.
RFC0810 | RFC0952 | Feinler, E., Harrenstien, K., Su, Z., and V. White, "DoD Internet host table specification", RFC 810, March 1982.
RFC0811 | RFC0953 | Harrenstien, K., White, V., and E. Feinler, "Hostnames Server", RFC 811, March 1982.
RFC0812 | RFC0954, RFC3912 | Harrenstien, K. and V. White, "NICNAME/WHOIS", RFC 812, March 1982.
RFC0813 | | Clark, D., "Window and Acknowledgement Strategy in TCP", RFC 813, July 1982.
RFC0814 | | Clark, D., "Name, addresses, ports, and routes", RFC 814, July 1982.
RFC0815 | | Clark, D., "IP datagram reassembly algorithms", RFC 815, July 1982.
RFC0816 | | Clark, D., "Fault isolation and recovery", RFC 816, July 1982.
RFC0817 | | Clark, D., "Modularity and efficiency in protocol implementation", RFC 817, July 1982.
RFC0818 | | Postel, J., "Remote User Telnet service", RFC 818, November 1982.
RFC0819 | | Su, Z. and J. Postel, "Domain naming convention for Internet user applications", RFC 819, August 1982.
RFC0820 | RFC0870 | Postel, J., "Assigned numbers", RFC 820, August 1982.
RFC0821 | RFC2821 | Postel, J., "Simple Mail Transfer Protocol", STD 10, RFC 821, August 1982.
RFC0822 | RFC2822 | Crocker, D., "STANDARD FOR THE FORMAT OF ARPA INTERNET TEXT MESSAGES", STD 11, RFC 822, August 1982.
RFC0823 | | Hinden, R. and A. Sheltzer, "DARPA Internet gateway", RFC 823, September 1982.
RFC0824 | | MacGregor, W. and D. Tappan, "CRONUS Virtual Local Network", RFC 824, August 1982.
RFC0825 | RFC1111, RFC1543, RFC2223 | Postel, J., "Request for comments on Requests For Comments", RFC 825, November 1982.
RFC0826 | | Plummer, D., "Ethernet Address Resolution Protocol: Or Converting Network Protocol Addresses to 48.bit Ethernet Address for Transmission on Ethernet Hardware", STD 37, RFC 826, November 1982.
RFC0827 | | Rosen, E., "Exterior Gateway Protocol (EGP)", RFC 827, October 1982.
RFC0828 | | Owen, K., "Data communications: IFIP's international "network" of experts", RFC 828, August 1982.
RFC0829 | | Cerf, V., "Packet satellite technology reference sources", RFC 829, November 1982.
RFC0830 | | Su, Z., "Distributed system for Internet name service", RFC 830, October 1982.
RFC0831 | | Braden, R., "Backup access to the European side of SATNET", RFC 831, December 1982.
RFC0832 | RFC0833 | Smallberg, D., "Who talks TCP?", RFC 832, December 1982.
RFC0833 | RFC0834 | Smallberg, D., "Who talks TCP?", RFC 833, December 1982.
RFC0834 | RFC0835 | Smallberg, D., "Who talks TCP?", RFC 834, December 1982.
RFC0835 | RFC0836 | Smallberg, D., "Who talks TCP?", RFC 835, December 1982.
RFC0836 | RFC0837 | Smallberg, D., "Who talks TCP?", RFC 836, January 1983.
RFC0837 | RFC0838 | Smallberg, D., "Who talks TCP?", RFC 837, January 1983.
RFC0838 | RFC0839 | Smallberg, D., "Who talks TCP?", RFC 838, January 1983.
RFC0839 | RFC0842 | Smallberg, D., "Who talks TCP?", RFC 839, January 1983.
RFC0840 | RFC0880 | Postel, J., "Official protocols", RFC 840, April 1983.
RFC0841 | | National Bureau of Standards, "Specification for message format for Computer Based Message Systems", RFC 841, January 1983.
RFC0842 | RFC0843 | Smallberg, D., "Who talks TCP? - survey of 1 February 83", RFC 842, February 1983.
RFC0843 | RFC0845 | Smallberg, D., "Who talks TCP? - survey of 8 February 83", RFC 843, February 1983.
RFC0844 | | Clements, R., "Who talks ICMP, too? - Survey of 18 February 1983", RFC 844, February 1983.
RFC0845 | RFC0846 | Smallberg, D., "Who talks TCP? - survey of 15 February 1983", RFC 845, February 1983.
RFC0846 | RFC0847 | Smallberg, D., "Who talks TCP? - survey of 22 February 1983", RFC 846, February 1983.
RFC0847 | | Westine, A., Smallberg, D., and J. Postel, "Summary of Smallberg surveys", RFC 847, February 1983.
RFC0848 | | Smallberg, D., "Who provides the "little" TCP services?", RFC 848, March 1983.
RFC0849 | | Crispin, M., "Suggestions for improved host table distribution", RFC 849, May 1983.
RFC0850 | RFC1036 | Horton, M., "Standard for interchange of USENET messages", RFC 850, June 1983.
RFC0851 | RFC0878 | Malis, A., "ARPANET 1822L Host Access Protocol", RFC 851, April 1983.
RFC0852 | | Malis, A., "ARPANET short blocking feature", RFC 852, April 1983.
RFC0854 | | Postel, J. and J. Reynolds, "Telnet Protocol Specification", STD 8, RFC 854, May 1983.
RFC0855 | | Postel, J. and J. Reynolds, "Telnet Option Specifications", STD 8, RFC 855, May 1983.
RFC0856 | | Postel, J. and J. Reynolds, "Telnet Binary Transmission", STD 27, RFC 856, May 1983.
RFC0857 | | Postel, J. and J. Reynolds, "Telnet Echo Option", STD 28, RFC 857, May 1983.
RFC0858 | | Postel, J. and J. Reynolds, "Telnet Suppress Go Ahead Option", STD 29, RFC 858, May 1983.
RFC0859 | | Postel, J. and J. Reynolds, "Telnet Status Option", STD 30, RFC 859, May 1983.
RFC0860 | | Postel, J. and J. Reynolds, "Telnet Timing Mark Option", STD 31, RFC 860, May 1983.
RFC0861 | | Postel, J. and J. Reynolds, "Telnet Extended Options: List Option", STD 32, RFC 861, May 1983.
RFC0862 | | Postel, J., "Echo Protocol", STD 20, RFC 862, May 1983.
RFC0863 | | Postel, J., "Discard Protocol", STD 21, RFC 863, May 1983.
RFC0864 | | Postel, J., "Character Generator Protocol", STD 22, RFC 864, May 1983.
RFC0865 | | Postel, J., "Quote of the Day Protocol", STD 23, RFC 865, May 1983.
RFC0866 | | Postel, J., "Active users", STD 24, RFC 866, May 1983.
RFC0867 | | Postel, J., "Daytime Protocol", STD 25, RFC 867, May 1983.
RFC0868 | | Postel, J. and K. Harrenstien, "Time Protocol", STD 26, RFC 868, May 1983.
RFC0869 | | Hinden, R., "Host Monitoring Protocol", RFC 869, December 1983.
RFC0870 | RFC0900 | Reynolds, J. and J. Postel, "Assigned numbers", RFC 870, October 1983.
RFC0871 | | Padlipsky, M., "Perspective on the ARPANET reference model", RFC 871, September 1982.
RFC0872 | | Padlipsky, M., "TCP-on-a-LAN", RFC 872, September 1982.
RFC0873 | | Padlipsky, M., "Illusion of vendor support", RFC 873, September 1982.
RFC0874 | | Padlipsky, M., "Critique of X.25", RFC 874, September 1982.
RFC0875 | | Padlipsky, M., "Gateways, architectures, and heffalumps", RFC 875, September 1982.
RFC0876 | | Smallberg, D., "Survey of SMTP implementations", RFC 876, September 1983.
RFC0877 | RFC1356 | Korb, J., "Standard for the transmission of IP datagrams over public data networks", RFC 877, September 1983.
RFC0878 | | Malis, A., "ARPANET 1822L Host Access Protocol", RFC 878, December 1983.
RFC0879 | | Postel, J., "TCP maximum segment size and related topics", RFC 879, November 1983.
RFC0880 | RFC0901 | Reynolds, J. and J. Postel, "Official protocols", RFC 880, October 1983.
RFC0881 | | Postel, J., "Domain names plan and schedule", RFC 881, November 1983.
RFC0882 | RFC1034, RFC1035 | Mockapetris, P., "Domain names: Concepts and facilities", RFC 882, November 1983.
RFC0883 | RFC1034, RFC1035 | Mockapetris, P., "Domain names: Implementation specification", RFC 883, November 1983.
RFC0884 | RFC0930 | Solomon, M. and E. Wimmers, "Telnet terminal type option", RFC 884, December 1983.
RFC0885 | | Postel, J., "Telnet end of record option", RFC 885, December 1983.
RFC0886 | | Rose, M., "Proposed standard for message header munging", RFC 886, December 1983.
RFC0887 | | Accetta, M., "Resource Location Protocol", RFC 887, December 1983.
RFC0888 | | Seamonson, L. and E. Rosen, ""STUB" Exterior Gateway Protocol", RFC 888, January 1984.
RFC0889 | | Mills, D., "Internet Delay Experiments", RFC 889, December 1983.
RFC0890 | | Postel, J., "Exterior Gateway Protocol implementation schedule", RFC 890, February 1984.
RFC0891 | | Mills, D., "DCN Local-Network Protocols", STD 44, RFC 891, December 1983.
RFC0892 | RFC0905 | International Organization for Standardization, "ISO Transport Protocol specification", RFC 892, December 1983.
RFC0893 | | Leffler, S. and M. Karels, "Trailer encapsulations", RFC 893, April 1984.
RFC0894 | | Hornig, C., "A Standard for the Transmission of IP Datagrams over Ethernet Networks", STD 41, RFC 894, April 1984.
RFC0895 | | Postel, J., "Standard for the transmission of IP datagrams over experimental Ethernet networks", STD 42, RFC 895, April 1984.
RFC0896 | | Nagle, J., "Congestion Control in IP/TCP Internetworks", RFC 896, January 1984.
RFC0897 | | Postel, J., "Domain name system implementation schedule", RFC 897, February 1984.
RFC0898 | | Hinden, R., Postel, J., Muuss, M., and J. Reynolds, "Gateway special interest group meeting notes", RFC 898, April 1984.
RFC0899 | | Postel, J. and A. Westine, "Request For Comments summary notes: 800-899", RFC 899, May 1984.
RFC0900 | RFC0923 | Reynolds, J. and J. Postel, "Assigned Numbers", RFC 900, June 1984.
RFC0901 | RFC0924 | Reynolds, J. and J. Postel, "Official ARPA-Internet protocols", RFC 901, June 1984.
RFC0902 | | Reynolds, J. and J. Postel, "ARPA Internet Protocol policy", RFC 902, July 1984.
RFC0903 | | Finlayson, R., Mann, T., Mogul, J., and M. Theimer, "A Reverse Address Resolution Protocol", STD 38, RFC 903, June 1984.
RFC0904 | | Mills, D., "Exterior Gateway Protocol formal specification", RFC 904, April 1984.
RFC0905 | | ISO, "ISO Transport Protocol specification ISO DP 8073", RFC 905, April 1984.
RFC0906 | | Finlayson, R., "Bootstrap loading using TFTP", RFC 906, June 1984.
RFC0907 | | Bolt Beranek and Newman Laboratories, "Host Access Protocol specification", STD 40, RFC 907, July 1984.
RFC0908 | | Velten, D., Hinden, R., and J. Sax, "Reliable Data Protocol", RFC 908, July 1984.
RFC0909 | | Welles, C. and W. Milliken, "Loader Debugger Protocol", RFC 909, July 1984.
RFC0910 | | Forsdick, H., "Multimedia mail meeting notes", RFC 910, August 1984.
RFC0911 | | Kirton, P., "EGP Gateway under Berkeley UNIX 4.2", RFC 911, August 1984.
RFC0912 | RFC0931 | St. Johns, M., "Authentication service", RFC 912, September 1984.
RFC0913 | | Lottor, M., "Simple File Transfer Protocol", RFC 913, September 1984.
RFC0914 | | Farber, D., Delp, G., and T. Conte, "Thinwire protocol for connecting personal computers to the Internet", RFC 914, September 1984.
RFC0915 | | Elvy, M. and R. Nedved, "Network mail path service", RFC 915, December 1984.
RFC0916 | | Finn, G., "Reliable Asynchronous Transfer Protocol (RATP)", RFC 916, October 1984.
RFC0917 | | Mogul, J., "Internet subnets", RFC 917, October 1984.
RFC0918 | RFC0937 | Reynolds, J., "Post Office Protocol", RFC 918, October 1984.
RFC0919 | | Mogul, J., "Broadcasting Internet Datagrams", STD 5, RFC 919, October 1984.
RFC0920 | | Postel, J. and J. Reynolds, "Domain requirements", RFC 920, October 1984.
RFC0921 | | Postel, J., "Domain name system implementation schedule - revised", RFC 921, October 1984.
RFC0922 | | Mogul, J., "Broadcasting Internet datagrams in the presence of subnets", STD 5, RFC 922, October 1984.
RFC0923 | RFC0943 | Reynolds, J. and J. Postel, "Assigned numbers", RFC 923, October 1984.
RFC0924 | RFC0944 | Reynolds, J. and J. Postel, "Official ARPA-Internet protocols for connecting personal computers to the Internet", RFC 924, October 1984.
RFC0925 | | Postel, J., "Multi-LAN address resolution", RFC 925, October 1984.
RFC0926 | RFC0994 | International Organization for Standardization, "Protocol for providing the connectionless mode network services", RFC 926, December 1984.
RFC0927 | | Anderson, B., "TACACS user identification Telnet option", RFC 927, December 1984.
RFC0928 | | Padlipsky, M., "Introduction to proposed DoD standard H-FP", RFC 928, December 1984.
RFC0929 | | Lilienkamp, J., Mandell, R., and M. Padlipsky, "Proposed Host-Front End Protocol", RFC 929, December 1984.
RFC0930 | RFC1091 | Solomon, M. and E. Wimmers, "Telnet terminal type option", RFC 930, January 1985.
RFC0931 | RFC1413 | St. Johns, M., "Authentication server", RFC 931, January 1985.
RFC0932 | | Clark, D., "Subnetwork addressing scheme", RFC 932, January 1985.
RFC0933 | | Silverman, S., "Output marking Telnet option", RFC 933, January 1985.
RFC0934 | | Rose, M. and E. Stefferud, "Proposed standard for message encapsulation", RFC 934, January 1985.
RFC0935 | | Robinson, J., "Reliable link layer protocols", RFC 935, January 1985.
RFC0936 | | Karels, M., "Another Internet subnet addressing scheme", RFC 936, February 1985.
RFC0937 | | Butler, M., Postel, J., Chase, D., Goldberger, J., and J. Reynolds, "Post Office Protocol: Version 2", RFC 937, February 1985.
RFC0938 | | Miller, T., "Internet Reliable Transaction Protocol functional and interface specification", RFC 938, February 1985.
RFC0939 | | National Research Council, "Executive summary of the NRC report on transport protocols for Department of Defense data networks", RFC 939, February 1985.
RFC0940 | | Gateway Algorithms and Data Structures Task Force, "Toward an Internet standard scheme for subnetting", RFC 940, April 1985.
RFC0941 | | International Organization for Standardization, "Addendum to the network service definition covering network layer addressing", RFC 941, April 1985.
RFC0942 | | National Research Council, "Transport protocols for Department of Defense data networks", RFC 942, February 1985.
RFC0943 | RFC0960 | Reynolds, J. and J. Postel, "Assigned numbers", RFC 943, April 1985.
RFC0944 | RFC0961 | Reynolds, J. and J. Postel, "Official ARPA-Internet protocols", RFC 944, April 1985.
RFC0945 | RFC1039 | Postel, J., "DoD statement on the NRC report", RFC 945, May 1985.
RFC0946 | | Nedved, R., "Telnet terminal location number option", RFC 946, May 1985.
RFC0947 | | Lebowitz, K. and D. Mankins, "Multi-network broadcasting within the Internet", RFC 947, June 1985.
RFC0948 | RFC1042 | Winston, I., "Two methods for the transmission of IP datagrams over IEEE 802.3 networks", RFC 948, June 1985.
RFC0949 | | Padlipsky, M., "FTP unique-named store command", RFC 949, July 1985.
RFC0950 | | Mogul, J. and J. Postel, "Internet Standard Subnetting Procedure", STD 5, RFC 950, August 1985.
RFC0951 | | Croft, W. and J. Gilmore, "Bootstrap Protocol", RFC 951, September 1985.
RFC0952 | | Harrenstien, K., Stahl, M., and E. Feinler, "DoD Internet host table specification", RFC 952, October 1985.
RFC0953 | | Harrenstien, K., Stahl, M., and E. Feinler, "Hostname Server", RFC 953, October 1985.
RFC0954 | RFC3912 | Harrenstien, K., Stahl, M., and E. Feinler, "NICNAME/WHOIS", RFC 954, October 1985.
RFC0955 | | Braden, R., "Towards a transport service for transaction processing applications", RFC 955, September 1985.
RFC0956 | | Mills, D., "Algorithms for synchronizing network clocks", RFC 956, September 1985.
RFC0957 | | Mills, D., "Experiments in network clock synchronization", RFC 957, September 1985.
RFC0958 | RFC1059, RFC1119, RFC1305 | Mills, D., "Network Time Protocol (NTP)", RFC 958, September 1985.
RFC0959 | | Postel, J. and J. Reynolds, "File Transfer Protocol", STD 9, RFC 959, October 1985.
RFC0960 | RFC0990 | Reynolds, J. and J. Postel, "Assigned numbers", RFC 960, December 1985.
RFC0961 | RFC0991 | Reynolds, J. and J. Postel, "Official ARPA-Internet protocols", RFC 961, December 1985.
RFC0962 | | Padlipsky, M., "TCP-4 prime", RFC 962, November 1985.
RFC0963 | | Sidhu, D., "Some problems with the specification of the Military Standard Internet Protocol", RFC 963, November 1985.
RFC0964 | | Sidhu, D. and T. Blumer, "Some problems with the specification of the Military Standard Transmission Control Protocol", RFC 964, November 1985.
RFC0965 | | Aguilar, L., "Format for a graphical communication protocol", RFC 965, December 1985.
RFC0966 | RFC0988 | Deering, S. and D. Cheriton, "Host groups: A multicast extension to the Internet Protocol", RFC 966, December 1985.
RFC0967 | | Padlipsky, M., "All victims together", RFC 967, December 1985.
RFC0968 | | Cerf, V., "Twas the night before start-up", RFC 968, December 1985.
RFC0969 | RFC0998 | Clark, D., Lambert, M., and L. Zhang, "NETBLT: A bulk data transfer protocol", RFC 969, December 1985.
RFC0970 | | Nagle, J., "On Packet Switches With Infinite Storage", RFC 970, December 1985.
RFC0971 | | DeSchon, A., "Survey of data representation standards", RFC 971, January 1986.
RFC0972 | | Wancho, F., "Password Generator Protocol", RFC 972, January 1986.
RFC0973 | RFC1034, RFC1035 | Mockapetris, P., "Domain system changes and observations", RFC 973, January 1986.
RFC0974 | RFC2821 | Partridge, C., "Mail routing and the domain system", STD 10, RFC 974, January 1986.
RFC0975 | | Mills, D., "Autonomous confederations", RFC 975, February 1986.
RFC0976 | | Horton, M., "UUCP mail interchange format standard", RFC 976, February 1986.
RFC0977 | RFC3977 | Kantor, B. and P. Lapsley, "Network News Transfer Protocol", RFC 977, February 1986.
RFC0978 | | Reynolds, J., Gillman, R., Brackenridge, W., Witkowski, A., and J. Postel, "Voice File Interchange Protocol (VFIP)", RFC 978, February 1986.
RFC0979 | | Malis, A., "PSN End-to-End functional specification", RFC 979, March 1986.
RFC0980 | | Jacobsen, O. and J. Postel, "Protocol document order information", RFC 980, March 1986.
RFC0981 | | Mills, D., "Experimental multiple-path routing algorithm", RFC 981, March 1986.
RFC0982 | | Braun, H., "Guidelines for the specification of the structure of the Domain Specific Part (DSP) of the ISO standard NSAP address", RFC 982, April 1986.
RFC0983 | RFC1006 | Cass, D. and M. Rose, "ISO transport arrives on top of the TCP", RFC 983, April 1986.
RFC0984 | RFC0993 | Clark, D. and M. Lambert, "PCMAIL: A distributed mail system for personal computers", RFC 984, May 1986.
RFC0985 | RFC1009 | National Science Foundation and Network Technical Advisory Group, "Requirements for Internet gateways - draft", RFC 985, May 1986.
RFC0986 | RFC1069 | Callon, R. and H. Braun, "Guidelines for the use of Internet-IP addresses in the ISO Connectionless-Mode Network Protocol", RFC 986, June 1986.
RFC0987 | RFC2156, RFC1327 | Kille, S., "Mapping between X.400 and RFC 822", RFC 987, June 1986.
RFC0988 | RFC1054, RFC1112 | Deering, S., "Host extensions for IP multicasting", RFC 988, July 1986.
RFC0989 | RFC1040, RFC1113 | Linn, J., "Privacy enhancement for Internet electronic mail: Part I: Message encipherment and authentication procedures", RFC 989, February 1987.
RFC0990 | RFC1010 | Reynolds, J. and J. Postel, "Assigned numbers", RFC 990, November 1986.
RFC0991 | RFC1011 | Reynolds, J. and J. Postel, "Official ARPA-Internet protocols", RFC 991, November 1986.
RFC0992 | | Birman, K. and T. Joseph, "On communication support for fault tolerant process groups", RFC 992, November 1986.
RFC0993 | RFC1056 | Clark, D. and M. Lambert, "PCMAIL: A distributed mail system for personal computers", RFC 993, December 1986.
RFC0994 | | International Organization for Standardization, "Final text of DIS 8473, Protocol for Providing the Connectionless-mode Network Service", RFC 994, March 1986.
RFC0995 | | International Organization for Standardization, "End System to Intermediate System Routing Exchange Protocol for use in conjunction with ISO 8473", RFC 995, April 1986.
RFC0996 | | Mills, D., "Statistics server", RFC 996, February 1987.
RFC0997 | RFC1020, RFC1117 | Reynolds, J. and J. Postel, "Internet numbers", RFC 997, March 1987.
RFC0998 | | Clark, D., Lambert, M., and L. Zhang, "NETBLT: A bulk data transfer protocol", RFC 998, March 1987.
RFC0999 | RFC1000 | Westine, A. and J. Postel, "Requests For Comments summary notes: 900-999", RFC 999, April 1987.
RFC1000 | | Reynolds, J. and J. Postel, "Request For Comments reference guide", RFC 1000, August 1987.
RFC1001 | | NetBIOS Working Group in the Defense Advanced Research Projects Agency, Internet Activities Board, and End-to-End Services Task Force, "Protocol standard for a NetBIOS service on a TCP/UDP transport: Concepts and methods", STD 19, RFC 1001, March 1987.
RFC1002 | | NetBIOS Working Group in the Defense Advanced Research Projects Agency, Internet Activities Board, and End-to-End Services Task Force, "Protocol standard for a NetBIOS service on a TCP/UDP transport: Detailed specifications", STD 19, RFC 1002, March 1987.
RFC1003 | | Katz, A., "Issues in defining an equations representation standard", RFC 1003, March 1987.
RFC1004 | | Mills, D., "Distributed-protocol authentication scheme", RFC 1004, April 1987.
RFC1005 | | Khanna, A. and A. Malis, "ARPANET AHIP-E Host Access Protocol (enhanced AHIP)", RFC 1005, May 1987.
RFC1006 | | Rose, M. and D. Cass, "ISO Transport Service on top of the TCP Version: 3", STD 35, RFC 1006, May 1987.
RFC1007 | | McCoy, W., "Military supplement to the ISO Transport Protocol", RFC 1007, June 1987.
RFC1008 | | McCoy, W., "Implementation guide for the ISO Transport Protocol", RFC 1008, June 1987.
RFC1009 | RFC1812 | Braden, R. and J. Postel, "Requirements for Internet gateways", RFC 1009, June 1987.
RFC1010 | RFC1060 | Reynolds, J. and J. Postel, "Assigned numbers", RFC 1010, May 1987.
RFC1011 | | Reynolds, J. and J. Postel, "Official Internet protocols", RFC 1011, May 1987.
RFC1012 | | Reynolds, J. and J. Postel, "Bibliography of Request For Comments 1 through 999", RFC 1012, June 1987.
RFC1013 | | Scheifler, R., "X Window System Protocol, version 11: Alpha update April 1987", RFC 1013, June 1987.
RFC1014 | | Sun Microsystems, "XDR: External Data Representation standard", RFC 1014, June 1987.
RFC1015 | | Leiner, B., "Implementation plan for interagency research Internet", RFC 1015, July 1987.
RFC1016 | | Prue, W. and J. Postel, "Something a Host Could Do with Source Quench: The Source Quench Introduced Delay (SQuID)", RFC 1016, July 1987.
RFC1017 | | Leiner, B., "Network requirements for scientific research: Internet task force on scientific computing", RFC 1017, August 1987.
RFC1018 | | McKenzie, A., "Some comments on SQuID", RFC 1018, August 1987.
RFC1019 | | Arnon, D., "Report of the Workshop on Environments for Computational Mathematics", RFC 1019, September 1987.
RFC1020 | RFC1062, RFC1117, RFC1166 | Romano, S. and M. Stahl, "Internet numbers", RFC 1020, November 1987.
RFC1021 | | Partridge, C. and G. Trewitt, "High-level Entity Management System (HEMS)", RFC 1021, October 1987.
RFC1022 | | Partridge, C. and G. Trewitt, "High-level Entity Management Protocol (HEMP)", RFC 1022, October 1987.
RFC1023 | RFC1076 | Trewitt, G. and C. Partridge, "HEMS monitoring and control language", RFC 1023, October 1987.
RFC1024 | | Partridge, C. and G. Trewitt, "HEMS variable definitions", RFC 1024, October 1987.
RFC1025 | | Postel, J., "TCP and IP bake off", RFC 1025, September 1987.
RFC1026 | RFC2156, RFC1327 | Kille, S., "Addendum to RFC 987: (Mapping between X.400 and RFC-822)", RFC 1026, September 1987.
RFC1027 | | Carl-Mitchell, S. and J. Quarterman, "Using ARP to implement transparent subnet gateways", RFC 1027, October 1987.
RFC1028 | | Davin, J., Case, J., Fedor, M., and M. Schoffstall, "Simple Gateway Monitoring Protocol", RFC 1028, November 1987.
RFC1029 | | Parr, G., "More fault tolerant approach to address resolution for a Multi-LAN system of Ethernets", RFC 1029, May 1988.
RFC1030 | | Lambert, M., "On testing the NETBLT Protocol over divers networks", RFC 1030, November 1987.
RFC1031 | | Lazear, W., "MILNET name domain transition", RFC 1031, November 1987.
RFC1032 | | Stahl, M., "Domain administrators guide", RFC 1032, November 1987.
RFC1033 | | Lottor, M., "Domain Administrators Operations Guide", RFC 1033, November 1987.
RFC1034 | | Mockapetris, P., "Domain names - concepts and facilities", STD 13, RFC 1034, November 1987.
RFC1035 | | Mockapetris, P., "Domain names - implementation and specification", STD 13, RFC 1035, November 1987.
RFC1036 | RFC5536, RFC5537 | Horton, M. and R. Adams, "Standard for interchange of USENET messages", RFC 1036, December 1987.
RFC1037 | | Greenberg, B. and S. Keene, "NFILE - a file access protocol", RFC 1037, December 1987.
RFC1038 | RFC1108 | St. Johns, M., "Draft revised IP security option", RFC 1038, January 1988.
RFC1039 | | Latham, D., "DoD statement on Open Systems Interconnection protocols", RFC 1039, January 1988.
RFC1040 | RFC1113 | Linn, J., "Privacy enhancement for Internet electronic mail: Part I: Message encipherment and authentication procedures", RFC 1040, January 1988.
RFC1041 | | Rekhter, Y., "Telnet 3270 regime option", RFC 1041, January 1988.
RFC1042 | | Postel, J. and J. Reynolds, "Standard for the transmission of IP datagrams over IEEE 802 networks", STD 43, RFC 1042, February 1988.
RFC1043 | | Yasuda, A. and T. Thompson, "Telnet Data Entry Terminal option: DODIIS implementation", RFC 1043, February 1988.
RFC1044 | | Hardwick, K. and J. Lekashman, "Internet Protocol on Network System's HYPERchannel: Protocol Specification", STD 45, RFC 1044, February 1988.
RFC1045 | | Cheriton, D., "VMTP: Versatile Message Transaction Protocol: Protocol specification", RFC 1045, February 1988.
RFC1046 | | Prue, W. and J. Postel, "Queuing algorithm to provide type-of-service for IP links", RFC 1046, February 1988.
RFC1047 | | Partridge, C., "Duplicate messages and SMTP", RFC 1047, February 1988.
RFC1048 | RFC1084, RFC1395, RFC1497, RFC1533 | Prindeville, P., "BOOTP vendor information extensions", RFC 1048, February 1988.
RFC1049 | | Sirbu, M., "Content-type header field for Internet messages", RFC 1049, March 1988.
RFC1050 | RFC1057 | Sun Microsystems, "RPC: Remote Procedure Call Protocol specification", RFC 1050, April 1988.
RFC1051 | RFC1201 | Prindeville, P., "Standard for the transmission of IP datagrams and ARP packets over ARCNET networks", RFC 1051, March 1988.
RFC1052 | | Cerf, V., "IAB recommendations for the development of Internet network management standards", RFC 1052, April 1988.
RFC1053 | | Levy, S. and T. Jacobson, "Telnet X.3 PAD option", RFC 1053, April 1988.
RFC1054 | RFC1112 | Deering, S., "Host extensions for IP multicasting", RFC 1054, May 1988.
RFC1055 | | Romkey, J., "Nonstandard for transmission of IP datagrams over serial lines: SLIP", STD 47, RFC 1055, June 1988.
RFC1056 | | Lambert, M., "PCMAIL: A distributed mail system for personal computers", RFC 1056, June 1988.
RFC1057 | | Sun Microsystems, "RPC: Remote Procedure Call Protocol specification: Version 2", RFC 1057, June 1988.
RFC1058 | | Hedrick, C., "Routing Information Protocol", RFC 1058, June 1988.
RFC1059 | RFC1119, RFC1305 | Mills, D., "Network Time Protocol (version 1) specification and implementation", RFC 1059, July 1988.
RFC1060 | RFC1340 | Reynolds, J. and J. Postel, "Assigned numbers", RFC 1060, March 1990.
RFC1062 | RFC1117, RFC1166 | Romano, S., Stahl, M., and M. Recker, "Internet numbers", RFC 1062, August 1988.
RFC1063 | RFC1191 | Mogul, J., Kent, C., Partridge, C., and K. McCloghrie, "IP MTU discovery options", RFC 1063, July 1988.
RFC1064 | RFC1176, RFC1203 | Crispin, M., "Interactive Mail Access Protocol: Version 2", RFC 1064, July 1988.