1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
|
Network Working Group V. Mammoliti
Request for Comments: 4679 G. Zorn
Category: Informational Cisco Systems
P. Arberg
Redback Networks, Inc.
R. Rennison
ECI Telecom
September 2006
DSL Forum Vendor-Specific RADIUS Attributes
Status of this Memo
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 (2006).
IESG Note
This RFC is not a candidate for any level of Internet Standard. The
IETF disclaims any knowledge of the fitness of this RFC for any
purpose and in particular notes that the decision to publish is not
based on IETF review for such things as security, congestion control,
or inappropriate interaction with deployed protocols. The RFC Editor
has chosen to publish this document at its discretion. Readers of
this document should exercise caution in evaluating its value for
implementation and deployment. See RFC 3932 for more information.
Abstract
This document describes the set of Remote Authentication Dial-In User
Service Vendor-Specific Attributes (RADIUS VSAs) defined by the DSL
Forum.
These attributes are designed to transport Digital Subscriber Line
(DSL) information that is not supported by the standard RADIUS
attribute set. It is expected that this document will be updated if
and when the DSL Forum defines additional vendor-specific attributes,
since its primary purpose is to provide a reference for DSL equipment
vendors wishing to interoperate with other vendors' products.
Mammoliti, et al. Informational [Page 1]
^L
RFC 4679 DSL Forum RADIUS VSA September 2006
Table of Contents
1. Introduction ....................................................3
2. Terminology .....................................................3
2.1. Requirements Language ......................................3
2.2. Technical Terms and Acronyms ...............................3
3. Attributes ......................................................5
3.1. DSL Forum RADIUS VSA Definition ............................5
3.2. DSL Forum Vendor Specific Sub-Attribute Encoding ...........6
3.3. Sub-attribute Definitions ..................................6
3.3.1. Agent-Circuit-Id ....................................6
3.3.2. Agent-Remote-Id .....................................8
3.3.3. Actual-Data-Rate-Upstream ...........................9
3.3.4. Actual-Data-Rate-Downstream .........................9
3.3.5. Minimum-Data-Rate-Upstream .........................10
3.3.6. Minimum-Data-Rate-Downstream .......................11
3.3.7. Attainable-Data-Rate-Upstream ......................11
3.3.8. Attainable-Data-Rate-Downstream ....................12
3.3.9. Maximum-Data-Rate-Upstream .........................13
3.3.10. Maximum-Data-Rate-Downstream ......................13
3.3.11. Minimum-Data-Rate-Upstream-Low-Power ..............14
3.3.12. Minimum-Data-Rate-Downstream-Low-Power ............15
3.3.13. Maximum-Interleaving-Delay-Upstream ...............16
3.3.14. Actual-Interleaving-Delay-Upstream ................16
3.3.15. Maximum-Interleaving-Delay-Downstream .............17
3.3.16. Actual-Interleaving-Delay-Downstream ..............18
3.3.17. Access-Loop-Encapsulation .........................19
3.3.18. IWF-Session .......................................20
4. Table of Attributes ............................................21
5. Security Considerations ........................................21
6. References .....................................................22
6.1. Normative References ......................................22
6.2. Informative References ....................................22
Mammoliti, et al. Informational [Page 2]
^L
RFC 4679 DSL Forum RADIUS VSA September 2006
1. Introduction
The DSL Forum has created additional RADIUS [RFC2865] [RFC2866]
vendor-specific attributes to carry DSL line identification and
characterization information. This information is forwarded from the
Access Node/DSLAM to the BRAS via Vendor-Specific PPPoE Tags
[RFC2516], DHCP Relay Options [RFC3046], and Vendor-Specific
Information Suboptions [RFC4243]. This document describes the
subscriber line identification and characterization information and
its mapping to RADIUS VSAs by the BRAS.
The information acquired may be used to provide authentication and
accounting functionality. It may also be collected and used for
management and troubleshooting purposes.
2. Terminology
The following sections define the usage and meaning of certain
specialized terms in the context of this document.
2.1. Requirements Language
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in [RFC2119].
2.2. Technical Terms and Acronyms
AAL5
ATM Adaption Layer 5 [ITU.I363-5.1996]
Access Node/DSLAM
The Access Node/DSLAM is a DSL signal terminator that contains a
minimum of one Ethernet interface that serves as its northbound
interface into which it aggregates traffic from several
Asynchronous Transfer Mode (ATM)-based (subscriber ports) or
Ethernet-based southbound interfaces.
BNG
Broadband Network Gateway. A BNG is an IP edge router where
bandwidth and QoS policies are applied; the functions performed by
a BRAS are a superset of those performed by a BNG.
Mammoliti, et al. Informational [Page 3]
^L
RFC 4679 DSL Forum RADIUS VSA September 2006
BRAS
Broadband Remote Access Server. A BRAS is a BNG and is the
aggregation point for the subscriber traffic. It provides
aggregation capabilities (e.g., IP, PPP, Ethernet) between the
access network and the core network. Beyond its aggregation
function, the BRAS is also an injection point for policy
management and IP QoS in the access network.
DSL
Digital Subscriber Line. DSL is a technology that allows digital
data transmission over wires in the local telephone network.
DSLAM
Digital Subscriber Line Access Multiplexer. DSLAM is a device
that terminates DSL subscriber lines. The data is aggregated and
forwarded to ATM- or Ethernet-based aggregation networks.
FCS
Frame Check Sequence. The FCS is a checksum added to an Ethernet
frame for error detection/correction purposes.
IPoA
IP over ATM
IWF
Interworking Function. The set of functions required for
interconnecting two networks of different technologies (e.g., ATM
and Ethernet). IWF is utilized to enable the carriage of PPP over
ATM (PPPoA) traffic over PPPoE.
LLC
Logical Link Control
Mammoliti, et al. Informational [Page 4]
^L
RFC 4679 DSL Forum RADIUS VSA September 2006
3. Attributes
The following subsections describe the Attributes defined by this
document. These Attributes MAY be transmitted in one or more RADIUS
Attributes of type Vendor-Specific [RFC2865]. More than one
attribute MAY be transmitted in a single Vendor-Specific Attribute;
if this is done, the attributes SHOULD be packed as a sequence of
Vendor-Type/Vendor-Length/Value triples following the initial Type,
Length, and Vendor-Id fields.
3.1. DSL Forum RADIUS VSA Definition
Description
This Attribute functions as a "container", encapsulating one or
more vendor-specific sub-attributes; the encoding follows the
recommendations in [RFC2865].
A summary of the generic DSL Forum VSA format is shown below. The
fields are transmitted from left to right.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type | Length | Vendor-Id
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Vendor-Id (cont) | Sub-Attribute(s)...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Type
26 for Vendor-Specific
Length
This field MUST be set equal to the sum of the Vendor-Length
fields of the sub-attributes contained in the Vendor-Specific
Attribute, plus six (Type + Length + Vendor-Id).
Vendor-Id
This field MUST be set to decimal 3561, the enterprise number
assigned to the ADSL Forum [IANA].
Sub-Attributes
This field MUST contain one or more DSL Forum Vendor-Specific
sub-attributes, as specified below.
Mammoliti, et al. Informational [Page 5]
^L
RFC 4679 DSL Forum RADIUS VSA September 2006
3.2. DSL Forum Vendor Specific Sub-Attribute Encoding
A summary of the sub-attribute format is shown below. The fields are
transmitted from left to right.
0 1 2
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Vendor-Type | Vendor-Length | Value...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Vendor-Type
The Vendor-Type field is one octet in length and contains the
sub-attribute type, as assigned by the DSL Forum.
Vendor-Length
The Vendor-Length field is one octet and indicates the length of
the entire sub-attribute, including the Vendor-Type,
Vendor-Length, and Value fields.
Value
The Value field is zero or more octets and contains information
specific to the sub-attribute. The format and length of the Value
field is determined by the Vendor-Type and Vendor-Length fields.
The format of the value field is one of 2 data types, string or
integer [RFC2865].
3.3. Sub-attribute Definitions
The following sub-sections define the DSL Forum vendor-specific sub-
attributes.
3.3.1. Agent-Circuit-Id
Description
This Attribute contains information describing the subscriber
agent circuit identifier corresponding to the logical access loop
port of the Access Node/DSLAM from which a subscriber's requests
are initiated. It MAY be present in both Access-Request and
Accounting-Request packets.
A summary of the Agent-Circuit-Id Attribute format is shown below.
The fields are transmitted from left to right.
Mammoliti, et al. Informational [Page 6]
^L
RFC 4679 DSL Forum RADIUS VSA September 2006
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Vendor-Type | Vendor-Length | String...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Vendor-Type
1 for Agent-Circuit-Id
Vendor-Length
<= 65
String
The String field contains information about the Access-Node to
which the subscriber is attached, along with an identifier for the
subscriber's DSL port on that Access-Node.
The exact syntax of the string is implementation dependent;
however, a typical practice is to subdivide it into two or more
space-separated components, one to identify the Access-Node and
another the subscriber line on that node, with perhaps an
indication of whether that line is Ethernet or ATM. Example
formats for this string are shown below.
"Access-Node-Identifier atm slot/port:vpi.vci"
(when ATM/DSL is used)
"Access-Node-Identifier eth slot/port[:vlan-id]"
(when Ethernet/DSL is used)
An example showing the slot and port field encoding is given
below:
"[Relay-identifier] atm 3/0:100.33"
(slot = 3, port = 0, vpi = 100, vci = 33)
The Access-Node-Identifier is a unique ASCII string that does not
include 'space' characters. The syntax of the slot and port
fields reflects typical practices currently in place. The slot
identifier does not exceed 6 characters in length, and the port
identifier does not exceed 3 characters in length using a '\' as a
delimiter.
Mammoliti, et al. Informational [Page 7]
^L
RFC 4679 DSL Forum RADIUS VSA September 2006
The exact manner in which slots are identified is Access
Node/DSLAM implementation dependent. The vpi, vci, and vlan-id
fields (when applicable) are related to a given access loop
(U-interface).
3.3.2. Agent-Remote-Id
Description
The Agent-Remote-Id Attribute contains an operator-specific,
statically configured string that uniquely identifies the
subscriber on the associated access loop of the Access Node/DSLAM.
In a typical subscriber environment, multiple attributes can be
used to identify the user, among others: Username (for example, as
defined on a PPP client); Agent-Circuit-Id (a static, pre-defined
string sent from the Access Node/DSLAM); Agent-Remote-Id (an
operator-defined string configured on and sent by the Access
Node/DSLAM).
This Attribute MAY be included in both Access-Request and
Accounting-Request packets.
A summary of the Agent-Remote-Id Attribute format is shown below.
The fields are transmitted from left to right.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Vendor-Type | Vendor-Length | String...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Vendor-Type
2 for Agent-Remote-Id
Vendor-Length
<= 65
String
This value of this field is entirely open to the service
provider's discretion. For example, it MAY contain a subscriber
billing identifier or telephone number.
Mammoliti, et al. Informational [Page 8]
^L
RFC 4679 DSL Forum RADIUS VSA September 2006
3.3.3. Actual-Data-Rate-Upstream
Description
This Attribute contains the actual upstream train rate of a
subscriber's synchronized DSL link. It MAY be included in both
Access-Request and Accounting-Request packets.
A summary of the Actual-Data-Rate-Upstream Attribute format is shown
below. The fields are transmitted from left to right.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Vendor-Type | Vendor-Length | Value
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Value (cont'd.) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Vendor-Type
129 (0x81) for Actual-Data-Rate-Upstream
Vendor-Length
6
Value
This field contains a 4-byte unsigned integer, indicating the
subscriber's actual data rate upstream of a synchronized DSL link.
The rate is coded in bits per second.
3.3.4. Actual-Data-Rate-Downstream
Description
This Attribute contains the actual downstream train rate of a
subscriber's synchronized DSL link. It MAY be included in both
Access-Request and Accounting-Request packets.
A summary of the Actual-Data-Rate-Downstream Attribute format is
shown below. The fields are transmitted from left to right.
Mammoliti, et al. Informational [Page 9]
^L
RFC 4679 DSL Forum RADIUS VSA September 2006
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Vendor-Type | Vendor-Length | Value
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Value (cont'd.) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Vendor-Type
130 (0x82) for Actual-Data-Rate-Downstream
Vendor-Length
6
Value
This field contains a 4-byte unsigned integer, indicating the
subscriber's actual data rate downstream of a synchronized DSL
link. The rate is coded in bits per second.
3.3.5. Minimum-Data-Rate-Upstream
Description
This Attribute contains the subscriber's operator-configured
minimum upstream data rate. It MAY be included in Accounting-
Request packets.
A summary of the Minimum-Data-Rate-Upstream Attribute format is shown
below. The fields are transmitted from left to right.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Vendor-Type | Vendor-Length | Value
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Value (cont'd.) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Vendor-Type
131 (0x83) for Minimum-Data-Rate-Upstream
Vendor-Length
6
Mammoliti, et al. Informational [Page 10]
^L
RFC 4679 DSL Forum RADIUS VSA September 2006
Value
This field contains a 4-byte unsigned integer, indicating the
subscriber's minimum upstream data rate (as configured by the
operator). The rate is coded in bits per second.
3.3.6. Minimum-Data-Rate-Downstream
Description
This Attribute contains the subscriber's operator-configured
minimum downstream data rate. It MAY be included in Accounting-
Request packets.
A summary of the Minimum-Data-Rate-Downstream Attribute format is
shown below. The fields are transmitted from left to right.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Vendor-Type | Vendor-Length | Value
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Value (cont'd.) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Vendor-Type
132 (0x84) for Minimum-Data-Rate-Downstream
Vendor-Length
6
Value
This field contains a 4-byte unsigned integer, indicating the
subscriber's minimum downstream data rate (as configured by the
operator). The rate is coded in bits per second.
3.3.7. Attainable-Data-Rate-Upstream
Description
This Attribute contains the subscriber's attainable upstream data
rate. It MAY be included in Accounting-Request packets.
A summary of the Attainable-Data-Rate-Upstream Attribute format is
shown below. The fields are transmitted from left to right.
Mammoliti, et al. Informational [Page 11]
^L
RFC 4679 DSL Forum RADIUS VSA September 2006
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Vendor-Type | Vendor-Length | Value
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Value (cont'd.) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Vendor-Type
133 (0x85) for Attainable-Data-Rate-Upstream
Vendor-Length
6
Value
This field contains a 4-byte unsigned integer, indicating the
subscriber's actual DSL attainable upstream data rate. The rate
is coded in bits per second.
3.3.8. Attainable-Data-Rate-Downstream
Description
This Attribute contains the subscriber's attainable downstream
data rate. It MAY be included in Accounting-Request packets.
A summary of the Attainable-Data-Rate-Downstream Attribute format is
shown below. The fields are transmitted from left to right.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Vendor-Type | Vendor-Length | Value
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Value (cont'd.) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Vendor-Type
134 (0x86) for Attainable-Data-Rate-Downstream
Vendor-Length
6
Mammoliti, et al. Informational [Page 12]
^L
RFC 4679 DSL Forum RADIUS VSA September 2006
Value
This field contains a 4-byte unsigned integer, indicating the
subscriber's actual DSL attainable downstream data rate. The rate
is coded in bits per second.
3.3.9. Maximum-Data-Rate-Upstream
Description
This Attribute contains the subscriber's maximum upstream data
rate, as configured by the operator. It MAY be included in
Accounting-Request packets.
A summary of the Maximum-Data-Rate-Upstream Attribute format is shown
below. The fields are transmitted from left to right.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Vendor-Type | Vendor-Length | Value
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Value (cont'd.) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Vendor-Type
135 (0x87) for Maximum-Data-Rate-Upstream
Vendor-Length
6
Value
This field is a 4-byte unsigned integer, indicating the numeric
value of the subscriber's DSL maximum upstream data rate. The
rate is coded in bits per second.
3.3.10. Maximum-Data-Rate-Downstream
Description
This Attribute contains the subscriber's maximum downstream data
rate, as configured by the operator. It MAY be included in
Accounting-Request packets.
Mammoliti, et al. Informational [Page 13]
^L
RFC 4679 DSL Forum RADIUS VSA September 2006
A summary of the Maximum-Data-Rate-Downstream Attribute format is
shown below. The fields are transmitted from left to right.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Vendor-Type | Vendor-Length | Value
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Value (cont'd.) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Vendor-Type
136 (0x88) for Maximum-Data-Rate-Downstream
Vendor-Length
6
Value
This field is a 4-byte unsigned integer, indicating the numeric
value of the subscriber's DSL maximum downstream data rate. The
rate is coded in bits per second.
3.3.11. Minimum-Data-Rate-Upstream-Low-Power
Description
This Attribute contains the subscriber's minimum upstream data
rate in low power state, as configured by the operator. It MAY be
included in Accounting-Request packets.
A summary of the Minimum-Data-Rate-Upstream-Low-Power Attribute
format is shown below. The fields are transmitted from left to
right.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Vendor-Type | Vendor-Length | Value
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Value (cont'd.) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Vendor-Type
137 (0x89) for Minimum-Data-Rate-Upstream-Low-Power
Mammoliti, et al. Informational [Page 14]
^L
RFC 4679 DSL Forum RADIUS VSA September 2006
Vendor-Length
6
Value
This field is a 4-byte unsigned integer, indicating the numeric
value of the subscriber's DSL minimum upstream data rate when in
low power state (L1/L2). The rate is coded in bits per second.
3.3.12. Minimum-Data-Rate-Downstream-Low-Power
Description
This Attribute contains the subscriber's minimum downstream data
rate in low power state, as configured by the operator. It MAY be
included in Accounting-Request packets.
A summary of the Minimum-Data-Rate-Downstream-Low-Power Attribute
format is shown below. The fields are transmitted from left to
right.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Vendor-Type | Vendor-Length | Value
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Value (cont'd.) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Vendor-Type
138 (0x8A) for Minimum-Data-Rate-Downstream-Low-Power
Vendor-Length
6
Value
This field is a 4-byte unsigned integer, indicating the numeric
value of the subscriber's DSL minimum downstream data rate. The
rate is coded in bits per second.
Mammoliti, et al. Informational [Page 15]
^L
RFC 4679 DSL Forum RADIUS VSA September 2006
3.3.13. Maximum-Interleaving-Delay-Upstream
Description
This Attribute contains the subscriber's maximum one-way upstream
interleaving delay, as configured by the operator. It MAY be
included in Accounting-Request packets.
A summary of the Maximum-Interleaving-Delay-Upstream Attribute format
is shown below. The fields are transmitted from left to right.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Vendor-Type | Vendor-Length | Value
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Value (cont'd.) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Vendor-Type
139 (0x8B) for Maximum-Interleaving-Delay-Upstream
Vendor-Length
6
Value
This field is a 4-byte unsigned integer, indicating the numeric
value in milliseconds of the subscriber's DSL maximum one-way
upstream interleaving delay.
3.3.14. Actual-Interleaving-Delay-Upstream
Description
This Attribute contains the subscriber's actual one-way upstream
interleaving delay. It MAY be included in Accounting-Request
packets.
A summary of the Actual-Interleaving-Delay-Upstream Attribute format
is shown below. The fields are transmitted from left to right.
Mammoliti, et al. Informational [Page 16]
^L
RFC 4679 DSL Forum RADIUS VSA September 2006
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Vendor-Type | Vendor-Length | Value
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Value (cont'd.) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Vendor-Type
140 (0x8C) for Actual-Interleaving-Delay-Upstream
Vendor-Length
6
Value
This field is a 4-byte unsigned integer, indicating the numeric
value in milliseconds of the subscriber's DSL actual upstream
interleaving delay.
3.3.15. Maximum-Interleaving-Delay-Downstream
Description
This Attribute contains the subscriber's maximum one-way
downstream interleaving delay, as configured by the operator. It
MAY be included in Accounting-Request packets.
A summary of the Maximum-Interleaving-Delay-Downstream Attribute
format is shown below. The fields are transmitted from left to
right.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Vendor-Type | Vendor-Length | Value
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Value (cont'd.) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Vendor-Type
141 (0x8D) for Maximum-Interleaving-Delay-Downstream
Mammoliti, et al. Informational [Page 17]
^L
RFC 4679 DSL Forum RADIUS VSA September 2006
Vendor-Length
6
Value
This field is a 4-byte unsigned integer, indicating the numeric
value in milliseconds of the subscriber's DSL maximum one-way
downstream interleaving delay.
3.3.16. Actual-Interleaving-Delay-Downstream
Description
This Attribute contains the subscriber's actual one-way downstream
interleaving delay. It MAY be included in Accounting-Request
packets.
A summary of the Actual-Interleaving-Delay-Downstream Attribute
format is shown below. The fields are transmitted from left to
right.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Vendor-Type | Vendor-Length | Value
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Value (cont'd.) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Vendor-Type
142 (0x8E) for Actual-Interleaving-Delay-Downstream
Vendor-Length
6
Value
This field is a 4-byte unsigned integer, indicating the numeric
value in milliseconds of the subscriber's DSL actual downstream
interleaving delay.
Mammoliti, et al. Informational [Page 18]
^L
RFC 4679 DSL Forum RADIUS VSA September 2006
3.3.17. Access-Loop-Encapsulation
Description
This Attribute describes the encapsulation(s) used by the
subscriber on the DSL access loop. It MAY be present in both
Access-Request and Accounting-Request packets.
A summary of the Access-Loop-Encapsulation Attribute format is shown
below. The fields are transmitted from left to right.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Vendor-Type | Vendor-Length | Value
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Value (cont'd) |
+-+-+-+-+-+-+-+-+
Vendor-Type
144 (0x90) for Access-Loop-Encapsulation
Vendor-Length
5
Value
This field is a string 3 bytes in length, logically divided into
three 1-byte sub-fields as shown in the following diagram:
0 1 2
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Data Link | Encaps 1 | Encaps 2 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Valid values for the sub-fields are as follows:
Data Link
0x01 AAL5
0x02 Ethernet
Mammoliti, et al. Informational [Page 19]
^L
RFC 4679 DSL Forum RADIUS VSA September 2006
Encaps 1
0x00 NA - Not Available
0x01 Untagged Ethernet
0x02 Single-Tagged Ethernet
Encaps 2
0x00 NA - Not Available
0x01 PPPoA LLC
0x02 PPPoA Null
0x03 IPoA LLC
0x04 IPoA Null
0x05 Ethernet over AAL5 LLC with FCS
0x06 Ethernet over AAL5 LLC without FCS
0x07 Ethernet over AAL5 Null with FCS
0x08 Ethernet over AAL5 Null without FCS
3.3.18. IWF-Session
Description
The presence of this Attribute indicates that the IWF has been
performed with respect to the subscriber's session; note that no
data field is necessary. It MAY be included in both Access-
Request and Accounting-Request packets.
A summary of the IWF-Session Attribute format is shown below. The
fields are transmitted from left to right.
0 1
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Vendor-Type | Vendor-Length |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Vendor-Type
254 (0xFE) for IWF-Session
Vendor-Length
2
Mammoliti, et al. Informational [Page 20]
^L
RFC 4679 DSL Forum RADIUS VSA September 2006
4. Table of Attributes
The following table provides a guide to which attributes may be found
in which kinds of packets, and in what quantity; note that since none
of the DSL Forum VSAs may be present in the Access-Accept, Access-
Reject or Access-Challenge packets, those columns have been omitted
from the table.
Request Acct-Request # Attribute
0-1 0-1 1 Agent-Circuit-Id
0-1 0-1 2 Agent-Remote-Id
0-1 0-1 129 Actual-Data-Rate-Upstream
0-1 0-1 130 Actual-Data-Rate-Downstream
0 0-1 131 Minimum-Data-Rate-Upstream
0 0-1 132 Minimum-Data-Rate-Downstream
0 0-1 133 Attainable-Data-Rate-Upstream
0 0-1 134 Attainable-Data-Rate-Downstream
0 0-1 135 Maximum-Data-Rate-Upstream
0 0-1 136 Maximum-Data-Rate-Downstream
0 0-1 137 Minimum-Data-Rate-Upstream-Low-Power
0 0-1 138 Minimum-Data-Rate-Downstream-Low-Power
0 0-1 139 Maximum-Interleaving-Delay-Upstream
0 0-1 140 Actual-Interleaving-Delay-Upstream
0 0-1 141 Maximum-Interleaving-Delay-Downstream
0 0-1 142 Actual-Interleaving-Delay-Downstream
0-1 0-1 144 Access-Loop-Encapsulation
0-1 0-1 254 IWF-Session
The following table defines the meaning of the above table entries.
0 This Attribute MUST NOT be present in packet.
0-1 Zero or one instances of this Attribute MAY be present in
packet.
5. Security Considerations
The security of these Attributes relies on an implied trust
relationship between the Access Node/DSLAM and the BRAS. The
identifiers that are inserted by the Access Node/DSLAM are
unconditionally trusted; the BRAS does not perform any validity check
on the information received. These Attributes are intended to be
used in environments in which the network infrastructure (the Access
Node/DSLAM, the BRAS, and the entire network in which those two
devices reside) is trusted and secure.
Mammoliti, et al. Informational [Page 21]
^L
RFC 4679 DSL Forum RADIUS VSA September 2006
As used in this document, the word "trusted" implies that
unauthorized traffic cannot enter the network except through secured
and trusted devices and that all devices internal to the network are
secure and trusted. Careful consideration should be given to the
potential security vulnerabilities that are present in this model
before deploying this option in actual networks.
The Attributes described in this document neither increase nor
decrease the security of the RADIUS protocol. For discussions of
various RADIUS vulnerabilities, see [RFC2607], [RFC3579], [RFC3162],
and [RFC3580].
6. References
6.1. Normative References
[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", BCP 14, RFC 2119, March 1997.
[RFC2865] Rigney, C., Willens, S., Rubens, A., and W. Simpson,
"Remote Authentication Dial In User Service (RADIUS)",
RFC 2865, June 2000.
[RFC2866] Rigney, C., "RADIUS Accounting", RFC 2866, June 2000.
6.2. Informative References
[IANA] Internet Assigned Numbers Authority, "PRIVATE ENTERPRISE
NUMBERS", January 2006,
<http://www.iana.org/assignments/enterprise-numbers>.
[ITU.I363-5.1996]
International Telecommunications Union, "B-ISDN ATM
Adaptation Layer Specification: Type 5 AAL", ITU-T
Recommendation I.363.5, August 1996.
[RFC2516] Mamakos, L., Lidl, K., Evarts, J., Carrel, D., Simone, D.,
and R. Wheeler, "A Method for Transmitting PPP Over
Ethernet (PPPoE)", RFC 2516, February 1999.
[RFC2607] Aboba, B. and J. Vollbrecht, "Proxy Chaining and Policy
Implementation in Roaming", RFC 2607, June 1999.
[RFC3046] Patrick, M., "DHCP Relay Agent Information Option",
RFC 3046, January 2001.
[RFC3162] Aboba, B., Zorn, G., and D. Mitton, "RADIUS and IPv6",
RFC 3162, August 2001.
Mammoliti, et al. Informational [Page 22]
^L
RFC 4679 DSL Forum RADIUS VSA September 2006
[RFC3579] Aboba, B. and P. Calhoun, "RADIUS (Remote Authentication
Dial In User Service) Support For Extensible
Authentication Protocol (EAP)", RFC 3579, September 2003.
[RFC3580] Congdon, P., Aboba, B., Smith, A., Zorn, G., and J. Roese,
"IEEE 802.1X Remote Authentication Dial In User Service
(RADIUS) Usage Guidelines", RFC 3580, September 2003.
[RFC4243] Stapp, M., Johnson, R., and T. Palaniappan, "Vendor-
Specific Information Suboption for the Dynamic Host
Configuration Protocol (DHCP) Relay Agent Option",
RFC 4243, December 2005.
Mammoliti, et al. Informational [Page 23]
^L
RFC 4679 DSL Forum RADIUS VSA September 2006
Authors' Addresses
Vince Mammoliti
Cisco Systems
181 Bay Street, Suite 3400
Toronto, ON M5J 2T3
Canada
EMail: vince@cisco.com
Glen Zorn
Cisco Systems
2901 Third Avenue, Suite 600
SEA1/5/
Seattle, WA 98121
USA
Phone: +1 (425) 344 8113
EMail: gwz@cisco.com
Peter Arberg
Redback Networks, Inc.
300 Holger Way
San Jose, CA 95134
USA
EMail: parberg@redback.com
Robert Rennison
ECI Telecom
Omega Corporate Center
1300 Omega Drive
Pittsburgh, PA 15205
USA
EMail: robert.rennison@ecitele.com
Mammoliti, et al. Informational [Page 24]
^L
RFC 4679 DSL Forum RADIUS VSA September 2006
Full Copyright Statement
Copyright (C) The Internet Society (2006).
This document is subject to the rights, licenses and restrictions
contained in BCP 78 and at www.rfc-editor.org/copyright.html, and
except as set forth therein, the authors retain all their rights.
This document and the information contained herein are provided on an
"AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS
OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY AND THE INTERNET
ENGINEERING TASK FORCE DISCLAIM 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.
Intellectual Property
The IETF takes no position regarding the validity or scope of any
Intellectual Property Rights or other rights that might be claimed to
pertain to the implementation or use of the technology described in
this document or the extent to which any license under such rights
might or might not be available; nor does it represent that it has
made any independent effort to identify any such rights. Information
on the procedures with respect to rights in RFC documents can be
found in BCP 78 and BCP 79.
Copies of IPR disclosures made to the IETF Secretariat and any
assurances of licenses to be made available, or the result of an
attempt made to obtain a general license or permission for the use of
such proprietary rights by implementers or users of this
specification can be obtained from the IETF on-line IPR repository at
http://www.ietf.org/ipr.
The IETF invites any interested party to bring to its attention any
copyrights, patents or patent applications, or other proprietary
rights that may cover technology that may be required to implement
this standard. Please address the information to the IETF at
ietf-ipr@ietf.org.
Acknowledgement
Funding for the RFC Editor function is provided by the IETF
Administrative Support Activity (IASA).
Mammoliti, et al. Informational [Page 25]
^L
|