-
Notifications
You must be signed in to change notification settings - Fork 6
/
rfc.bib
1752 lines (1535 loc) · 44.2 KB
/
rfc.bib
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
@string{IETF = "{Internet Engineering Task Force}"}
% Put actual RFCs at the top, Internet-Drafts at the bottom
@manual{rfc768,
author = "J. ~B. ~Postel",
title = "{User Datagram Protocol}",
organization = IETF,
note = {RFC 768},
year = 1980,
month = aug,
}
@manual{rfc791,
author = {J. ~B. ~Postel},
title = "{Internet Protocol}",
note = {RFC 791},
organization = IETF,
year = 1981,
address = {Information Sciences Institute, Marina del Rey, CA},
month = sep
}
@manual{rfc792,
author = "Postel, J.",
title = "{Internet Control Message Protocol}",
note = {RFC 792},
organization = IETF,
year = 1981,
month = sep
}
@manual{rfc793,
author = {J. ~B. ~Postel},
title = "{Transmission Control Protocol}",
note = {RFC 793},
year = 1981,
organization = IETF,
month = sep
}
@manual{rfc821,
author = {J. ~B. ~Postel},
title = "{Simple Mail Transfer Protocol}",
note = {RFC 821},
organization = IETF,
month = aug,
year = 1982,
}
@manual{rfc822,
author = {D. H. Crocker},
title = "{Standard for the Format of ARPA Internet Text Messages}",
note = {RFC 822},
organization = IETF,
month = aug,
year = 1982,
}
@manual{rfc854,
author = "J. ~B. ~Postel and Reynolds, J.",
title = "{TELNET Protocol Specification}",
organization = IETF,
note = {RFC 854},
month = may,
year = 1983,
}
@manual{rfc908,
author = "Velten, D. and Hinden, R. and Sax, J.",
title = "{Reliable Data Protocol}",
note = {RFC 908},
organization = IETF,
month = jul,
year = 1984,
}
@manual{rfc959,
author = "J. ~B. ~Postel and Reynolds, J.",
title = "{File Transfer Protocol (FTP)}",
note = {RFC 959},
organization = IETF,
month = oct,
year = 1985,
}
@manual{rfc970,
author = "Nagle, J.",
title = "{On Packet Switches with Infinite Storage}",
note = {RFC 970},
organization = IETF,
year = 1985,
month = dec,
}
@manual{rfc976,
author="Horton, Mark R.",
title="UUCP Mail Interchange Format Standard",
note={RFC976},
organization = IETF,
year = 1986,
month = feb
}
@manual{rfc977,
author = "Kantor, B. and Lapsley, P.",
title = "{Network News Transfer Protocol (NNTP)}",
note = {RFC-977},
address = "{UC San Diego}",
month = feb,
year = 1986,
}
@manual{rfc1016,
author = "W. Prue and J. Postel",
title = "{Something a Host Could Do with Source Quench: The Source Quench Introduced Delay (SQuID)}",
organization = IETF,
note = {RFC 1016},
month = jul,
year = 1987,
}
@manual{rfc1034,
author="Mockapetris, P. V.",
title="Domain names - concepts and facilities",
organization = IETF,
note = {RFC 1034},
month=nov,
year=1987,
abstract="This RFC is the revised basic definition of The Domain
Name System. It obsoletes RFC-882. This memo describes the
domain style names and their used for host address look up
and electronic mail forwarding. It discusses the clients
and servers in the domain name system and the protocol used
between them.",
URL="\url{ftp://ftp.isi.edu/in-notes/rfc1034.txt}",
entryby=Sc
}
@manual{rfc1035,
author="Mockapetris, P. V.",
title="Domain names - implementation and specification",
organization = IETF,
note = {RFC 1035},
month=nov,
year=1987,
abstract="This RFC is the revised specification of the protocol and
format used in the implementation of the Domain Name
System. It obsoletes RFC-883. This memo documents the
details of the domain name client - server communication.",
URL="\url{ftp://ftp.isi.edu/in-notes/rfc1035.txt}",
entryby=Sc
}
@manual{rfc1058,
author = "Hedrick, C.",
title = "{Routing Information Protocol}",
organization = IETF,
note = {RFC 1058},
year = 1988,
month = jun
}
@manual{rfc1070,
author = {R. Hagens and N. Hall and M. Rose},
title = {Use of the Internet as a Subnetwork for Experimentation with the OSI Network Layer},
note = {RFC 1070},
organization = IETF,
year = 1989,
month = feb,
}
@manual{rfc1072,
author = {Jacobson, V. and Braden, R. T.},
title = {TCP Extensions for Long Delay Paths},
note = {RFC 1072},
organization = IETF,
year = 1988,
month = oct,
}
@manual{rfc1094,
author = {Sun Microsystems, Inc.},
title = {NFS: Network File System Protocol Specification},
note = {RFC 1094} ,
month = mar,
year = 1989
}
@manual{rfc1102,
author = {David Clark},
title = {Policy Routing in Internet Protocols},
note = {RFC 1102},
organization = IETF,
year = 1989,
month = may
}
@manual{rfc1112,
author = {Steve Deering},
title = {Host Extensions for IP Multicasting},
note = {RFC 1112},
organization = IETF,
year = 1989,
address = {SRI International, Menlo Park, CA},
month = aug,
}
@manual{rfc1122,
key = "RFC 1122",
author = "Braden, R. T.",
title = "{Requirements for Internet Hosts---Communication Layers}",
organization = IETF,
note = {RFC 1122},
month = oct,
year = 1989,
}
@manual{rfc1142,
key = "RFC 1142",
author = "Oran, D.",
title = "{OSI IS-IS intra-domain routing protocol}",
organization = IETF,
note = {RFC 1142},
month = feb,
year = 1990
}
@manual{rfc1144,
author = {Jacobson, V.},
title = "{Compressing TCP/IP Headers for Low-speed Serial Links}",
organization = IETF,
note = {RFC 1144},
year = 1990,
month = feb,
}
@manual{rfc1151,
author = {Partridge, C. and Hinden, R.~M.},
title = "{Version 2 of the Reliable Data Protocol (RDP)}",
organization = IETF,
note = {RFC 1151},
year = 1990,
month = apr,
}
@manual{rfc1191,
author = {Mogul, J. and Deering, S.},
title = "{Path MTU Discovery}",
organization = IETF,
note = {RFC 1191},
year = 1990,
month = nov,
}
@manual{rfc1323,
author = "Jacobson, V. and Braden, R. and Borman, D.",
title = "{TCP} Extensions for High Performance",
note = {RFC 1323},
organization = IETF,
year = 1992,
month = may,
}
@manual{rfc1379,
author = "Braden, R.",
title = "Extending {TCP} for Transactions -- Concepts",
year = 1992,
month = nov,
note = {RFC 1379},
organization = IETF
}
@manual{rfc1426,
author = "J. Klensin and N. Freed and M. Rose and E. Stefferud and D. Crocker",
title = "{SMTP Service Extension for 8bit-MIMEtransport}",
organization = IETF,
note = {RFC 1426},
year = 1993,
month = feb
}
@manual{rfc1478,
author = "M. Steenstrup",
title = "{An Architecture for Inter-Domain Policy Routing}",
organization = IETF,
note = {RFC 1478},
year = 1993,
month = jun
}
@manual{rfc1518,
author="Rekhter, Y. and Li, T.",
title="An Architecture for {IP} Address Allocation with {CIDR}",
organization = IETF,
note = {RFC 1518},
month=sep,
year=1993,
abstract="This paper provides an architecture and a plan for
allocating IP addresses in the Internet. This architecture
and the plan are intended to play an important role in
steering the Internet towards the Address Assignment and
Aggregating Strategy outlined in RFC XXX. The IP address
space is a scarce shared resource that must be managed for
the good of the community. The managers of this resource
are acting as its custodians. They have a responsibility to
the community to manage it for the common good.",
URL="\url{ftp://ftp.isi.edu/in-notes/rfc1518.txt}",
entryby=Sc
}
@manual{rfc1519,
author="Fuller, V. and Li, T. and Yu, J. and Varadhan, K.",
title="Classless Inter-Domain Routing {(CIDR):} an Address Assignment
and Aggregation Strategy",
organization = IETF,
note = {RFC 1519},
month=sep,
year=1993,
abstract="This memo discusses strategies for address assignment of
the existing IP address space with a view to conserve the
address space and stem the explosive growth of routing
tables in default-route-free routers.",
URL="ftp://ftp.isi.edu/in-notes/rfc1519.txt",
entryby=Sc
}
@manual{rfc1520,
author="Rekhter, Y. and Topolcic, C.",
title="Exchanging Routing Information Across Provider Boundaries in the
{CIDR} Environment",
organization = IETF,
note = {RFC 1520},
month=sep,
year=1993,
abstract={Classless Inter-Domain Routing (CIDR) has been adopted as
a solution to the scaling problem in the Internet. The
overall CIDR architecture is described in RFC XXX. The
architecture for IP address assignment with CIDR is covered
in RFC XXX and RFC XXX. The inter-domain routing protocols
that are capable of supporting CIDR are covered in RFC
XXX. The purpose of this document is twofold. First, it
describes various alternatives for exchanging inter-domain
routing information across domain boundaries, where one of
the peering domain is CIDR-capable and another is
not. Second, it addresses the implications of running
CIDR-capable inter-domain routing protocols (e.g., BGP-4,
IDRP) on intra-domain routing. This document is not
intended to cover all the cases (either real or
imaginable). Rather, it focuses on what are viewed to be
the most common cases. We expect that individual service
providers will use this document as guidelines in
establishing their specific operational plans for the
transition to CIDR. The concepts of "network service
provider" and "network service subscriber" were introduced
in RFC XXX. For the sake of brevity, we will use the term
"provider" or "service provider" here to mean either
"network service provider" or "network service subscriber",
since for the most part, the distinction is not important
to this discussion. Furthermore, we use the same terms to
refer to the network and to the organization that operates
the network. We feel that the context makes it amply clear
whether we are talking about hardware or people, and
defining different terms would only make this paper harder
to read.},
URL="ftp://ftp.isi.edu/in-notes/rfc1520.txt",
entryby=Sc
}
@manual{rfc1521,
author = "Borenstein, N. and Freed, N.",
title = "{MIME (Multipurpose Internet Mail Extensions) Part
One: Mechanisms for Specifying and Describing the Format of Internet
Message Bodies}",
organization = IETF,
note = "{RFC 1521}",
year = 1993,
month = sep,
}
@manual{rfc1546,
author = "Partridge, C. and Mendez, T. and Milliken, W.",
title = {Host Anycasting Service},
note = {RFC 1546},
organization = IETF,
year = 1993,
month = nov
}
@manual{rfc1548,
author = "Simpson, W.",
title = "{The Point-to-Point Protocol (PPP)}",
note = {RFC 1548},
organization = IETF,
month = dec,
year = 1993,
}
@manual{rfc1583,
author = "Moy, J.",
title = {OSPF Version 2},
note = "{RFC 1583}",
month = mar,
year = 1994,
}
@manual{rfc1771,
author= "Y. Rekhter and T. Li",
title="{A Border Gateway Protocol 4 (BGP-4)}",
note = {RFC 1771},
organization = IETF,
year=1995,
month=mar,
}
@manual{rfc1794,
author = "T. Brisco",
title = "{DNS Support for Load Balancing}",
note = {RFC 1794},
organization = IETF,
year=1995,
month=apr,
}
@manual{rfc1809,
title="Using the Flow Label Field in IPv6",
author="C. Partridge",
month=jun,
note = {RFC 1809},
year=1995,
organization = IETF,
}
@manual{rfc1812,
author = "F. Baker",
title = "Requirements for {IP} {V}ersion 4 Routers",
note= "{RFC~1812}",
organization = IETF,
URL = "\url{http://www.ietf.org/rfc/rfc1812.txt}",
month = jun,
year = 1995
}
@manual{rfc1813,
author = "B. Callaghan and B. Pawlowski and P. Staubach",
title = {{NFS} Version 3 Protocol Specification},
note = {RFC 1813},
month = jun,
year = 1995,
}
@manual{rfc1866,
author = {Berners-Lee, T.},
title = {Hypertext Markup Language - 2.0},
note = {RFC 1866},
organization = {MIT Laboratory for Computer Science},
year = 1995,
month = nov
}
@manual{rfc1884,
author = "Hinden, R. and Deering, S.",
title = {IP Version 6 Addressing Architecture},
note = {RFC 1884},
organization = IETF,
year = 1995,
month = dec
}
@manual{rfc1889,
author = "Schulzrinne, H. and Casner, S. and Frederick, R. and Jacobson, V.",
title = {RTP: A Transport Protocol for Real-Time Applications},
organization = IETF,
note = {RFC 1889},
year = 1996,
month = jan
}
@manual{rfc1918,
author = {Rekhter,, Y. and Moskowitz,, B. and Karrenberg,, D. and Groot,, G. J. de and Lear,, E.},
title = {Address Allocation for Private Internets},
year = 1996,
publisher = {RFC Editor},
address = {United States},
}
@manual{rfc1945,
author = "Berners-Lee, T. and Fielding, R. and Frystyk, H.",
title = "{Hypertext Transfer Protocol--HTTP/1.0}",
organization = IETF,
note = {RFC 1945},
year = 1996,
month = may,
}
@manual{rfc1948,
author = "S. Bellovin.",
title = "{Defending Against Sequence Number Attacks}",
organization = IETF,
note = {RFC 1948},
year = 1996,
month = may,
}
@manual{rfc1992,
title = {The Nimrod Routing Architecture},
author = {I. Canstineyra and N. Chiappa and M. Steenstrup},
organization = IETF,
month = aug,
year = 1996,
note = {RFC 1992},
}
@manual{rfc1997,
title = {{BGP} Communities Attribute},
author = {R. Chandra and P. Traina },
organization = IETF,
month = aug,
year = 1996,
note = {RFC 1997},
}
@manual{rfc2001,
author = "Stevens, W. R.",
title = "{TCP Slow Start, Congestion Avoidance, Fast Retransmit, and Fast Recovery Algorithms}",
organization = IETF,
note = {RFC 2001},
year = 1997,
month = jan
}
@manual{rfc2002,
author = "Perkins, C.",
title = {IP Mobility Support},
organization = IETF,
note = {RFC 2002},
year = 1996,
month = oct
}
@manual{rfc2018,
author = "Mathis, M. and Mahdavi, J. and Floyd, S. and Romanow, A.",
title = "{TCP} Selective Acknowledgment Options",
organization = IETF,
note = "{RFC 2018}",
year = 1996,
}
@manual{rfc2068,
author = "Fielding, R. and Gettys, J. and Mogul, J. and Frystyk, H. and Berners-Lee, T.",
title = "{Hypertext Transfer Protocol---HTTP/1.1}",
note = {RFC 2068},
organization = IETF,
year = 1997,
month = jan
}
@manual{rfc2104,
author = "Crawczyk, H. and Bellare, M. and Canetti, R.",
title = {HMAC: Keyed-Hashing for Message Authentication},
note = {RFC 2104},
organization = IETF,
year = 1997,
month = feb
}
@manual{rfc2131,
author = "R. Droms",
title = "Dynamic Host Configuration Protocol",
note = "{RFC~2131}",
organization = IETF,
URL = "\url{http://www.ietf.org/rfc/rfc2131.txt}",
year = 1997,
month = mar
}
@manual{rfc2140,
author = "Touch, J.",
title = {TCP Control Block Interdependence},
note = {RFC 2140},
organization = IETF,
year = 1997,
month = apr
}
@manual{rfc2182,
author = "R. Elz and R. Bush and S. Bradner and M. Patton",
title = {Selection and Operation of Secondary DNS Servers},
note = {RFC 2182 / BCP 16},
organization = IETF,
year = 1997,
month = jul
}
@manual{rfc2186,
author = "D. Wessels and K. Claffy",
title = {Internet Cache Protocol (ICP), version 2},
note = {RFC 2186},
organization = IETF,
year = 1997,
month = sep
}
@manual{rfc2187,
author = "D. Wessels and K. Claffy",
title = {Application of Internet Cache Protocol (ICP), version 2},
note = {RFC 2187},
organization = IETF,
year = 1997,
month = sep
}
@manual{rfc2205,
author = "R. Braden and L. Zhang and S. Berson and S. Herzog and S. Jamin",
title = "Resource {ReSerVation Protocol} ({RSVP})",
note = {RFC 2205},
organization = IETF,
year = 1997,
month = sep
}
@manual{rfc2246,
author = {Tim Dierks and Christopher Allen},
title = {The {TLS} Protocol Version 1.0},
organization = IETF,
note = {RFC 2246, Proposed Standard},
month = jan,
year = 1999
}
@manual{rfc2250,
author = "D. Hoffman and G. Fernando and V. Goyal",
title = {RTP Payload Format for MPEG1/MPEG2 Video},
note = {RFC 2250},
organization = IETF,
year = 1998,
month = jan
}
% Obsoleted by RFC 2827
@manual{rfc2267,
author = "Paul Ferguson and Daniel Senie",
title = "Network Ingress Filtering: Defeating Denial of Service
Attacks which employ {IP} Source Address Spoofing",
note = {RFC 2267},
organization = IETF,
month = jan,
year = 1998
}
@manual{rfc2295,
author = "Holtman, K.",
title = {Transparent Content Negotiation in HTTP},
note = {RFC 2295},
organization = IETF,
year = 1998,
month = mar
}
@manual{rfc2309,
author = "Braden, B. and Clark, D. and Crowcroft, J. and Davie, B. and
Deering, S. and Estrin, D. and Floyd, S. and Jacobson, V. and Minshall, G. and Partridge, C. and Peterson, L. and Ramakrishnan, K. and Shenker, S. and Wroclawski, J. and Zhang, L.",
title = "{Recommendations on Queue Management and Congestion Avoidance in the Internet}",
note = {RFC 2309},
organization = IETF,
year = 1998,
month = apr,
}
@manual{rfc2326,
author = "Schulzrinne, H. and Rao, A. and Lanphier, R.",
title = {Real Time Streaming Protocol (RTSP)},
note = {RFC 2326},
organization = IETF,
year = 1998,
month = apr
}
@manual{rfc2327,
author = "Handley, M. and Jacobson, V.",
title = {Session Description Protocol},
note = {RFC 2327},
organization = IETF,
year = 1998,
month = apr
}
@manual{rfc2330,
author="V. Paxson and G. Almes and J. Mahdavi and M. Mathis",
title="Framework for IP Performance Metrics",
note = {RFC 2330},
organization = IETF,
year=1998,
month=may
}
@manual{rfc2343,
author="M. Civanlar and G. Cash and B. Haskell",
title="RTP Payload Format for Bundled MPEG ",
note = {RFC 2343},
organization = IETF,
year=1998,
month=may
}
@manual{rfc2385,
title = {Protection of BGP Sessions via the TCP MD5 Signature Option},
author = {A. Heffernan},
organization = IETF,
month = aug,
year = 1998,
note = {RFC 2385},
}
@manual{rfc2401,
author = "S. Kent and R. Atkinson",
title = "{Security Architecture for the Internet Protocol}",
note = "{RFC~2401}",
organization = IETF,
month = nov,
year = 1998,
}
@manual{rfc2406,
author = "S. Kent and R. Atkinson",
title = "{IP} Encapsulating Security Payload ({ESP})",
note = "{RFC~2406}",
organization = IETF,
URL = "\url{http://www.ietf.org/rfc/rfc2406.txt}",
year = 1998,
}
@manual{rfc2411,
author="R. Thayer and N. Doraswamy and R. Glenn",
title="IP Security Document Roadmap",
note={RFC 2411},
organization = IETF,
year=1998,
month=nov
}
@manual{rfc2412,
author = "H. Orman",
title = "The {OAKLEY} Key Determination Protocol",
note={RFC 2412},
organization = IETF,
year = 1998,
month = nov
}
@manual{rfc2439,
author="C. Villamizar and R. Chandra and R. Govindan",
title="{BGP} Route Flap Damping",
note={RFC 2439},
organization = IETF,
year=1998,
month=nov
}
@manual{rfc2453,
author = "Malkin, G.",
title = "{RIP Version 2}",
note = {RFC 2453},
organization = IETF,
year = 1998,
month = nov,
}
@manual{rfc2460,
author = "S. Deering and R. Hinden",
title = "{Internet Protocol, Version 6 (IPv6) Specification}",
note = {RFC 2460},
organization = IETF,
year = 1998,
month = dec,
}
@manual{rfc2474,
author = "K. Nichols and S. Blake and F. Baker and D. Black",
title = "{D}efinition of the {Differentiated} {Services} Field ({DS} Field) in the {IPv4} and {IPv6} Headers",
note = "{RFC~2474}",
organization = IETF,
URL = "\url{http://www.ietf.org/rfc/rfc2474.txt}",
year = 1998,
month = dec,
}
@manual{rfc2475,
author = "Blake, S. and Black, D. and Carlson, M. and Davies, E. and Wang, Z. and Weiss, W.",
title = "{An Architecture for Differentiated Services}",
note = {RFC 2475},
organization = IETF,
year = 1998,
month = dec,
}
@manual{rfc2481,
author = "Ramakrishnan, K. and Floyd, S.",
title = "A Proposal to Add Explicit Congestion Notification ({ECN}) to {IP}",
note = {RFC 2481},
organization = IETF,
year = 1999,
month = jan,
}
@manual{rfc2507,
author = "M. Degermark and B. Nordgren and S. Pink",
title = "{IP} header compression",
organization = IETF,
note = "{RFC~2507}",
year = 1999,
month = feb
}
%URL = "\url{http://www.ietf.org/rfc/rfc2507.txt}",
@manual{rfc2547,
author = "E. Rosen and Y. Rekhter",
title = "{BGP/MPLS VPNs}",
organization = IETF,
note = "{RFC~2547}",
URL = "\url{http://www.ietf.org/rfc/rfc2547.txt}",
year = 1999,
month = mar
}
@manual{rfc2581,
author = "Allman, M. and Paxson, V.",
title = "{TCP Congestion Control}",
note = {RFC 2581},
organization = IETF,
year = 1999,
month = apr,
}
@manual{rfc2597,
author = "J. Heinanen and F. Baker and W. Weiss and J. Wroclawski",
title = "{A}ssured Forwarding {PHB} Group",
note = "{RFC~2597}",
organization = IETF,
URL = "\url{http://www.ietf.org/rfc/rfc2597.txt}",
year = 1999,
month = jun,
}
@manual{rfc2582,
author = "Floyd, S. and Henderson, T.",
title = "{The NewReno Modification to TCP's Fast Recovery Algorithm}",
note = {RFC 2582},
organization = IETF,
year = 1999,
month = apr,
}
@manual{rfc2608,
author="Guttman, E. and Perkins, C. and Veizades, J. and Day, M.",
title="Service Location Protocol, Version 2",
organization = ietf,
note = {RFC 2608},
month=jun,
year=1999,
abstract="The Service Location Protocol provides a scalable
framework for the discovery and selection of network
services. Using this protocol, computers using the Internet
need little or no static configuration of network services
for network based applications. This is especially
important as computers become more portable, and users less
tolerant or able to fulfill the demands of network system
administration.",
URL="ftp://ftp.isi.edu/in-notes/rfc2608.txt",
entryby=Sc
}
@manual{rfc2616,
author = "R. Fielding and J. Gettys and J. Mogul and H. Frystyk and L. Masinter and P. Leach and T. Berners-Lee",
title = "Hyptertext Transfer Protocol -- {HTTP/1.1}",
year = 1999,
month = jun,
organization = IETF,
note = {RFC 2616}
}
@manual{rfc2622,
title = {Routing Policy Specification Language (RPSL)},
author = {Alaettinoglu, C. and others},
month = jun,
year = 1999,
note = {RFC 2622},
organization = IETF,
}
@manual{rfc2660,
title = {The Secure HyperText Transfer Protocol},
athor = {Rescorla, E. and Schiffman, A.},
month = aug,
year = 1999,
note = {RFC 2660},
organization = IETF
}
@manual{rfc2663,
title = {IP Network Address Translator (NAT) Terminology and Considerations},
athor = {Srisuresh, P. and Holdrege, M.},
month = aug,
year = 1999,
note = {RFC 2663},
organization = IETF
}
@manual{rfc2692,
title = {SPKI Requirements},
author = {Ellison, C.},
month = sep,
year = 1999,
note = {RFC 2692},
organization = IETF,
}
@manual{rfc2693,
title = {SPKI Certificate Theory},
author = {Ellison, C. and Frantz, B. and Lampson, B. and Rivest, R. and Thomas, B. and Ylonen, T.},
month = sep,
year = 1999,
note = {RFC 2693},
organization = IETF,
}
@manual{rfc2702,
title = {Requirements for Traffic Engineering Over MPLS},
author = {D. Awduche and J. Malcolm and J. Agogbua and M. O'Dell and J. McManus},
month = sep,
year = 1999,
note = {RFC 2702},
organization = IETF,
}
@manual{rfc2756,
title = {Hyper Text Caching Protocol (HTCP/0.0)},
author = {Paul Vixie and Duane Wessels},
month = jan,
year = 2000,
note = {RFC 2756},
organization = IETF,
}
@manual{rfc2782,
title = {A DNS RR for specifying the location of services (DNS SRV)},
author = {A. Gulbrandsen and P. Vixie and L. Esibov},
month = feb,
year = 2000,
note = {RFC 2782},
organization = IETF,
}
@manual{rfc2796,
title = {{BGP} Route Reflection - An Alternative to Full Mesh {IBGP}},
author = {T. Bates and R. Chandra and E. Chen},
month = apr,
year = 2000,
note = {RFC 2796},
organization = IETF,
}
@manual{rfc2821,
author = {J. Klensin},
title = {Simple Mail Transfer Protocol},
month = apr,
year = 2001,
note = {RFC 2821},
organization = IETF
}
@manual{rfc2827,
author = "Paul Ferguson and Daniel Senie",
title = "Network Ingress Filtering",
year = 2000,
month = may,
note = {BCP 38, RFC 2827},
organization = IETF
}
@manual{rfc2858,
author = "Bates T., Rekhter Y., Chandra R. and Katz D.",
title = "Multiprotocol Extensions for BGP-4",
year = 2000,
month = jun,
note = {RFC 2858},
organization = IETF
}