1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
|
Network Working Group S. Ginoza
Request for Comments: 2799 ISI
Category: Informational September 2000
Request for Comments Summary
RFC Numbers 2700-2799
Status of This Memo
This RFC is a slightly annotated list of the 100 RFCs from RFC 2700
through RFCs 2799. This is a status report on these RFCs. This memo
provides information for the Internet community. It does not specify
an Internet standard of any kind. Distribution of this memo is
unlimited.
Copyright Notice
Copyright (C) The Internet Society (YEAR). All Rights Reserved.
Note
Many RFCs, but not all, are Proposed Standards, Draft Standards, or
Standards. Since the status of these RFCs may change during the
standards processing, we note here only that they are on the
standards track. Please see the latest edition of "Internet Official
Protocol Standards" for the current state and status of these RFCs.
In the following, RFCs on the standards track are marked [STANDARDS-
TRACK].
RFC Author Date Title
--- ------ ---- -----
2799 Ginoza Request for Comments Summary
This memo.
2798 Smith Apr 2000 Definition of the
inetOrgPerson LDAP Object
Class
We define a new object class called inetOrgPerson for use in LDAP and
X.500 directory services that extends the X.521 standard
organizationalPerson class to meet these needs. This memo provides
information for the Internet community.
Ginoza Informational [Page 1]
^L
RFC 2799 Summary of 2700-2799 September 2000
2797 Myers Apr 2000 Certificate Management
Messages over CMS
This document defines a Certificate Management protocol using CMS (CMC).
[STANDARDS TRACK]
2796 Bates Apr 2000 BGP Route Reflection - An
Alternative to Full Mesh IBGP
This document describes the use and design of a method known as "Route
Reflection" to alleviate the the need for "full mesh" IBGP. [STANDARDS
TRACK]
2795 Christey Mar 2000 The Infinite Monkey Protocol
Suite (IMPS)
This memo describes a protocol suite which supports an infinite number
of monkeys that sit at an infinite number of typewriters in order to
determine when they have either produced the entire works of William
Shakespeare or a good television show. This memo provides information
for the Internet community.
2794 Calhoun Mar 2000 Mobile IP Network Access
Identifier Extension for IPv4
Our proposal defines a way for the mobile node to identify itself, by
including the NAI along with the Mobile IP Registration Request. This
memo also updates RFC 2290 which specifies the Mobile-IPv4 Configuration
option for IPCP, by allowing the Mobile Node's Home Address field of
this option to be zero. [STANDARDS TRACK]
2793 Hellstrom May 2000 RTP Payload for Text
Conversation
This memo describes how to carry text conversation session contents in
RTP packets. Text conversation session contents are specified in ITU-T
Recommendation T.140. [STANDARDS TRACK]
Ginoza Informational [Page 2]
^L
RFC 2799 Summary of 2700-2799 September 2000
2792 Blaze Mar 2000 DSA and RSA Key and Signature
Encoding for the KeyNote Trust
Management System
This memo describes RSA and DSA key and signature encoding, and binary
key encoding for version 2 of the KeyNote trust-management system. This
memo provides information for the Internet community.
2791 Yu Jul 2000 Scalable Routing Design
Principles
This document identifies major factors affecting routing scalability as
well as basic principles of designing scalable routing for large
networks. This memo provides information for the Internet community.
2790 Waldbusser Mar 2000 Host Resources MIB
This memo obsoletes RFC 1514, the "Host Resources MIB". This memo
extends that specification by clarifying changes based on implementation
and deployment experience and documenting the Host Resources MIB in
SMIv2 format while remaining semantically identical to the existing
SMIv1-based MIB. [STANDARDS TRACK]
2789 Freed Mar 2000 Mail Monitoring MIB
This memo defines a portion of the Management Information Base (MIB) for
use with network management protocols in the Internet community.
Specifically, this memo extends the basic Network Services Monitoring
MIB defined in RFC 2788 [16] to allow monitoring of Message Transfer
Agents (MTAs). It may also be used to monitor MTA components within
gateways. [STANDARDS TRACK]
2788 Freed Mar 2000 Network Services Monitoring
MIB
This document defines a MIB which contains the elements common to the
monitoring of any network service application. [STANDARDS TRACK]
Ginoza Informational [Page 3]
^L
RFC 2799 Summary of 2700-2799 September 2000
2787 Jewell Mar 2000 Definitions of Managed Objects
for the Virtual Router
Redundancy Protocol
This specification defines an extension to the Management Information
Base (MIB) for use with SNMP-based network management. In particular,
it defines objects for configuring, monitoring, and controlling routers
that employ the Virtual Router Redundancy Protocol (VRRP). [STANDARDS
TRACK]
2786 St. Johns Mar 2000 Diffie-Helman USM Key
Management Information
Base and Textual Convention
This memo defines an experimental portion of the Management Information
Base (MIB) for use with network management protocols the Internet
community. In particular, it defines a textual convention for doing
Diffie-Helman key agreement key exchanges an set of objects which extend
the usmUserTable to permit the use of DH key exchange in addition to the
key change method. This memo defines an Experimental Protocol for the
Internet community.
2785 Zuccherato Mar 2000 Methods for Avoiding the
"Small-Subgroup" Attacks on
the Diffie-Hellman Key
Agreement Method for S/MIME
This document will describe the situations relevant to implementations
of S/MIME version 3 in which protection is necessary and the methods
that can be used to prevent these attacks. This memo provides
information for the Internet community.
2784 Farinacci Mar 2000 Generic Routing Encapsulation
(GRE)
This document specifies a protocol for encapsulation of an arbitrary
network layer protocol over another arbitrary network layer protocol.
[STANDARDS TRACK]
Ginoza Informational [Page 4]
^L
RFC 2799 Summary of 2700-2799 September 2000
2783 Mogul Mar 2000 Pulse-Per-Second API for
UNIX-like Operating Systems,
Version 1.0
RFC 1589 did not define an API for managing the PPS facility, leaving
implementors without a portable means for using PPS sources. This
document specifies such an API. This memo provides information for the
Internet community.
2782 Gulbrandsen Feb 2000 A DNS RR for specifying the
location of services (DNS SRV)
This document describes a DNS RR which specifies the location of the
server(s) for a specific protocol and domain. [STANDARDS TRACK]
2781 Hoffman Feb 2000 UTF-16, an encoding of ISO
10646
This document describes the UTF-16 encoding of Unicode/ISO-10646,
addresses the issues of serializing UTF-16 as an octet stream for
transmission over the Internet, discusses MIME charset naming as
described in [CHARSET-REG], and contains the registration for three MIME
charset parameter values: UTF-16BE (big-endian), UTF-16LE (little-
endian), and UTF-16. This memo provides information for the Internet
community.
2780 Bradner Mar 2000 IANA Allocation Guidelines For
Values In the Internet
Protocol and Related Headers
This memo provides guidance for the IANA to use in assigning parameters
for fields in the IPv4, IPv6, ICMP, UDP and TCP protocol headers. This
document specifies an Internet Best Current Practices for the Internet
Community, and requests discussion and suggestions for improvements.
2779 Day Feb 2000 Instant Messaging / Presence
Protocol Requirements
This document defines a minimal set of requirements that IMPP must meet.
This memo provides information for the Internet community.
Ginoza Informational [Page 5]
^L
RFC 2799 Summary of 2700-2799 September 2000
2778 Day Feb 2000 A Model for Presence and
Instant Messaging
This document defines an abstract model for a presence and instant
messaging system. It defines the various entities involved, defines
terminology, and outlines the services provided by the system. This
memo provides information for the Internet community.
2777 Eastlake Feb 2000 Publicly Verifiable Nomcom
Random Selection
This document describes a method for making random selections in such a
way that the unbiased nature of the choice is publicly verifiable. This
memo provides information for the Internet community.
2776 Handley Feb 2000 Multicast-Scope Zone
Announcement Protocol (MZAP)
This document defines a protocol, the Multicast-Scope Zone Announcement
Protocol (MZAP), for discovering the multicast administrative scope
zones that are relevant at a particular location. [STANDARDS TRACK]
2775 Carpenter Feb 2000 Internet Transparency
This document describes the current state of the Internet from the
architectural viewpoint, concentrating on issues of end-to-end
connectivity and transparency.
2774 Nielsen Feb 2000 An HTTP Extension Framework
This document describes a generic extension mechanism for HTTP, which is
designed to address the tension between private agreement and public
specification and to accommodate extension of applications using HTTP
clients, servers, and proxies. This memo defines an Experimental
Protocol for the Internet community.
Ginoza Informational [Page 6]
^L
RFC 2799 Summary of 2700-2799 September 2000
2773 Housley Feb 2000 Encryption using KEA and
SKIPJACK
This document defines a method to encrypt a file transfer using the FTP
specification STD 9, RFC 959, "File Transfer Protocol (FTP)", (October
1985) and RFC 2228, "FTP Security Extensions" (October 1997). This memo
defines an Experimental Protocol for the Internet community.
2772 Rockell Feb 2000 6Bone Backbone Routing
Guidelines
This document provides a set of guidelines for all 6bone routing
equipment operators to use as a reference for efficient and stable
deployment of 6bone routing systems. This memo provides information for
the Internet community.
2771 Finlayson Feb 2000 An Abstract API for Multicast
Address Allocation
This document describes the "abstract service interface" for the dynamic
multicast address allocation service, as seen by applications. This
memo provides information for the Internet community.
2770 Meyer Feb 2000 GLOP Addressing in 233/8
This describes an experimental policy for use of the class D address
space using 233/8 as the experimental statically assigned subset of the
class D address space. This memo defines an Experimental Protocol for
the Internet community.
2769 Villamizar Feb 2000 Routing Policy System
Replication
This document addresses the need to distribute data over multiple
repositories and delegate authority for data subsets to other
repositories without compromising the authorization model established in
Routing Policy System Security RFC. [STANDARDS TRACK]
Ginoza Informational [Page 7]
^L
RFC 2799 Summary of 2700-2799 September 2000
2768 Aiken Feb 2000 Network Policy and Services:
A Report of a Workshop on
Middleware
An ad hoc middleware workshop was held at the International Center for
Advanced Internet Research in December 1998. The need for a more
organized framework for middleware R&D was recognized, and a list of
specific topics needing further work was identified. This memo provides
information for the Internet community.
2767 Tsuchiya Feb 2000 Dual Stack Hosts using the
"Bump-In-the-Stack" Technique
(BIS)
This memo proposes a mechanism of dual stack hosts using the technique
called "Bump-in-the-Stack" in the IP security area. This memo provides
information for the Internet community.
2766 Tsirtsis Feb 2000 Network Address Translation -
Protocol Translation (NAT-PT)
This document specifies an IPv4-to-IPv6 transition mechanism, in
addition to those already specified. [STANDARDS TRACK]
2765 Nordmark Feb 2000 Stateless IP/ICMP Translation
Algorithm (SIIT)
This document specifies a transition mechanism algorithm in addition to
the mechanisms already specified. [STANDARDS TRACK]
2764 Gleeson Feb 2000 A Framework for IP Based
Virtual Private Networks
This document describes a framework for Virtual Private Networks (VPNs)
running across IP backbones. This memo provides information for the
Internet community.
Ginoza Informational [Page 8]
^L
RFC 2799 Summary of 2700-2799 September 2000
2763 Shen Feb 2000 Dynamic Hostname Exchange
Mechanism for IS-IS
This document defines a new TLV which allows the IS-IS routers to flood
their name to system ID mapping information across the IS-IS network.
This memo provides information for the Internet community.
2762 Rosenberg Feb 2000 Sampling of the Group
Membership in RTP
This document discusses mechanisms for sampling of this group membership
table in order to reduce the memory requirements. This memo defines an
Experimental Protocol for the Internet community.
2761 Dunn Feb 2000 Terminology for ATM
Benchmarking
This memo discusses and defines terms associated with performance
benchmarking tests and the results of these tests in the context of
Asynchronous Transfer Mode (ATM) based switching devices. This memo
provides information for the Internet community.
2760 Allman Feb 2000 Ongoing TCP Research Related
to Satellites
This document outlines possible TCP enhancements that may allow TCP to
better utilize the available bandwidth provided by networks containing
satellite links. This memo provides information for the Internet
community.
2759 Zorn Jan 2000 Microsoft PPP CHAP Extensions,
Version 2
This document describes version two of Microsoft's PPP CHAP dialect
(MS-CHAP-V2). MS-CHAP-V2 is similar to, but incompatible with, MS-CHAP
version one (MS-CHAP-V1). This memo provides information for the
Internet community.
Ginoza Informational [Page 9]
^L
RFC 2799 Summary of 2700-2799 September 2000
2758 White Feb 2000 Definitions of Managed Objects
for Service Level Agreements
Performance Monitoring
This memo defines a Management Information Base (MIB) for performance
monitoring of Service Level Agreements (SLAs) defined via policy
definitions. This memo defines an Experimental Protocol for the
Internet community.
2757 Montenegro Jan 2000 Long Thin Networks
Our goal is to identify a TCP that works for all users, including users
of long thin networks. This memo provides information for the Internet
community.
2756 Vixie Jan 2000 Hyper Text Caching Protocol
(HTCP/0.0)
This document describes HTCP, a protocol for discovering HTTP caches and
cached data, managing sets of HTTP caches, and monitoring cache
activity. This is an experimental protocol, one among several proposals
to perform these functions. This memo defines an Experimental Protocol
for the Internet community.
2755 Chiu Jan 2000 Security Negotiation for
WebNFS
This document describes a protocol for a WebNFS client (RFC2054) to
negotiate the desired security mechanism with a WebNFS server (RFC2055)
before the WebNFS client falls back to the MOUNT v3 protocol (RFC1813).
This document is provided so that people can write compatible
implementations. This memo provides information for the Internet
community.
Ginoza Informational [Page 10]
^L
RFC 2799 Summary of 2700-2799 September 2000
2754 Alaettinoglu Jan 2000 RPS IANA Issues
RPS Security requires certain RPSL objects in the IRR to be
hierarchically delegated. The set of objects that are at the root of
this hierarchy needs to be created and digitally signed by IANA. This
paper presents these seed objects and lists operations required from
IANA. This memo provides information for the Internet community.
2753 Yavatkar Jan 2000 A Framework for Policy-based
Admission Control
This document is concerned with specifying a framework for providing
policy-based control over admission control decisions. This memo
provides information for the Internet community.
2752 Yadav Jan 2000 Identity Representation for
RSVP
This document describes the representation of identity information in
POLICY_DATA object for supporting policy based admission control in
RSVP. [STANDARDS TRACK]
2751 Herzog Jan 2000 Signaled Preemption Priority
Policy Element
This document describes a preemption priority policy element for use by
signaled policy based admission protocols (such as RSVP and COPS).
[STANDARDS TRACK]
2750 Herzog Jan 2000 RSVP Extensions for Policy
Control
This memo presents a set of extensions for supporting generic policy
based admission control in RSVP. [STANDARDS TRACK]
Ginoza Informational [Page 11]
^L
RFC 2799 Summary of 2700-2799 September 2000
2749 Herzog Jan 2000 COPS usage for RSVP
This document describes usage directives for supporting COPS policy
services in RSVP environments. [STANDARDS TRACK]
2748 Durham Jan 2000 The COPS (Common Open Policy
Service) Protocol
This document describes a simple client/server model for supporting
policy control over QoS signaling protocols. [STANDARDS TRACK]
2747 Baker Jan 2000 RSVP Cryptographic
Authentication
This document describes the format and use of RSVP's INTEGRITY object to
provide hop-by-hop integrity and authentication of RSVP messages.
[STANDARDS TRACK]
2746 Terzis Jan 2000 RSVP Operation Over IP Tunnels
This document describes an approach for providing RSVP protocol services
over IP tunnels. [STANDARDS TRACK]
2745 Terzis Jan 2000 RSVP Diagnostic Messages
This document specifies the RSVP diagnostic facility, which allows a
user to collect information about the RSVP state along a path.
[STANDARDS TRACK]
2744 Wray Jan 2000 Generic Security Service API
Version 2 : C-bindings
This document specifies C language bindings for Version 2, Update 1 of
the Generic Security Service Application Program Interface (GSS-API),
which is described at a language-independent conceptual level in RFC
2743. [STANDARDS TRACK]
Ginoza Informational [Page 12]
^L
RFC 2799 Summary of 2700-2799 September 2000
2743 Linn Jan 2000 Generic Security Service
Application Program Interface
Version 2, Update 1
This memo obsoletes [RFC-2078], making specific, incremental changes in
response to implementation experience and liaison requests. It is
intended, therefore, that this memo or a successor version thereto will
become the basis for subsequent progression of the GSS-API specification
on the standards track. [STANDARDS TRACK]
2742 Heintz Jan 2000 Definitions of Managed Objects
for Extensible SNMP Agents
This memo defines a portion of the Management Information Base (MIB) for
use with network management protocols in the Internet community. In
particular, it describes objects managing SNMP agents that use the Agent
Extensibility (AgentX) Protocol. [STANDARDS TRACK]
2741 Daniele Jan 2000 Agent Extensibility (AgentX)
Protocol Version 1
This memo defines a standardized framework for extensible SNMP agents.
[STANDARDS TRACK]
2740 Coltun Dec 1999 OSPF for IPv6
This document describes the modifications to OSPF to support version 6
of the Internet Protocol (IPv6). [STANDARDS TRACK]
2739 Small Jan 2000 Calendar Attributes for vCard
and LDAP
This memo defines three mechanisms for obtaining a URI to a user's
calendar and free/busy time. [STANDARDS TRACK]
Ginoza Informational [Page 13]
^L
RFC 2799 Summary of 2700-2799 September 2000
2738 Klyne Dec 1999 Corrections to "A Syntax for
Describing Media Feature Sets"
In RFC 2533, "A Syntax for Describing Media Feature Sets", an expression
format is presented for describing media feature capabilities using
simple media feature tags. This memo contains two corrections to that
specification: one fixes an error in the formal syntax specification,
and the other fixes an error in the rules for reducing feature
comparison predicates. [STANDARDS TRACK]
2737 McCloghrie Dec 1999 Entity MIB (Version 2)
This memo defines a portion of the Management Information Base (M for
use with network management protocols in the Internet communi In
particular, it describes managed objects used for managing multiple
logical and physical entities managed by a single SNMP agent.
[STANDARDS TRACK]
2736 Handley Dec 1999 Guidelines for Writers of RTP
Payload Format Specifications
This document provides general guidelines aimed at assisting the authors
of RTP Payload Format specifications in deciding on good formats. This
document specifies an Internet Best Current Practices for the Internet
Community, and requests discussion and suggestions for improvements.
2735 Fox Dec 1999 NHRP Support for Virtual
Private Networks
The NBMA Next Hop Resolution Protocol (NHRP) is used to determine the
NBMA subnetwork addresses of the "NBMA next hop" towards a public
internetworking layer address. This document describes the enhancements
necessary to enable NHRP to perform the same function for private
internetworking layer addresses available within the framework of a
Virtual Private Network (VPN) service on a shared NBMA network.
[STANDARDS TRACK]
2734 Johansson Dec 1999 IPv4 over IEEE 1394
This document specifies how to use IEEE Std 1394-1995, Standard for a
High Performance Serial Bus (and its supplements), for the transport of
Internet Protocol Version 4 (IPv4) datagrams; it defines the necessary
methods, data structures and codes for that purpose. [STANDARDS TRACK]
Ginoza Informational [Page 14]
^L
RFC 2799 Summary of 2700-2799 September 2000
2733 Rosenberg Dec 1999 An RTP Payload Format for
Generic Forward Error
Correction
This document specifies a payload format for generic forward error
correction of media encapsulated in RTP. [STANDARDS TRACK]
2732 Hinden Dec 1999 Format for Literal IPv6
Addresses in URL's
This document defines the format for literal IPv6 Addresses in URL's for
implementation in World Wide Web browsers. [STANDARDS TRACK]
2731 Kunze Dec 1999 Encoding Dublin Core Metadata
in HTML
The Dublin Core is a small set of metadata elements for describing
information resources. This document explains how these elements are
expressed using the META and LINK tags of HTML. This memo provides
information for the Internet community.
2730 Hanna Dec 1999 Multicast Address Dynamic
Client Allocation Protocol
(MADCAP)
This document defines a protocol, Multicast Address Dynamic Client
Allocation Protocol (MADCAP), that allows hosts to request multicast
addresses from multicast address allocation servers. [STANDARDS TRACK]
2729 Bagnall Dec 1999 Taxonomy of Communication
Requirements for Large-scale
Multicast Applications
The intention of this memo is to define a classification system for the
communication requirements of any large-scale multicast application
(LSMA). This memo provides information for the Internet community.
Ginoza Informational [Page 15]
^L
RFC 2799 Summary of 2700-2799 September 2000
2728 Panabaker Nov 1999 The Transmission of IP Over
the Vertical Blanking Interval
of a Television Signal
This document describes a method for broadcasting IP data in a
unidirectional manner using the vertical blanking interval of television
signals. [STANDARDS TRACK]
2727 Galvin Feb 2000 IAB and IESG Selection,
Confirmation, and Recall
Process: Operation of the
Nominating and Recall
Committees
The process by which the members of the IAB and IESG are selected,
confirmed, and recalled is specified. This document is a self-
consistent, organized compilation of the process as it was known at the
time of publication. This document specifies an Internet Best Current
Practices for the Internet Community, and requests discussion and
suggestions for improvements.
2726 Zsako Dec 1999 PGP Authentication for RIPE
Database Updates
This document presents the proposal for a stronger authentication method
of the updates of the RIPE database based on digital signatures.
[STANDARDS TRACK]
2725 Villamizar Dec 1999 Routing Policy System Security
The implementation and deployment of a routing policy system must
maintain some degree of integrity to be of any operational use. This
document addresses the need to assure integrity of the data by providing
an authentication and authorization model. [STANDARDS TRACK]
2724 Handelman Oct 1999 RTFM: New Attributes for
Traffic Flow Measurement
This document discusses RTFM flows and the attributes which they can
have, so as to provide a logical framework for extending the
architecture by adding new attributes. This memo defines an
Experimental Protocol for the Internet community.
Ginoza Informational [Page 16]
^L
RFC 2799 Summary of 2700-2799 September 2000
2723 Brownlee Oct 1999 SRL: A Language for Describing
Traffic Flows and Specifying
Actions for Flow Groups
This document describes a language for specifying rulesets, i.e.
configuration files which may be loaded into a traffic flow meter so as
to specify which traffic flows are measured by the meter, and the
information it will store for each flow. This memo provides information
for the Internet community.
2722 Brownlee Oct 1999 Traffic Flow Measurement:
Architecture
This document provides a general framework for describing network
traffic flows, presents an architecture for traffic flow measurement and
reporting, discusses how this relates to an overall network traffic flow
architecture and indicates how it can be used within the Internet. This
memo provides information for the Internet community.
2721 Brownlee Oct 1999 RTFM: Applicability Statement
This document provides an overview covering all aspects of Realtime
Traffic Flow Measurement, including its area of applicability and its
limitations. This memo provides information for the Internet community.
2720 Brownlee Oct 1999 Traffic Flow Measurement:
Meter MIB
This document defines a Management Information Base (MIB) for use in
controlling an RTFM Traffic Meter, in particular for specifying the
flows to be measured. It also provides an efficient mechanism for
retrieving flow data from the meter using SNMP. Security issues
concerning the operation of traffic meters are summarised. [STANDARDS
TRACK]
2719 Ong Oct 1999 Framework Architecture for
Signaling Transport
This document defines an architecture framework and functional
requirements for transport of signaling information over IP. This memo
provides information for the Internet community.
Ginoza Informational [Page 17]
^L
RFC 2799 Summary of 2700-2799 September 2000
2718 Masinter Nov 1999 Guidelines for new URL Schemes
This document provides guidelines for the definition of new URL schemes.
This memo provides information for the Internet community.
2717 Petke Nov 1999 Registration Procedures for
URL Scheme Names
This document defines the process by which new URL scheme names are
registered. This document specifies an Internet Best Current Practices
for the Internet Community, and requests discussion and suggestions for
improvements.
2716 Aboba Oct 1999 PPP EAP TLS Authentication
Protocol
The Point-to-Point Protocol (PPP) provides a standard method for
transporting multi-protocol datagrams over point-to-point links.The
Extensible Authentication Protocol (EAP) is a PPP extension that
provides support for additional authentication methods within PPP. This
memo defines an Experimental Protocol for the Internet community.
2715 Thaler Oct 1999 Interoperability Rules for
Multicast Routing Protocols
The rules described in this document will allow efficient interoperation
among multiple independent multicast routing domains. This memo
provides information for the Internet community.
2714 Ryan Oct 1999 Schema for Representing CORBA
Object References in an LDAP
Directory
This document defines the schema for representing CORBA object
references in an LDAP directory. This memo provides information for the
Internet community.
Ginoza Informational [Page 18]
^L
RFC 2799 Summary of 2700-2799 September 2000
2713 Ryan Oct 1999 Schema for Representing
Java(tm) Objects in an
LDAP Directory
This document defines the schema for representing Java(tm) objects in an
LDAP directory. This memo provides information for the Internet
community.
2712 Medvinsky Oct 1999 Addition of Kerberos Cipher
Suites to Transport Layer
Security (TLS)
This document proposes the addition of new cipher suites to the TLS
protocol to support Kerberos-based authentication. [STANDARDS TRACK]
2711 Partridge Oct 1999 IPv6 Router Alert Option
This memo describes a new IPv6 Hop-by-Hop Option type that alerts
transit routers to more closely examine the contents of an IP datagram.
[STANDARDS TRACK]
2710 Deering Oct 1999 Multicast Listener Discovery
(MLD) for IPv6
This document specifies the protocol used by an IPv6 router to discover
the presence of multicast listeners (that is, nodes wishing to receive
multicast packets) on its directly attached links, and to discover
specifically which multicast addresses are of interest to those
neighboring nodes. [STANDARDS TRACK]
2709 Srisuresh Oct 1999 Security Model with
Tunnel-mode IPsec for NAT
Domains
This document describes a security model by which tunnel-mode IPsec
security can be architected on NAT devices. This memo provides
information for the Internet community.
Ginoza Informational [Page 19]
^L
RFC 2799 Summary of 2700-2799 September 2000
2708 Bergman Nov 1999 Job Submission Protocol
Mapping Recommendations
for the Job Monitoring MIB
This document defines the recommended mapping for many currently popular
Job submission protocols to objects and attributes in the Job Monitoring
MIB. This memo provides information for the Internet community.
2707 Bergman Nov 1999 Job Monitoring MIB - V1.0
This document provides a printer industry standard SNMP MIB for (1)
monitoring the status and progress of print jobs (2) obtaining resource
requirements before a job is processed, (3) monitoring resource
consumption while a job is being processed and (4) collecting resource
accounting data after the completion of a job. This memo provides
information for the Internet community.
2706 Eastlake Oct 1999 ECML v1: Field Names for
E-Commerce
A standard set of information fields is defined as the first version of
an Electronic Commerce Modeling Language (ECML) so that this task can be
more easily automated, for example by wallet software that could fill in
fields. This memo provides information for the Internet community.
2705 Arango Oct 1999 Media Gateway Control Protocol
(MGCP) Version 1.0
This document describes an application programming interface and a
corresponding protocol (MGCP) for controlling Voice over IP (VoIP)
Gateways from external call control elements. MGCP assumes a call
control architecture where the call control "intelligence" is outside
the gateways and handled by external call control elements. This memo
provides information for the Internet community.
2704 Blaze Sep 1999 The KeyNote Trust-Management
System Version 2
This memo describes version 2 of the KeyNote trust-management system.It
specifies the syntax and semantics of KeyNote `assertions', describes
`action attribute' processing, and outlines the application architecture
into which a KeyNote implementation can be fit. This memo provides
information for the Internet community.
Ginoza Informational [Page 20]
^L
RFC 2799 Summary of 2700-2799 September 2000
2703 Klyne Sep 1999 Protocol-independent Content
Negotiation Framework
This memo sets out terminology, an abstract framework and goals for
protocol-independent content negotiation, and identifies some technical
issues which may need to be addressed. This memo provides information
for the Internet community.
2702 Awduche Sep 1999 Requirements for Traffic
Engineering Over MPLS
This document presents a set of requirements for Traffic Engineering
over Multiprotocol Label Switching (MPLS). It identifies the functional
capabilities required to implement policies that facilitate efficient
and reliable network operations in an MPLS domain. This memo provides
information for the Internet community.
2701 Malkin Sep 1999 Nortel Networks Multi-link
Multi-node PPP Bundle
Discovery Protocol
This document specifies a standard way for Multi-link PPP to operate
across multiple nodes. This memo provides information for the Internet
community.
2700 Reynolds Aug 2000 Internet Official Protocol
Standards
This memo describes the current state of standardization of protocols
used in the Internet as determined by the Internet Engineering Task
Force (IETF). [STANDARDS TRACK]
Security Considerations
Security issues are not discussed in this memo.
Ginoza Informational [Page 21]
^L
RFC 2799 Summary of 2700-2799 September 2000
Author's Address
Sandy Ginoza
University of Southern California
Information Sciences Institute
4676 Admiralty Way
Marina del Rey, CA 90292
Phone: (310) 822-1511
EMail: ginoza@isi.edu
Ginoza Informational [Page 22]
^L
RFC 2799 Summary of 2700-2799 September 2000
Full Copyright Statement
Copyright (C) The Internet Society (YEAR). All Rights Reserved.
This document and translations of it may be copied and furnished to
others, and derivative works that comment on or otherwise explain it
or assist in its implementation may be prepared, copied, published
and distributed, in whole or in part, without restriction of any
kind, provided that the above copyright notice and this paragraph are
included on all such copies and derivative works. However, this
document itself may not be modified in any way, such as by removing
the copyright notice or references to the Internet Society or other
Internet organizations, except as needed for the purpose of
developing Internet standards in which case the procedures for
copyrights defined in the Internet Standards process must be
followed, or as required to translate it into languages other than
English.
The limited permissions granted above are perpetual and will not be
revoked by the Internet Society or its successors or assigns.
This document and the information contained herein is provided on an
"AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING
TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION
HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Acknowledgement
Funding for the RFC Editor function is currently provided by the
Internet Society.
Ginoza Informational [Page 23]
^L
|