aboutsummaryrefslogtreecommitdiffstats
path: root/diameter/dictionary.xml
blob: 8af68e4b6521ebce906e8a015ebbcc30c285bb4b (plain)
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
<?xml version="1.0" encoding="UTF-8"?>
<!-- $Id$ -->
<!DOCTYPE dictionary SYSTEM "dictionary.dtd" [
	<!ENTITY nasreq SYSTEM "nasreq.xml">
	<!ENTITY mobileipv4 SYSTEM "mobileipv4.xml">
	<!ENTITY chargecontrol SYSTEM "chargecontrol.xml">
	<!ENTITY sunping SYSTEM "sunping.xml">
	<!ENTITY imscxdx SYSTEM "imscxdx.xml">
	<!ENTITY TGPPSh SYSTEM "TGPPSh.xml">
]>
<dictionary>
	<base uri="http://www.ietf.org/rfc/rfc3588.txt">
		<!--
  $Log: dictionary.xml,v $
  Revision 1.1  2001/11/01 21:52:44  guy
  From David Frascone: duUpdate to Diameter dissector to load the
  dictionary as an XML file rather than building it in, and various
  Diameter updates.

  Revision 1.7  2001/08/24 18:03:24  chaos
  Mark's Changes

  Revision 1.6  2001/07/31 19:13:55  chaos
  Missed a couple of MIP AVPs

  Revision 1.5  2001/07/31 19:09:22  chaos
  Added Mobile-Ip and Sun Ping Extension

  Revision 1.4  2001/07/31 17:43:25  chaos
  Oops, forgot to turn on validity checking.  Fixed some errors found with validity checking turned on

  Revision 1.3  2001/07/31 16:56:31  chaos
  Added commands, and validated with xmllint

  Revision 1.2  2001/07/31 16:29:34  chaos
  Checking in some changes to verify log and ident strings

-->
		<!-- *********************** Commands ***************************** -->
		<!-- Diameter Base Protocol Command Codes -->
		<command name="Abort-Session" code="274" vendor-id="None">
			<!-- Maybe some avp stuff here one day -->
		</command>
		<command name="Accounting" code="271" vendor-id="None"/>
		<command name="Capabilities-Exchange" code="257" vendor-id="None"/>
		<command name="Device-Watchdog" code="280" vendor-id="None"/>
		<command name="Disconnect-Peer" code="282" vendor-id="None"/>
		<command name="Re-Auth" code="258" vendor-id="None"/>
		<command name="Session-Termination" code="275" vendor-id="None"/>
		<!-- ********************** End Commands ************************** -->
		<!-- ************************* Vendors **************************** -->
		<vendor vendor-id="None" code="0" name="None"/>
		<vendor vendor-id="HP"    code="11"    name="Hewlett Packard"/>
		<vendor vendor-id="Merit" code="61" name="Merit Networks"/>
		<vendor vendor-id="Sun" code="42" name="Sun Microsystems, Inc."/>
		<vendor vendor-id="USR" code="429" name="US Robotics Corp."/>
		<vendor vendor-id="TGPP"  code="10415" name="3GPP"/>
		<vendor vendor-id="TGPPCX" code="16777216" name="3GPP CX/DX"/>
		<!-- *********************** End Vendors ************************** -->
		<!-- ************************ typedefn's ************************** -->
		<typedefn type-name="OctetString"/>
		<!--
         The data contains arbitrary data of variable length. Unless
         otherwise noted, the AVP Length field MUST be set to at least 9
         (13 if the 'V' bit is enabled).  Data used to transmit (human
         readable) character string data uses the UTF-8 [24] character
         set and is NOT NULL-terminated. The minimum Length field MUST
         be 9, but can be set to any value up to 65504 bytes. AVP Values
         of this type that do not align on a 32-bit boundary MUST have
         the necessary padding.
	 -->
		<typedefn type-name="UTF8String" type-parent="OctetString"/>
		<!--
         The UTF8String format is derived from the OctetString AVP Base
         Format. This is a human readable string represented using the
         ISO/IEC IS 10646-1 character set, encoded as an OctetString
         using the UTF-8 [29] transformation format described in RFC
         2279.

         Since additional code points are added by amendments to the
         10646 standard from time to time, implementations MUST be
         prepared to encounter any code point from 0x00000001 to
         0x7fffffff. Byte sequences that do not correspond to the valid
         UTF-8 encoding of a code point or are outside this range are
         prohibited. Note that since a code point of 0x00000000 is
         prohibited, no octet will contain a value of 0x00.

         The use of control codes SHOULD be avoided. When it is
         necessary to represent a newline, the control code sequence CR
         LF SHOULD be used.

         The use of leading or trailing white space SHOULD be avoided.

         For code points not directly supported by user interface
         hardware or software, an alternative means of entry and
         display, such as hexadecimal, MAY be provided.

         For information encoded in 7-bit US-ASCII, the UTF-8 encoding
         is identical to the US-ASCII encoding.

         UTF-8 may require multiple bytes to represent a single
         character / code point; thus the length of a UTF8String in
         octets may be different from the number of characters encoded.

         Note that the size of an UTF8String is measured in octets, not
         characters.

         The UTF8String MUST not contain any octets with a value of
         zero.
        -->
		<typedefn type-name="IPAddress" type-parent="OctetString"/>
		<!--
         The IPAddress format is derived from the OctetString AVP Base
         Format. It represents 32 bit (IPv4) [17] or 128 bit (IPv6) [16]
         address, most significant octet first. The format of the
         address (IPv4 or IPv6) is determined by the length. If the
         attribute value is an IPv4 address, the AVP Length field MUST
         be 12 (16 if 'V' bit is enabled), otherwise the AVP Length
         field MUST be set to 24 (28 if the 'V' bit is enabled) for IPv6
         addresses.
	 -->
		<typedefn type-name="DiameterIdentity" type-parent="OctetString"/>
		<!--
         The DiameterIdentity format is derived from the OctetString AVP
         Base Format.  It uses the UTF-8 encoding and has the same
         requirements as the UTF8String.  In addition, it must follow
         the Uniform Resource Identifiers (URI) syntax [29] rules
         specified below:

            Diameter-Identity  = fqdn [ port ] [ transport ]
                                 [ protocol ]

            aaa-protocol       = ( "diameter" | "radius" | "tacacs+" )

            protocol           = ";protocol=" aaa-protocol
                                 ; If absent, the default AAA protocol
                                 ; is diameter.

            fqdn               = Fully Qualified Host Name

            port               = ":" 1*DIGIT
                                 ; One of the ports used to listen for
                                 ; incoming connections. ; If absent,
                                 ; the default Diameter port (TBD) is
                                 ; assumed.

            transport-protocol = ( "tcp" | "sctp" | "udp" )

            transport          = ";transport=" transport-protocol

                                 ; One of the transports used to listen
                                 ; for incoming connections. If absent,
                                 ; the default SCTP [26] protocol is
                                 ; assumed. UDP MUST NOT be used when
                                 ; the aaa-protocol field is set to
                                 ; diameter.

            The following are examples of valid Diameter host
            identities:

               host.abc.com;transport=tcp
               host.abc.com:6666;transport=tcp
               aaa://host.abc.com;protocol=diameter
               aaa://host.abc.com:6666;protocol=diameter
               aaa://host.abc.com:6666;transport=tcp;protocol=diameter
               aaa://host.abc.com:1813;transport=udp;protocol=radius

         Since multiple Diameter processes on a single host cannot
         listen for incoming connections on the same port on a given
         protocol, the DiameterIdentity is guaranteed to be unique per
         host.

         A Diameter node MAY advertise different identities on each
         connection, via the CER and CEA's Origin-Host AVP, but the same
         identity MUST be used throughout the duration of a connection.

         When comparing AVPs of this format, it is necessary to add any
         absent fields with the default values prior to the comparison.
         For example, diameter-host.abc.com would be expanded to
         aaa://diameter/diameter-host.abc.com:TBD;protocol=sctp.
        -->
		<typedefn type-name="IPFilterRule" type-parent="OctetString"/>
		<!--
         The IPFilterRule format is derived from the OctetString AVP
         Base Format.  It uses the UTF-8 encoding and has the same
         requirements as the UTF8String. Packets may be filtered based
         on the following information that is associated with it:

            Direction                          (in or out)
            Source and destination IP address  (possibly masked)
            Protocol
            Source and destination port        (lists or ranges)
            TCP flags
            IP fragment flag
            IP options
            ICMP types

         Rules for the appropriate direction are evaluated in order,
         with the first matched rule terminating the evaluation.  Each
         packet is evaluated once. If no rule matches, the packet is
         dropped if the last rule evaluated was a permit, and passed if
         the last rule was a deny.

         IPFilterRule filters MUST follow the format:

            action dir proto from src to dst [options]

            action       permit - Allow packets that match the rule.
                         deny   - Drop packets that match the rule.

            dir          "in" is from the terminal, "out" is to the
                         terminal.

            proto        An IP protocol specified by number.  The "ip"
                         keyword means any protocol will match.

            src and dst  <address/mask> [ports]

                         The <address/mask> may be specified as:
                         ipno       An IPv4 or IPv6 number in dotted-
                                    quad or canonical IPv6 form. Only
                                    this exact IP number will match the
                                    rule.
                         ipno/bits  An IP number as above with a mask
                                    width of the form 1.2.3.4/24.  In
                                    this case all IP numbers from
                                    1.2.3.0 to 1.2.3.255 will match.
                                    The bit width MUST be valid for the
                                    IP version and the IP number MUST
                                    NOT have bits set beyond the mask.

                         The sense of the match can be inverted by
                         preceding an address with the not modifier,
                         causing all other addresses to be matched
                         instead.  This does not affect the selection of
                         port numbers.

                            The keyword "any" is 0.0.0.0/0 or the IPv6
                            equivalent.  The keyword "assigned" is the
                            address or set of addresses assigned to the
                            terminal.  The first rule SHOULD be "deny in
                            ip !assigned".

                         With the TCP, UDP and SCTP protocols, optional
                         ports may be specified as:

                            {port|port-port}[,port[,...]]

                         The `-' notation specifies a range of ports
                         (including boundaries).

                         Fragmented packets which have a non-zero offset
                         (i.e. not the first fragment) will never match
                         a rule which has one or more port
                         specifications.  See the frag option for
                         details on matching fragmented packets.

            options:
               frag    Match if the packet is a fragment and this is not
                       the first fragment of the datagram.  frag may not
                       be used in conjunction with either tcpflags or
                       TCP/UDP port specifications.

               ipoptions spec
                       Match if the IP header contains the comma
                       separated list of options specified in spec. The
                       supported IP options are:

                       ssrr (strict source route), lsrr (loose source
                       route), rr (record packet route) and ts
                       (timestamp). The absence of a particular option
                       may be denoted with a `!'.

               tcpoptions spec
                       Match if the TCP header contains the comma
                       separated list of options specified in spec. The
                       supported TCP options are:

                       mss (maximum segment size), window (tcp window
                       advertisement), sack (selective ack), ts (rfc1323
                       timestamp) and cc (rfc1644 t/tcp connection
                       count).  The absence of a particular option may
                       be denoted with a `!'.

               established
                       TCP packets only. Match packets that have the RST
                       or ACK bits set.

               setup   TCP packets only. Match packets that have the SYN
                       bit set but no ACK bit.

               tcpflags spec
                       TCP packets only. Match if the TCP header
                       contains the comma separated list of flags
                       specified in spec. The supported TCP flags are:

                       fin, syn, rst, psh, ack and urg. The absence of a
                       particular flag may be denoted with a `!'. A rule
                       which contains a tcpflags specification can never
                       match a fragmented packet which has a non-zero
                       offset.  See the frag option for details on
                       matching fragmented packets.

               icmptypes types
                       ICMP packets only.  Match if the ICMP type is in
                       the list types. The list may be specified as any
                       combination of ranges or individual types
                       separated by commas.  The supported ICMP types
                       are:

                       echo reply (0), destination unreachable (3),
                       source quench (4), redirect (5), echo request
                       (8), router advertisement (9), router
                       solicitation (10), time-to-live exceeded (11), IP
                       header bad (12), timestamp request (13),
                       timestamp reply (14), information request (15),
                       information reply (16), address mask request (17)
                       and address mask reply (18).

         There is one kind of packet that the access device MUST always
         discard, that is an IP fragment with a fragment offset of one.
         This is a valid packet, but it only has one use, to try to
         circumvent firewalls.

            An access device that is unable to interpret or apply a deny
            rule MUST terminate the session.  An access device that is
            unable to interpret or apply a permit rule MAY apply a more
            restrictive rule.  An access device MAY apply deny rules of
            its own before the supplied rules, for example to protect
            the access device owner's infrastructure.

         The rule syntax is a modified subset of ipfw(8) from FreeBSD,
         and the ipfw.c code may provide a useful base for
         implementations.
        -->
		<typedefn type-name="QOSFilterRule" type-parent="OctetString"/>
		<!--
         The QosFilterRule format is derived from the OctetString AVP
         Base Format.  It uses the UTF-8 encoding and has the same
         requirements as the UTF8String. Packets may be marked or
         metered based on the following information that is associated
         with it:

            Direction                          (in or out)
            Source and destination IP address  (possibly masked)
            Protocol
            Source and destination port        (lists or ranges)
            DSCP values                        (no mask or range)

         Rules for the appropriate direction are evaluated in order,
         with the first matched rule terminating the evaluation.  Each
         packet is evaluated once. If no rule matches, the packet is
         treated as best effort.

         QoSFilterRule filters MUST follow the format:

            action dir proto from src to dst [options]

                         tag    - Mark packet with a specific DSCP [49].
                                  The DSCP option MUST be included.

                         meter  - Meter traffic. The metering options
                                  MUST be included.

            dir          "in" is from the terminal, "out" is to the
                         terminal.

            proto        An IP protocol specified by number.  The "ip"
                         keyword means any protocol will match.

            src and dst  <address/mask> [ports]

                         The <address/mask> may be specified as:
                         ipno       An IPv4 or IPv6 number in dotted-
                                    quad or canonical IPv6 form. Only
                                    this exact IP number will match the
                                    rule.
                         ipno/bits  An IP number as above with a mask
                                    width of the form 1.2.3.4/24.  In
                                    this case all IP numbers from
                                    1.2.3.0 to 1.2.3.255 will match.
                                    The bit width MUST be valid for the
                                    IP version and the IP number MUST
                                    NOT have bits set beyond the mask.

                         The sense of the match can be inverted by
                         preceding an address with the not modifier,
                         causing all other addresses to be matched
                         instead.  This does not affect the selection of
                         port numbers.

                            The keyword "any" is 0.0.0.0/0 or the IPv6
                            equivalent.  The keyword "assigned" is the
                            address or set of addresses assigned to the
                            terminal.  The first rule SHOULD be "deny in
                            ip !assigned".

                         With the TCP, UDP and SCTP protocols, optional
                         ports may be specified as:

                            {port|port-port}[,port[,...]]

                         The `-' notation specifies a range of ports
                         (including boundaries).

            options:

               DSCP <color>
                       color values as defined in [49]. Exact matching
                       of DSCP values is required (no masks or ranges).
                       the "deny" can replace the color_under or
                       color_over values in the meter action for rate-
                       dependent packet drop.

               metering <rate> <color_under> <color_over>
                       The metering option provides Assured Forwarding,
                       as defined in [50], and MUST be present if the
                       action is set to meter. The rate option is the
                       throughput, in bits per second, which is used by
                       the access device to mark packets. Traffic above
                       the rate is marked with the color_over codepoint,
                       while traffic under the rate is marked with the
                       color_under codepoint. The color_under and
                       color_over options contain the drop preferences,
                       and MUST conform to the recommended codepoint
                       keywords described in [50] (e.g. AF13).

                       The metering option also supports the strict
                       limit on traffic required by Expedited
                       Forwarding, as defined in [51]. The color_over
                       option may contain the keyword "drop" to prevent
                       forwarding of traffic that exceeds the rate
                       parameter.

         The rule syntax is a modified subset of ipfw(8) from FreeBSD,
         and the ipfw.c code may provide a useful base for
         implementations.

        -->
		<typedefn type-name="MIPRegistrationRequest" type-parent="OctetString"/>
		<typedefn type-name="Integer32"/>
		<!--
         32 bit signed value, in network byte order. The AVP Length
         field MUST be set to 12 (16 if the 'V' bit is enabled).
	-->
		<typedefn type-name="VendorId" type-parent="Integer32"/>
		<typedefn type-name="AppId" type-parent="Integer32"/>
		<typedefn type-name="Integer64"/>
		<!--
         64 bit signed value, in network byte order. The AVP Length
         field MUST be set to 16 (20 if the 'V' bit is enabled).
        -->
		<typedefn type-name="Unsigned32"/>
		<!--
         32 bit unsigned value, in network byte order. The AVP Length
         field MUST be set to 12 (16 if the 'V' bit is enabled).
         Unsigned32 values used to transmit time data contains the four
         most significant octets returned from NTP [18], in network byte
         order.
	-->
		<typedefn type-name="Time"/>
		<!--
         The Time format is derived from the Unsigned32 AVP Base Format.
         This is 32 bit unsigned value containing the four most
         significant octets returned from NTP [18], in network byte
         order.

         This represent the number of seconds since 0h on 1 January 1900
         with respect to the Coordinated Universal Time (UTC).

         On 6h 28m 16s UTC, 7 February 2036 the time value will
         overflow.  NTP [18] describes a procedure to extend the time to
         2104.
        -->
		<typedefn type-name="Unsigned64"/>
		<!--
         64 bit unsigned value, in network byte order. The AVP Length
         field MUST be set to 16 (20 if the 'V' bit is enabled).
	-->
		<typedefn type-name="Enumerated" type-parent="Unsigned32"/>
		<typedefn type-name="DiameterURI" type-parent="UTF8String"/>

		<!-- ************************* End Typedefns ************************ -->
		<!-- ******************* RADIUS AVPS ************************ -->
		<!-- http://www.iana.org/assignments/aaa-parameters -->
		<!-- 1-255    Radius attributes                  [RAD-IANA] -->
		<avp name="User-Name" code="1" mandatory="must">
			<type type-name="UTF8String"/>
		</avp>
		<avp name="User-Password" code="2" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="CHAP-Password" code="3" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="NAS-IP-Address" code="4" mandatory="may">
			<type type-name="IPAddress"/>
		</avp>
		<avp name="NAS-Port" code="5" mandatory="may">
			<type type-name="Integer32"/>
		</avp>
		<avp name="Service-Type" code="6">
			<type type-name="Unsigned32"/>
			<enum name="Login" code="1"/>
			<enum name="Framed" code="2"/>
			<enum name="Callback-Login" code="3"/>
			<enum name="Callback-Framed" code="4"/>
			<enum name="Outbound" code="5"/>
			<enum name="Administrative" code="6"/>
			<enum name="NAS-Prompt" code="7"/>
			<enum name="Authenticate-Only" code="8"/>
			<enum name="Callback-NAS-Prompt" code="9"/>
			<enum name="Call Check" code="10"/>
			<enum name="Callback Administrative" code="11"/>
			<enum name="Voice" code="12"/>
			<enum name="Fax" code="13"/>
			<enum name="Modem Relay" code="14"/>
			<enum name="IAPP-Register" code="15"/>
			<enum name="IAPP-AP-Check" code="16"/>
			<enum name="Authorize Only" code="17"/>
		</avp>
		<avp name="Framed-Protocol" code="7">
			<type type-name="Unsigned32"/>
			<enum name="ARA" code="3"/>
			<enum name="Ascend-ARA" code="255"/>
			<enum name="COMB" code="260"/>
			<enum name="EURAW" code="257"/>
			<enum name="EUUI" code="258"/>
			<enum name="FR" code="261"/>
			<enum name="Gandalf" code="4"/>
			<enum name="MPP" code="256"/>
			<enum name="PPP" code="1"/>
			<enum name="SLIP" code="2"/>
			<enum name="X25" code="259"/>
			<enum name="Xylogics" code="5"/>
		</avp>
		<avp name="Framed-IP-Address" code="8" mandatory="may">
			<type type-name="IPAddress"/>
		</avp>
		<avp name="Framed-IP-Netmask" code="9" mandatory="may">
			<type type-name="IPAddress"/>
		</avp>
		<avp name="Framed-Routing" code="10">
			<type type-name="Unsigned32"/>
			<enum name="Broadcast" code="1"/>
			<enum name="Broadcast-Listen" code="3"/>
			<enum name="Listen" code="2"/>
			<enum name="None" code="0"/>
		</avp>
		<avp name="Filter-Id" code="11" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="Framed-MTU" code="12" mandatory="may">
			<type type-name="Integer32"/>
		</avp>
		<avp name="Framed-Compression" code="13">
			<type type-name="Unsigned32"/>
			<enum name="IPX-Header-Compression" code="2"/>
			<enum name="None" code="0"/>
			<enum name="Van-Jacobson-TCP-IP" code="1"/>
		</avp>
 		<avp name="Login-IP-Host" code="14" mandatory="may">
 			<type type-name="IPAddress"/>
 		</avp>
		<avp name="Login-Service" code="15">
			<type type-name="Unsigned32"/>
			<enum name="Telnet" code="0"/>
			<enum name="Rlogin" code="1"/>
			<enum name="TCP-Clear" code="2"/>
			<enum name="PortMaster" code="3"/>
			<enum name="LAT" code="4"/>
			<enum name="X25-PAD" code="5"/>
			<enum name="X25-T3POS" code="6"/>
			<enum name="TCP Clear Quiet (suppresses any NAS-generated connect string)" code="8"/>
		</avp>
 		<avp name="Login-TCP-Port" code="16" mandatory="may">
			<type type-name="Integer32"/>
		</avp>
		<avp name="Reply-Message" code="18" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="Callback-Number" code="19" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="Callback-Id" code="20" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="Framed-Route" code="22" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="Framed-IPX-Network" code="23" mandatory="may">
			<type type-name="Integer32"/>
		</avp>
		<avp name="State" code="24" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="Class" code="25" mandatory="must">
			<type type-name="OctetString"/>
		</avp>
		<avp name="Vendor-Specific" code="26">
			<type type-name="Unsigned32"/>
			<!-- Should vendors be enum'ed? -->
		</avp>
		<avp name="Session-Timeout" code="27" mandatory="must">
			<type type-name="Unsigned32"/>
		</avp>
		<avp name="Idle-Timeout" code="28" mandatory="may">
			<type type-name="Integer32"/>
		</avp>
		<avp name="Termination-Action" code="29">
			<type type-name="Unsigned32"/>
			<enum name="Default" code="0"/>
			<enum name="RADIUS-Request" code="1"/>
		</avp>
		<avp name="Called-Station-Id" code="30" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="Calling-Station-Id" code="31" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="NAS-Identifier" code="32" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="Proxy-State" code="33" mandatory="must">
			<type type-name="OctetString"/>
		</avp>
		<avp name="Login-LAT-Service" code="34" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="Login-LAT-Node" code="35" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="Login-LAT-Group" code="36" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="Framed-AppleTalk-Link" code="37" mandatory="may">
			<type type-name="Integer32"/>
		</avp>
		<avp name="Framed-AppleTalk-Network" code="38" mandatory="may">
			<type type-name="Integer32"/>
		</avp>
		<avp name="Framed-AppleTalk-Zone" code="39" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="Acct-Status-Type" code="40">
			<type type-name="Unsigned32"/>
			<enum name="Accounting-Off" code="8"/>
			<enum name="Accounting-On" code="7"/>
			<enum name="Alive" code="3"/>
			<enum name="Cancel" code="6"/>
			<enum name="Modem-Start" code="4"/>
			<enum name="Modem-Stop" code="5"/>
			<enum name="Start" code="1"/>
			<enum name="Stop" code="2"/>
		</avp>
		<avp name="Acct-Delay-Time" code="41" mandatory="may">
			<type type-name="Integer32"/>
		</avp>
		<avp name="Acct-Input-Octets" code="42" mandatory="may">
			<type type-name="Integer32"/>
		</avp>
		<avp name="Acct-Output-Octets" code="43" mandatory="may">
			<type type-name="Integer32"/>
		</avp>
		<avp name="Accounting-Session-Id" code="44" mandatory="must" protected="may" may-encrypt="yes" vendor-bit="mustnot">
			<type type-name="Unsigned32"/>
		</avp>
		<avp name="Acct-Authentic" code="45">
			<type type-name="Unsigned32"/>
			<enum name="None" code="0"/>
			<enum name="RADIUS" code="1"/>
			<enum name="Local" code="2"/>
			<enum name="Remote" code="3"/>
			<enum name="Diameter" code="4"/>
		</avp>
		<avp name="Acct-Session-Time" code="46" mandatory="may">
			<type type-name="Integer32"/>
		</avp>
		<avp name="Acct-Input-Packets" code="47" mandatory="may">
			<type type-name="Integer32"/>
		</avp>
		<avp name="Acct-Output-Packets" code="48" mandatory="may">
			<type type-name="Integer32"/>
		</avp>
		<avp name="Acct-Terminate-Cause" code="49">
			<type type-name="Unsigned32"/>
			<enum name="User-Request" code="1"/>
			<enum name="Lost-Carrier" code="2"/>
			<enum name="Lost-Service" code="3"/>
			<enum name="Idle-Timeout" code="4"/>
			<enum name="Session-Timeout" code="5"/>
			<enum name="Admin-Reset" code="6"/>
			<enum name="Admin-Reboot" code="7"/>
			<enum name="Port-Error" code="8"/>
			<enum name="NAS-Error" code="9"/>
			<enum name="NAS-Request" code="10"/>
			<enum name="NAS-Reboot" code="11"/>
			<enum name="Port-Unneeded" code="12"/>
			<enum name="Port-Preempted" code="13"/>
			<enum name="Port-Suspended" code="14"/>
			<enum name="Service-Unavailable" code="15"/>
			<enum name="Callback" code="16"/>
			<enum name="User-Error" code="17"/>
			<enum name="Host-Request" code="18"/>
			<enum name="Supplicant Restart" code="19"/>
			<enum name="Reauthentication Failure" code="20"/>
			<enum name="Port Reinitialized" code="21"/>
			<enum name="Port Administratively Disabled" code="22"/>
		</avp>
		<avp name="Accounting-Multi-Session-Id" code="50" mandatory="must" protected="may" may-encrypt="yes" vendor-bit="mustnot">
			<type type-name="Unsigned32"/>
		</avp>
		<avp name="Acct-Link-Count" code="51" mandatory="may">
			<type type-name="Integer32"/>
		</avp>
		<avp name="Acct-Input-Gigawords" code="52" mandatory="may">
			<type type-name="Integer32"/>
		</avp>
		<avp name="Acct-Output-Gigawords" code="53" mandatory="may">
			<type type-name="Integer32"/>
		</avp>
		<avp name="Event-Timestamp" code="55" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="Time"/>
		</avp>
<!--  56-59	(unassigned) -->
		<avp name="CHAP-Challenge" code="60" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="NAS-Port-Type" code="61" mandatory="must" may-encrypt="yes">
			<type type-name="Enumerated"/>
			<enum name="Async" code="0"/>
			<enum name="HDLC-Clear-Channel" code="7"/>
			<enum name="ISDN-Async-v110" code="4"/>
			<enum name="ISDN-Async-v120" code="3"/>
			<enum name="ISDN-Sync" code="2"/>
			<enum name="PIAFS" code="6"/>
			<enum name="Sync" code="1"/>
			<enum name="Virtual" code="5"/>
			<enum name="X25" code="8"/>
			<enum name="X75" code="9"/>
			<enum name="G.3 Fax" code="10"/>
			<enum name="SDSL - Symmetric DSL" code="11"/>
			<enum name="ADSL-CAP - Asymmetric DSL, Carrierless Amplitude Phase Modulation" code="12"/>
			<enum name="ADSL-DMT - Asymmetric DSL, Discrete Multi-Tone" code="13"/>
			<enum name="IDSL - ISDN Digital Subscriber Line" code="14"/>
			<enum name="Ethernet" code="15"/>
			<enum name="xDSL - Digital Subscriber Line of unknown type" code="16"/>
			<enum name="Cable" code="17"/>
			<enum name="Wireless - Other" code="18"/>
			<enum name="Wireless - IEEE 802.11  " code="19"/>
			<enum name="Token-Ring" code="20"/>
			<enum name="FDDI" code="21"/>
			<enum name="Wireless - CDMA2000" code="22"/>
			<enum name="Wireless - UMTS" code="23"/>
			<enum name="Wireless - 1X-EV" code="24"/>
			<enum name="IAPP" code="25"/>
			<enum name="FTTP - Fiber to the Premises" code="26"/>
		</avp>
		<avp name="Port-Limit" code="62" mandatory="may">
			<type type-name="Integer32"/>
		</avp>
		<avp name="Login-LAT-Port" code="63" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="Tunnel-Type" code="64">
			<type type-name="Unsigned32"/>
			<enum name="PPTP" code="1"/>
			<enum name="L2F" code="2"/>
			<enum name="L2TP" code="3"/>
			<enum name="ATMP" code="4"/>
			<enum name="VTP" code="5"/>
			<enum name="AH" code="6"/>
			<enum name="IP-IP-Encap" code="7"/>
			<enum name="MIN-IP-IP" code="8"/>
			<enum name="ESP" code="9"/>
			<enum name="GRE" code="10"/>
			<enum name="DVS" code="11"/>
			<enum name="IP-IP" code="12"/>
			<enum name="VLAN" code="13"/>
		</avp>
		<avp name="Tunnel-Medium-Type" code="65">
			<type type-name="Unsigned32"/>
			<enum name="IPv4" code="1"/>
			<enum name="IPv6" code="2"/>
			<enum name="NSAP" code="3"/>
			<enum name="HDLC" code="4"/>
			<enum name="BBN" code="5"/>
			<enum name="IEEE-802" code="6"/>
			<enum name="E-163" code="7"/>
			<enum name="E-164" code="8"/>
			<enum name="F-69" code="9"/>
			<enum name="X-121" code="10"/>
			<enum name="IPX" code="11"/>
			<enum name="Appletalk-802" code="12"/>
			<enum name="Decnet4" code="13"/>
			<enum name="Vines" code="14"/>
			<enum name="E-164-NSAP" code="15"/>
		</avp>
		<avp name="Acct-Tunnel-Client-Endpoint" code="66" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="Tunnel-Server-Endpoint" code="67" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="Acct-Tunnel-Connection-ID" code="68" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="Tunnel-Password" code="69" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="ARAP-Password" code="70" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="ARAP-Features" code="71" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="ARAP-Zone-Access" code="72" mandatory="may">
			<type type-name="Integer32"/>
		</avp>
		<avp name="ARAP-Security" code="73" mandatory="may">
			<type type-name="Integer32"/>
		</avp>
		<avp name="ARAP-Security-Data" code="74" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="Password-Retry" code="75" mandatory="may">
			<type type-name="Integer32"/>
		</avp>
		<avp name="Prompt" code="76" mandatory="may">
			<type type-name="Integer32"/>
		</avp>
		<avp name="Connect-Info" code="77" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="Configuration-Token" code="78" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="EAP-Message" code="79" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="Signature" code="80" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="ARAP-Challenge-Response" code="84" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<avp name="Acct-Interim-Interval" code="85" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="Integer32"/>
		</avp>
		<avp name="Framed-Interface-Id" code="96" mandatory="may">
			<type type-name="Unsigned64"/>
		</avp>
		<avp name="Framed-IPv6-Prefix" code="97" mandatory="may">
			<type type-name="OctetString"/>
		</avp>
		<!-- ******************* DIAMETER BASE PROTOCOL AVPS ************************ -->
		<avp name="Host-IP-Address" code="257" mandatory="must" protected="mustnot" may-encrypt="no" vendor-bit="mustnot">
			<type type-name="IPAddress"/>
		</avp>
		<avp name="Auth-Application-Id" code="258" mandatory="must" protected="mustnot" may-encrypt="no" vendor-bit="mustnot">
			<type type-name="AppId"/>
		</avp>		
		<avp name="Acct-Application-Id" code="259" mandatory="must" protected="mustnot" may-encrypt="no" vendor-bit="mustnot">
			<type type-name="AppId"/>
			<enum name="Diameter Common Messages" code="0"/>
			<enum name="Diameter NASREQ Application" code="1"/>
			<enum name="Diameter Mobile IPv4 Application" code="2"/>
			<enum name="Diameter Base Accounting" code="3"/>
			<enum name="3GPP CX/DX" code="16777216"/>
			<enum name="3GPP Sh" code="16777217"/>
			<enum name="3GPP Re/Rf" code="16777218"/>
			<enum name="3GPP Wx" code="16777219"/>
			<enum name="GPP Zn" code="16777220"/>
			<enum name="3GPP Zh" code="16777221"/>
			<enum name="3GPP Gq" code="16777222"/>
			<enum name="3GPP Gmb" code="16777223"/>
			<enum name="3GPP Gx" code="16777224"/>
			<enum name="3GPP Gx over Gy" code="16777225"/>
			<enum name="3GPP MM10" code="16777226"/>
			<enum name="Ericsson MSI" code="16777227"/>
			<enum name="Ericsson Zx" code="16777228"/>
			<enum name="3GPP Rx" code="16777229"/>
		</avp>
		<avp name="Vendor-Specific-Application-Id" code="260" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<grouped>
				<gavp name="Vendor-Id"/>
				<gavp name="Auth-Application-Id"/>
				<gavp name="Acct-Application-Id"/>
			</grouped>
		</avp>
		<avp name="Redirect-Host-Usage" code="261" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="Unsigned32"/>
			<enum name="Don't Care" code="0"/>
			<enum name="All Session" code="1"/>
			<enum name="All Realm" code="2"/>
			<enum name="Realm and Application" code="3"/>
			<enum name="All Application" code="4"/>
			<enum name="All Host" code="5"/>
		</avp>
		<avp name="Redirect-Max-Cache-Time" code="262" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="Unsigned32"/>
		</avp>
		<avp name="Session-Id" code="263" mandatory="must" protected="mustnot" vendor-bit="mustnot">
			<type type-name="UTF8String"/>
		</avp>
		<avp name="Origin-Host" code="264" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="DiameterIdentity"/>
		</avp>
		<avp name="Supported-Vendor-Id" code="265" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="VendorId"/>
		</avp>
		<avp name="Vendor-Id" code="266" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="VendorId"/>
		</avp>
		<avp name="Firmware-Revision" code="267" mandatory="must" protected="mustnot" may-encrypt="no" vendor-bit="mustnot">
			<type type-name="Unsigned32"/>
		</avp>
		<avp name="Result-Code" code="268" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="Unsigned32"/>
			<enum name="DIAMETER_MULTI_ROUND_AUTH" code="1001"/>
			<enum name="DIAMETER_SUCCESS" code="2001"/>
			<enum name="DIAMETER_LIMITED_SUCCESS" code="2002"/>
			<enum name="DIAMETER_COMMAND_UNSUPPORTED" code="3001"/>
			<enum name="DIAMETER_UNABLE_TO_DELIVER" code="3002"/>
			<enum name="DIAMETER_REALM_NOT_SERVED" code="3003"/>
			<enum name="DIAMETER_TOO_BUSY" code="3004"/>
			<enum name="DIAMETER_LOOP_DETECTED" code="3005"/>
			<enum name="DIAMETER_REDIRECT_INDICATION" code="3006"/>
			<enum name="DIAMETER_APPLICATION_UNSUPPORTED" code="3007"/>
			<enum name="DIAMETER_INVALID_HDR_BITS" code="3008"/>
			<enum name="DIAMETER_INVALID_AVP_BITS" code="3009"/>
			<enum name="DIAMETER_UNKNOWN_PEER" code="3010"/>
			<enum name="DIAMETER_AUTHENTICATION_REJECTED" code="4001"/>
			<enum name="DIAMETER_OUT_OF_SPACE" code="4002"/>
			<enum name="DIAMETER_ELECTION_LOST" code="4003"/>
			<enum name="DIAMETER_ERROR_MIP_REPLY_FAILURE" code="4005"/>
			<enum name="DIAMETER_ERROR_HA_NOT_AVAILABLE" code="4006"/>
			<enum name="DIAMETER_ERROR_BAD_KEY" code="4007"/>
			<enum name="DIAMETER_ERROR_MIP_FILTER_NOT_SUPPORTED" code="4008"/>
			<enum name="DIAMETER_END_USER_SERVICE_DENIED" code="4010"/>
			<enum name="DIAMETER_CREDIT_CONTROL_NOT_APPLICABLE" code="4011"/>
			<enum name="DIAMETER_CREDIT_LIMIT_REACHED" code="4012"/>
			<enum name="DIAMETER_AVP_UNSUPPORTED" code="5001"/>
			<enum name="DIAMETER_UNKNOWN_SESSION_ID" code="5002"/>
			<enum name="DIAMETER_AUTHORIZATION_REJECTED" code="5003"/>
			<enum name="DIAMETER_INVALID_AVP_VALUE" code="5004"/>
			<enum name="DIAMETER_MISSING_AVP" code="5005"/>
			<enum name="DIAMETER_RESOURCES_EXCEEDED" code="5006"/>
			<enum name="DIAMETER_CONTRADICTING_AVPS" code="5007"/>
			<enum name="DIAMETER_AVP_NOT_ALLOWED" code="5008"/>
			<enum name="DIAMETER_AVP_OCCURS_TOO_MANY_TIMES" code="5009"/>
			<enum name="DIAMETER_NO_COMMON_APPLICATION " code="5010"/>
			<enum name="DIAMETER_UNSUPPORTED_VERSION" code="5011"/>
			<enum name="DIAMETER_UNABLE_TO_COMPLY" code="5012"/>
			<enum name="DIAMETER_INVALID_BIT_IN_HEADER" code="5013"/>
			<enum name="DIAMETER_INVALID_AVP_LENGTH" code="5014"/>
			<enum name="DIAMETER_INVALID_MESSAGE_LENGTH" code="5015"/>
			<enum name="DIAMETER_INVALID_AVP_BIT_COMBO" code="5016"/>
			<enum name="DIAMETER_NO_COMMON_SECURITY" code="5017"/>
			<enum name="DIAMETER_ERROR_NO_FOREIGN_HA_SERVICE" code="5024"/>
			<enum name="DIAMETER_ERROR_END_TO_END_MIP_KEY_ENCRYPTION" code="5025"/>
			<enum name="DIAMETER_USER_UNKNOWN" code="5030"/>
			<enum name="DIAMETER_RATING_FAILED" code="5031"/>
		</avp>
		<avp name="Product-Name" code="269" mandatory="mustnot" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="UTF8String"/>
		</avp>
		<avp name="Session-Binding" code="270" mandatory="must" protected="mustnot" vendor-bit="mustnot">
			<type type-name="Unsigned32"/>
			<enum name="RE_AUTH" code="1"/>
			<enum name="STR" code="2"/>
			<enum name="Unallocated" code="3"/>
			<enum name="ACCOUNTING" code="4"/>
		</avp>
		<avp name="Session-Server-Failover" code="271" mandatory="must" protected="mustnot" vendor-bit="mustnot">
			<type type-name="Unsigned32"/>
			<enum name="REFUSE_SERVICE" code="0"/>
			<enum name="TRY_AGAIN" code="1"/>
			<enum name="ALLOW_SERVICE" code="2"/>
			<enum name="TRY_AGAIN_ALLOW_SERVICE" code="3"/>
		</avp>
		<avp name="Multi-Round-Time-Out" code="272" mandatory="must" may-encrypt="yes" vendor-bit="mustnot">
			<type type-name="Unsigned32"/>
		</avp>
		<avp name="Disconnect-Cause" code="273" mandatory="must" protected="mustnot" may-encrypt="no" vendor-bit="mustnot">
			<type type-name="Unsigned32"/>
			<enum name="REBOOTING" code="0"/>
			<enum name="BUSY" code="1"/>
			<enum name="DO_NOT_WANT_TO_TALK_TO_YOU" code="2"/>
		</avp>
		<avp name="Auth-Request-Type" code="274" mandatory="must" protected="mustnot" may-encrypt="no" vendor-bit="mustnot">
			<type type-name="Unsigned32"/>
			<enum name="Authenticate Only" code="1"/>
			<enum name="Authorize Only" code="2"/>
			<enum name="Authorize Authenticate" code="3"/>
		</avp>
		<avp name="Alternate-Peer" code="275" mandatory="must" protected="mustnot" may-encrypt="no" vendor-bit="mustnot">
			<type type-name="DiameterIdentity"/>
		</avp>
		<avp name="Auth-Grace-Period" code="276" mandatory="must" may-encrypt="no" vendor-bit="mustnot">
			<type type-name="Unsigned32"/>
		</avp>
		<avp name="Auth-Session-State" code="277" mandatory="must" may-encrypt="no" vendor-bit="mustnot">
			<type type-name="Unsigned32"/>
			<enum name="STATE_MAINTAINED" code="0"/>
			<enum name="NO_STATE_MAINTAINED" code="1"/>
		</avp>
		<avp name="Origin-State-Id" code="278" mandatory="must" protected="mustnot" vendor-bit="mustnot">
			<type type-name="Unsigned32"/>
		</avp>
		<avp name="Failed-AVP" code="279" mandatory="must" may-encrypt="no" vendor-bit="mustnot">
			<type type-name="OctetString"/>
		</avp>
		<avp name="Proxy-Host" code="280" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="DiameterIdentity"/>
		</avp>
		<avp name="Error-Message" code="281" mandatory="must" protected="mustnot" may-encrypt="no" vendor-bit="mustnot">
			<type type-name="UTF8String"/>
		</avp>
		<avp name="Route-Record" code="282" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="DiameterIdentity"/>
		</avp>
		<avp name="Destination-Realm" code="283" mandatory="must" protected="mustnot" may-encrypt="no" vendor-bit="mustnot">
			<type type-name="UTF8String"/>
		</avp>
		<avp name="Proxy-Info" code="284" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="OctetString"/>
		</avp>
		<avp name="Re-Auth-Request-Type" code="285" mandatory="must" may-encrypt="no" vendor-bit="mustnot">
			<type type-name="Unsigned32"/>
			<enum name="AUTHORIZE_ONLY" code="0"/>
			<enum name="AUTHORIZE_AUTHENTICATE" code="1"/>
		</avp>
<!-- 286-290    Unallocated http://www.iana.org/assignments/aaa-parameters (last updated 20 September 2005)?? -->
		<avp name="Authorization-Lifetime" code="291" mandatory="must" may-encrypt="no" vendor-bit="mustnot">
			<type type-name="Integer32"/>
		</avp>
 		<avp name="Redirect-Host" code="292" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="DiameterIdentity"/>
		</avp>
		<avp name="Destination-Host" code="293" mandatory="must" protected="mustnot" may-encrypt="no" vendor-bit="mustnot">
			<type type-name="DiameterIdentity"/>
		</avp>
		<avp name="Error-Reporting-Host" code="294" mandatory="must" protected="mustnot" may-encrypt="no" vendor-bit="mustnot">
			<type type-name="DiameterIdentity"/>
		</avp>
		<avp name="Termination-Cause" code="295" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="Unsigned32"/>
			<enum name="DIAMETER_LOGOUT" code="1"/>
			<enum name="DIAMETER_SERVICE_NOT_PROVIDED" code="2"/>
			<enum name="DIAMETER_BAD_ANSWER" code="3"/>
			<enum name="DIAMETER_ADMINISTRATIVE" code="4"/>
			<enum name="DIAMETER_LINK_BROKEN" code="5"/>
			<enum name="DIAMETER_AUTH_EXPIRED" code="6"/>
			<enum name="DIAMETER_USER_MOVED" code="7"/>
			<enum name="DIAMETER_SESSION_TIMEOUT" code="8"/>
		</avp>
		<avp name="Origin-Realm" code="296" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="DiameterIdentity"/>
		</avp>
		<avp name="Experimental-Result" code="297" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<grouped>
				<gavp name="Vendor-Id"/>
				<gavp name="Experimental-Result-Code"/>
			</grouped>
		</avp>
		<!-- 3GPP TS 29.230 version 6.5.0 Release 6, ETSI TS 129 230 V6.5.0 (2005-09) -->
		<avp name="Experimental-Result-Code" code="298" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="Unsigned32"/>
			<enum name="DIAMETER_FIRST_REGISTRATION" code="2001"/>
			<enum name="DIAMETER_SUBSEQUENT_REGISTRATION" code="2002"/>
			<enum name="DIAMETER_UNREGISTERED_SERVICE" code="2003"/>
			<enum name="DIAMETER_SUCCESS_SERVER_NAME_NOT_STORED" code="2004"/>
			<enum name="SDIAMETER_SERVER_SELECTION" code="2005"/>
			<enum name="DIAMETER_USER_DATA_NOT_AVAILABLE" code="4100"/>
			<enum name="DIAMETER_PRIOR_UPDATE_IN_PROGRESS" code="4101"/>
			<enum name="DIAMETER_ERROR_USER_UNKNOWN" code="5001"/>
			<enum name="DIAMETER_ERROR_IDENTITIES_DONT_MATCH" code="5002"/>
			<enum name="DIAMETER_ERROR_IDENTITY_NOT_REGISTERED" code="5003"/>
			<enum name="DIAMETER_ERROR_ROAMING_NOT_ALLOWED" code="5004"/>
			<enum name="DIAMETER_ERROR_IDENTITY_ALREADY_REGISTERED" code="5005"/>
			<enum name="DIAMETER_ERROR_AUTH_SCHEME_NOT_SUPPORTED" code="5006"/>
			<enum name="DIAMETER_ERROR_IN_ASSIGNMENT_TYPE" code="5007"/>
			<enum name="DIAMETER_ERROR_TOO_MUCH_DATA" code="5008"/>
			<enum name="DIAMETER_ERROR_NOT_SUPPORTED_USER_DATA" code="5009"/>
			<enum name="DIAMETER_MISSING_USER_ID" code="5010"/>
			<enum name="DIAMETER_ERROR_FEATURE_UNSUPPORTED" code="5011"/>
			<enum name="DIAMETER_ERROR_USER_NO_WLAN_SUBSCRIPTION" code="5041"/>
			<enum name="DIAMETER_ERROR_W-APN_UNUSED_BY_USER" code="5042"/>
			<enum name="DIAMETER_ERROR_W-DIAMETER_ERROR_NO_ACCESS_INDEPENDENT_SUBSCRIPTION" code="5043"/>
			<enum name="DIAMETER_ERROR_USER_NO_W-APN_SUBSCRIPTION" code="5044"/>
			<enum name="DIAMETER_ERROR_USER_DATA_NOT_RECOGNIZED" code="5100"/>
			<enum name="DIAMETER_ERROR_OPERATION_NOT_ALLOWED" code="5101"/>
			<enum name="DIAMETER_ERROR_USER_DATA_CANNOT_BE_READ" code="5102"/>
			<enum name="DIAMETER_ERROR_USER_DATA_CANNOT_BE_MODIFIED" code="5103"/>
			<enum name="DIAMETER_ERROR_USER_DATA_CANNOT_BE_NOTIFIED" code="5104"/>
			<enum name="DIAMETER_ERROR_TRANSPARENT_DATA_OUT_OF_SYNC" code="5105"/>
			<enum name="DIAMETER_ERROR_START_INDICATION" code="5120"/>
			<enum name="DIAMETER_ERROR_STOP_INDICATION" code="5121"/>
			<enum name="DIAMETER_ERROR_UNKNOWN_MBMS_BEARER_SERVICE" code="5122"/>
			<enum name="DIAMETER_ERROR_INITIAL_PARAMETERS" code="5140"/>
			<enum name="DIAMETER_ERROR_TRIGGER_EVENT" code="5141"/>
		</avp>
		<avp name="E2E-Sequence" code="300" mandatory="must">
			<grouped>
				<gavp name="foo"/>
			</grouped>
		</avp>
		<!-- 301-317    Unallocated -->
<!-- AVP:s 317 - 348 Belongs to Diameter Mobile IPv4 Application and is defined in mobileipv4.xml --> 
<!-- AVP:s 363 - 408 Belongs to Diameter Network Access Server Application and is defined in nasreq.xml -->
<!-- AVP:s 411 - 461 Belongs to Carge Control and is defined in chargecontrol.xml --> 
<!-- 466-479    Unallocated -->
		<avp name="Accounting-Record-Type" code="480" mandatory="must" may-encrypt="yes" vendor-bit="mustnot">
			<type type-name="Unsigned32"/>
			<enum name="Event Record" code="1"/>
			<enum name="Start Record" code="2"/>
			<enum name="Interim Record" code="3"/>
			<enum name="Stop Record" code="4"/>
		</avp>
<!-- 481-482    Unallocated -->
		<avp name="Accounting-Realtime-Required" code="483" mandatory="must" may-encrypt="yes" vendor-bit="mustnot">
			<type type-name="Unsigned32"/>
			<enum name="Reserved" code="0"/>
			<enum name="DELIVER_AND_GRANT" code="1"/>
			<enum name="GRANT_AND_STORE" code="2"/>
			<enum name="GRANT_AND_LOSE" code="3"/>
		</avp>
<!-- 484    unallocated  -->
		<avp name="Accounting-Record-Number" code="485" mandatory="must" may-encrypt="yes" vendor-bit="mustnot">
			<type type-name="Unsigned32"/>
		</avp>
<!-- 486    unallocated  -->
		<avp name="Accounting-Sub-Session-Id" code="487" mandatory="must">
			<type type-name="Unsigned64"/>
		</avp>
		<avp name="Example-AVP" code="999999" mandatory="mustnot" vendor-bit="may">
			<grouped>
				<gavp name="Origin-Host"/>
				<gavp name="Host-IP-Address"/>
			</grouped>
		</avp>
		<!-- ************************ END DIAMETER BASE PROTOCOL AVPS ******************* -->
		<!-- 3GPP Diameter accounting AVPs  NOT IANA allocated Change when/if there is a collision-->
		<avp name="Event-Type" code="823" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<grouped>
				<gavp name="SIP-Method"/>
				<gavp name="Event"/>
				<gavp name="Content-Type"/>
				<gavp name="Content-Length"/>
				<gavp name="Content-Disposition"/>
			</grouped>
		</avp>
		<avp name="SIP-Method" code="824" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="UTF8String"/>
		</avp>
		<avp name="Event" code="825" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="UTF8String"/>
		</avp>
		<avp name="Content-Type" code="826" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="UTF8String"/>
		</avp>
		<avp name="Content-Length" code="827" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="Unsigned32"/>
		</avp>
		<avp name="Content-Disposition" code="828" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="UTF8String"/>
		</avp>
		<avp name="Role-Of-Node" code="829" mandatory="must" protected="mustnot" vendor-bit="mustnot">
			<type type-name="Unsigned32"/>
			<enum name="ORIGINATING_ROLE" code="0"/>
			<enum name="TERMINATING_ROLE" code="1"/>
		</avp>
		<avp name="User-Session-Id" code="830" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="UTF8String"/>
		</avp>
		<avp name="Calling-Party-Address" code="831" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="UTF8String"/>
		</avp>
		<avp name="Called-Party-Address" code="832" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="UTF8String"/>
		</avp>
		<avp name="Time-Stamps" code="833" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<grouped>
				<gavp name="SIP-Request-Timestamp"/>
				<gavp name="SIP-Response-Timestamp"/>
			</grouped>
		</avp>
		<avp name="SIP-Request-Timestamp" code="834" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="UTF8String"/>
		</avp>
		<avp name="SIP-Response-Timestamp" code="835" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="UTF8String"/>
		</avp>
		<avp name="Inter-Operator-Identifier" code="838" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<grouped>
				<gavp name="Originating-IOI"/>
				<gavp name="Terminating-IOI"/>
			</grouped>
		</avp>
		<avp name="Originating-IOI" code="839" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="UTF8String"/>
		</avp>
		<avp name="Terminating-IOI" code="840" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="UTF8String"/>
		</avp>
		<avp name="IMS-Charging-Identifier " code="841" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="UTF8String"/>
		</avp>
		<avp name="SDP-Session-Description" code="842" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="UTF8String"/>
		</avp>
		<avp name="SDP-Media-components" code="843" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<grouped>
				<gavp name="SDP-Media-Name"/>
				<gavp name="SDP-Media-Description"/>
			</grouped>
		</avp>
		<avp name="SDP-Media-Name" code="844" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="UTF8String"/>
		</avp>
		<avp name="SDP-Media-Description" code="845" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="UTF8String"/>
		</avp>
		<avp name="Cause" code="860" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<grouped>
				<gavp name="Cause-Code"/>
				<gavp name="Node-Functionality"/>
			</grouped>
		</avp>
		<avp name="Cause-Code" code="861" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="Integer32"/>
			<enum name="End of SUBSCRIBE dialog" code="-2"/>
			<enum name="Successful transaction" code="-1"/>
			<enum name="Normal end of session" code="0"/>
			<enum name="Unspecified error" code="1"/>
			<enum name="Unsuccessful session setup" code="2"/>
			<enum name="Internal error" code="3"/>
		</avp>
		<avp name="Node-Functionality" code="862" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<type type-name="Unsigned32"/>
			<enum name="S-CSCF" code="0"/>
			<enum name="P-CSCF" code="1"/>
			<enum name="I-CSCF" code="2"/>
			<enum name="MRFC" code="3"/>
			<enum name="MGCF" code="4"/>
			<enum name="BGCF" code="5"/>
			<enum name="AS" code="6"/>
			<enum name="UE" code="7"/>
		</avp>
		<avp name="Service-Information" code="873" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<grouped>
				<gavp name="PS-Information"/>
				<gavp name="WLAN-Information"/>
				<gavp name="IMS-Information"/>
				<gavp name="MMS-Information"/>
				<gavp name="LCS-Information"/>
				<gavp name="PoC-Information"/>
				<gavp name="MBMS-Information"/>
			</grouped>
		</avp>
		<avp name="IMS-Information" code="876" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
			<grouped>
				<gavp name="Event-Type"/>
				<gavp name="Role-Of-Node"/>
				<gavp name="Node-Functionality"/>
				<gavp name="User-Session-ID"/>
				<gavp name="Calling-Party-Address"/>
				<gavp name="Called-Party-Address"/>
				<gavp name="Time-Stamps"/>
				<gavp name="Application-Server-Information"/>
				<gavp name="Inter-Operator-Identifier"/>
				<gavp name="IMS-Charging-Identifier"/>
				<gavp name="SDP-Session-Description"/>
				<gavp name="SDP-Media-Component"/>
				<gavp name="GGSN-Address"/>
				<gavp name="Served-Party-IP-Address"/>
				<gavp name="Server-Capabilities"/>
				<gavp name="Trunk-Group-ID"/>
				<gavp name="Bearer-Service"/>
				<gavp name="Service-Id"/>
				<gavp name="Service-Specific-Data"/>
				<gavp name="Message-Body"/>
				<gavp name="Cause-Code"/>
			</grouped>
		</avp>
	</base>
	<application id="0" name="Diameter Common Messages" uri="http://www.ietf.org/rfc/rfc3588.txt?number=3588">
	</application>
	<application id="3" name="Diameter Base Accounting" uri="http://www.ietf.org/rfc/rfc3588.txt?number=3588">
	</application>
	&nasreq;
	&mobileipv4;
	&chargecontrol;
	&sunping;
	&imscxdx;
	&TGPPSh;
</dictionary>