forked from wireshark/wireshark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdictionary.xml
8908 lines (8728 loc) · 388 KB
/
dictionary.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<?type-proto key="MIPRegistrationRequest" value="mip" ?>
<?avp-proto key="Example-AVP" value="data" ?>
<!DOCTYPE dictionary SYSTEM "dictionary.dtd" [
<!-- Any files added here need to be added packaging/nsis/wireshark.nsi -->
<!ENTITY nasreq SYSTEM "nasreq.xml">
<!ENTITY eap SYSTEM "eap.xml">
<!ENTITY mobileipv4 SYSTEM "mobileipv4.xml">
<!ENTITY chargecontrol SYSTEM "chargecontrol.xml">
<!ENTITY sunping SYSTEM "sunping.xml">
<!ENTITY TGPP SYSTEM "TGPP.xml">
<!ENTITY TGPP2 SYSTEM "TGPP2.xml">
<!ENTITY sip SYSTEM "sip.xml">
<!ENTITY etsie2e4 SYSTEM "etsie2e4.xml">
<!ENTITY Ericsson SYSTEM "Ericsson.xml">
<!ENTITY mobileipv6 SYSTEM "mobileipv6.xml">
<!ENTITY Cisco SYSTEM "Cisco.xml">
<!ENTITY Starent SYSTEM "Starent.xml">
<!ENTITY Vodafone SYSTEM "Vodafone.xml">
<!ENTITY AlcatelLucent SYSTEM "AlcatelLucent.xml">
<!ENTITY Nokia SYSTEM "Nokia.xml">
<!ENTITY NokiaSolutionsAndNetworks SYSTEM "NokiaSolutionsAndNetworks.xml">
<!ENTITY HP SYSTEM "HP.xml">
<!ENTITY CiscoSystems SYSTEM "CiscoSystems.xml">
<!ENTITY Oracle SYSTEM "Oracle.xml">
<!ENTITY Juniper SYSTEM "Juniper.xml">
<!ENTITY Inovar SYSTEM "Inovar.xml">
<!ENTITY Huawei SYSTEM "Huawei.xml">
<!ENTITY VerizonWireless SYSTEM "VerizonWireless.xml">
<!ENTITY Telefonica SYSTEM "Telefonica.xml">
<!ENTITY Siemens SYSTEM "Siemens.xml">
<!ENTITY Microsoft SYSTEM "Microsoft.xml">
<!ENTITY Metaswitch SYSTEM "Metaswitch.xml">
<!ENTITY Custom SYSTEM "Custom.xml">
]>
<dictionary>
<base uri="http://www.ietf.org/rfc/rfc6733.txt">
<!-- ************************************************************** -->
<!-- *********************** Commands ***************************** -->
<!-- ************************************************************** -->
<!-- Diameter Base Protocol Command Codes -->
<!-- 0-255 RADIUS compatibility codes [http://www.iana.org/assignments/radius-types] -->
<!--256 Unassigned -->
<command name="Capabilities-Exchange" code="257" vendor-id="None"/>
<command name="Re-Auth" code="258" vendor-id="None"/>
<!-- 259 Unassigned
260 AMR / AMA [RFC4004] mobileipv4.xml
261 Unassigned
262 HAR / HAA [RFC4004] mobileipv4.xml
263-264 Unassigned
265 AAR / AAA [RFC4005] nasreq.xml
266-267 Unassigned
268 DER / DEA [RFC4072] eap.xml
269-270 Unassigned
-->
<command name="Accounting" code="271" vendor-id="None"/>
<!-- 272 CCR / CCA [RFC4006] chargecontrol.xml
273 Unassigned
-->
<command name="Abort-Session" code="274" vendor-id="None"/>
<command name="Session-Termination" code="275" vendor-id="None"/>
<!--276-279 Unassigned -->
<command name="Device-Watchdog" code="280" vendor-id="None"/>
<command name="Disconnect-Peer" code="282" vendor-id="None"/>
<!--283 UAR / UAA [RFC4740] sip.xml
284 SAR / SAA [RFC4740] sip.xml
285 LIR / LIA [RFC4740] sip.xml
286 MAR / MAA [RFC4740] sip.xml
287 RTR / RTA [RFC4740] sip.xml
288 PPR / PPA [RFC4740] sip.xml
289-299 Unassigned
300-313 Allocated for 3GPP [RFC3589]
TGPP.xml ( 300 - 309 )
-->
<command name="Boostrapping-Info" code="310" vendor-id="None"/> <!-- BIR/BIA 29.109 [7] -->
<command name="Message-Process" code="311" vendor-id="None"/> <!-- MPR/MPA 29.140 [16] -->
<command name="GBAPush-Info" code="312" vendor-id="None"/> <!-- GPR/GPI 29.109 [7] -->
<!-- 313 (Not used yet) -->
<command name="Policy-Data" code="314" vendor-id="None"/> <!-- PDR / PDA [RFC5224] -->
<command name="Policy-Install" code="315" vendor-id="None"/> <!-- (PIA) [ITU-T Rec. Q.3303.3][RFC5431] -->
<!-- http://www.3gpp.org/ftp/Specs/html-info/29272.htm -->
<command name="3GPP-Update-Location" code="316" vendor-id="None"/>
<command name="3GPP-Cancel-Location" code="317" vendor-id="None"/> <!--[3GPP TS 29.272][RFC5516] -->
<command name="3GPP-Authentication-Information" code="318" vendor-id="None"/> <!--[3GPP TS 29.272][RFC5516] -->
<command name="3GPP-Insert-Subscriber-Data" code="319" vendor-id="None"/> <!--[3GPP TS 29.272][RFC5516] -->
<command name="3GPP-Delete-Subscriber-Data" code="320" vendor-id="None"/> <!--[3GPP TS 29.272][RFC5516] -->
<command name="3GPP-Purge-UE" code="321" vendor-id="None"/> <!--[3GPP TS 29.272][RFC5516] -->
<command name="3GPP-Reset" code="322" vendor-id="None"/> <!--[3GPP TS 29.272][RFC5516] -->
<command name="3GPP-Notify" code="323" vendor-id="None"/> <!--[3GPP TS 29.272][RFC5516] -->
<command name="3GPP-ME-Identity-Check" code="324" vendor-id="None"/> <!--(ECR/ECA) [3GPP TS 29.272][RFC5516] -->
<command name="MIP6" code="325" vendor-id="None"/> <!--(MIR/MIA) [RFC5778] -->
<command name="QoS-Authorization" code="326" vendor-id="None"/> <!--(QAR/QAA) [RFC5866] -->
<command name="QoS-Install" code="327" vendor-id="None"/> <!--(QIR/QIA) [RFC5866] -->
<command name="Capabilities-Update" code="328" vendor-id="None"/> <!--[RFC6737] -->
<command name="IKEv2-SK" code="329" vendor-id="None"/> <!--[RFC6738] -->
<command name="NAT-Control" code="330" vendor-id="None"/> <!--[RFC6736] -->
<!--
331-8388607 Unassigned
8388608 WIMAX-HRPD-SFF Request/Answer [http://www.3gpp2.org/Public_html/specs/tsgx.cfm][3GPP2 X.S0058-0 v1.0][Avi_Lior]
8388609 WiMAX-Diameter-EAP-Request/Answer (WDER/WDEA) WDE [http://www.wimaxforum.org/resources/documents/technical/T33][WiMAX Release 1.5][Avi_Lior]
8388610 WiMAX-Change-of-Authorization-Request/Answer (WCAR/WCAA) WCA [http://www.wimaxforum.org/resources/documents/technical/T33][WiMAX Release 1.5][Avi_Lior]
8388611 WiMAX-Reauthentication-Request/Answer (WRAR/WRAA) WRA [http://www.wimaxforum.org/resources/documents/technical/T33][WiMAX Release 1.5][Avi_Lior]
8388612 WiMAX-Session-Termination-Request/Answer (WSTR/WSTA) WST [http://www.wimaxforum.org/resources/documents/technical/T33][WiMAX Release 1.5][Avi_Lior]
8388613 WiMAX-Abort-Session-Request/Answer (WASR/WASA) WAS [http://www.wimaxforum.org/resources/documents/technical/T33][WiMAX Release 1.5][Avi_Lior]
8388614 WiMAX-Home-Agent-IPv4-Request/Answer (WHA4R/WHA4A) WHA4 [http://www.wimaxforum.org/resources/documents/technical/T33][WiMAX Release 1.5][Avi_Lior]
8388615 WiMAX-Home-Agent-IPv6-Request/Answer (WHA6R/WHA6A) WHA6 [http://www.wimaxforum.org/resources/documents/technical/T33][WiMAX Release 1.5][Avi_Lior]
8388616 WiMAX-DHCP-Request/Answer (WDHCPR/WDHCPA) WDHCP [http://www.wimaxforum.org/resources/documents/technical/T33][WiMAX Release 1.5][Avi_Lior]
8388617 WiMAX-LAA-Request/Answer (WLAAR/WLAA) WLAA [http://www.wimaxforum.org/resources/documents/technical/T33][WiMAX Release 1.5][Avi_Lior]
8388618 WiMAX-Location-Accounting-Request/Answer (WLACR/WLACA) WLAC [http://www.wimaxforum.org/resources/documents/technical/T33][WiMAX Release 1.5][Avi_Lior]
8388619 WiMAX-Location-Measurement-Query-Request/Answer (WLMQR/WLMQA) WLMQ [http://www.wimaxforum.org/resources/documents/technical/T33][WiMAX Release 1.5][Avi_Lior]
-->
<command name="3GPP-Provide-Location" code="8388620" vendor-id="None"/> <!--(PLR/PLA) [http://www.3gpp.org/ftp/Specs/][3GPP TS 29.172 -->
<command name="3GPP-Location-Report" code="8388621" vendor-id="None"/> <!--(PLR/PLA) [http://www.3gpp.org/ftp/Specs/][3GPP TS 29.172 -->
<command name="3GPP-LCS-Routing-Info" code="8388622" vendor-id="None"/> <!--(PLR/PLA) [http://www.3gpp.org/ftp/Specs/][3GPP TS 29.172 -->
<!--
8388623 Notif-Request/Answer (NFR/NFA) [Tomas_Menzl]
8388624 Msg-Interface-Request/Answer (MIFR/MIFA) [Tomas_Menzl]
8388625 Mobile-Application-Request/Answer (MAPR/MAPA) [Tomas_Menzl]
8388626 Update Location Request/Answer (ULR / ULA) [3GPP2 publication X.S0057][Avi_Lior]
8388627 Cancel Location Request/Answer (CLR CLA) [3GPP2 publication X.S0057][Avi_Lior]
8388628 Juniper-Sync-Event (JSE) [Aleksey_Romanov]
8388629 Juniper-Session-Discovery (JSD) [Aleksey_Romanov]
8388630 Query Profile Request Answer (QPR/QPA) [3GPP2 publication X.S0057A E-UTRAN eHRPD7][Avi_Lior]
-->
<command name="Subscription Information Application" code="8388631" vendor-id="None"/>
<command name="Distributed Charging" code="8388632" vendor-id="None"/>
<command name="Ericsson-SL" code="8388633" vendor-id="None"/> <!-- Ericsson Spending Limit -->
<command name="Ericsson-SN" code="8388634" vendor-id="None"/> <!-- Ericsson Spending Status Notification -->
<command name="Spending-Limit" code="8388635" vendor-id="None"/> <!-- TGPP 29.219/Sy -->
<command name="Spending-Status-Notification" code="8388636" vendor-id="None"/> <!-- TGPP 29.219/Sy -->
<command name="TDF-Session" code="8388637" vendor-id="None"/> <!-- [3GPP TS 29.212][Kimmo_Kymalainen] -->
<command name="3GPP-Update-VCSG-Location" code="8388638" vendor-id="None"/> <!-- [3GPP TS 29.272][Kimmo_Kymalainen] -->
<command name="3GPP-Device-Action" code="8388639" vendor-id="None"/> <!--[3GPP TS 29.368][RFC5719] -->
<command name="3GPP-Device-Notification" code="8388640" vendor-id="None"/> <!--[3GPP TS 29.368][RFC5719] -->
<command name="3GPP-Subscriber-Information" code="8388641" vendor-id="None"/> <!-- 3GPP TS 29.336 -->
<command name="Cancel-VCSG-Location" code="8388642" vendor-id="None"/>
<command name="3GPP-Device-Trigger" code="8388643" vendor-id="None"/> <!-- 3GPP TS 29.337 -->
<command name="3GPP-Delivery-Report" code="8388644" vendor-id="None"/> <!-- 3GPP TS 29.337 -->
<command name="MO-Forward-Short-Message" code="8388645" vendor-id="None"/> <!-- 3GPP TS 29.338 -->
<command name="MT-Forward-Short-Message" code="8388646" vendor-id="None"/> <!-- 3GPP TS 29.338 -->
<command name="Send-Routing-Info-for-SM" code="8388647" vendor-id="None"/> <!-- 3GPP TS 29.338 -->
<command name="Alert-Service-Centre" code="8388648" vendor-id="None"/> <!-- 3GPP TS 29.338 -->
<command name="Report-SM-Delivery-Status" code="8388649" vendor-id="None"/> <!-- 3GPP TS 29.338 -->
<command name="NSN Cancel-LocationMS" code="8388650" vendor-id="None"/>
<command name="NSN User-DataMS" code="8388651" vendor-id="None"/>
<command name="NSN Profile-UpdateMS" code="8388652" vendor-id="None"/>
<command name="NSN Subscribe-NotificationsMS" code="8388653" vendor-id="None"/>
<command name="NSN Push-NotificationMS" code="8388654" vendor-id="None"/>
<command name="Get Gateway" code="8388655" vendor-id="None"/>
<command name="Trigger-Establishment" code="8388656" vendor-id="None"/>
<command name="Ericsson Binding-Data" code="8388657" vendor-id="None"/>
<!--
8388658 3GPP2 Subscriber-Information-Request/Answer (SIR/SIA) [3GPP2 X.S0068][Jun_Wang]
8388659 Verizon Session Data Recovery Request/Answer (SDR/SDA) [Niranjan_Avula]
8388660 Nokia Core Service Request/Answer (CSR/CSA) [Timo_Perala]
8388661 Nokia Extended Command Request/Answer (ECR/ECA) [Timo_Perala]
8388662 GCS-Action-Request/Answer (GAR/GAA) [3GPP TS 29.468][Kimmo_Kymalainen]
8388663 GCS-Notification-Request/Answer (GNR/GNA) [3GPP TS 29.468][Kimmo_Kymalainen]
8388664 ProSe-Subscriber-Information-Request/Answer (PIR/PIA) [3GPP TS 29.344][Kimmo_Kymalainen] TGPP.xml
8388665 Update-ProSe-Subscriber-Data-Request/Answer (UPR/UPA) [3GPP TS 29.344][Kimmo_Kymalainen] TGPP.xml
8388666 ProSe-Notify-Request/Answer (PNR/PNA) [3GPP TS 29.344][Kimmo_Kymalainen] TGPP.xml
8388667 Reset-Request/Answer (RSR/RSA) [3GPP TS 29.344][Kimmo_Kymalainen] TGPP.xml
8388668 ProSe-Authorization-Request/Answer (PAR/PAA) [3GPP TS 29.345][Kimmo_Kymalainen]
8388669 ProSe-Discovery-Request/Answer (PDR/PDA) [3GPP TS 29.345][Kimmo_Kymalainen]
8388670 ProSe-Match-Request/Answer (PMR/PMA) [3GPP TS 29.345][Kimmo_Kymalainen]
8388671 ProSe-Match-Report-Info-Request/Answer (PIR/PIA) [3GPP TS 29.345][Kimmo_Kymalainen]
8388672 ProSe-Proximity-Request/Answer (PRR/PRA) [3GPP TS 29.345][Kimmo_Kymalainen]
8388673 ProSe-Location-Update-Request (PLR/PLA) [3GPP TS 29.345][Kimmo_Kymalainen]
8388674 ProSe-Alert-Request/Answer (ALR/ALA) [3GPP TS 29.345][Kimmo_Kymalainen]
8388675 ProSe-Cancellation-Request/Answer (RPR/RPA) [3GPP TS 29.345][Kimmo_Kymalainen]
8388676 ProXimity-Action-Request/Answer (PXR/PXA) [3GPP TS 29.343][Kimmo_Kymalainen]
8388677 Rivada Xd DSC-Registration-Request/Answer (DDRR/DDRA) [Vincent_D_Onofrio]
8388678 Rivada Xd Heart-Beat-Request/Answer (DHBR/DHBA) [Vincent_D_Onofrio]
8388679 Rivada Xd Cell-Info-Transfer-Request/Answer (DCTR/DCTA) [Vincent_D_Onofrio]
8388680 Rivada Xd Cell-Info-Notification-Request/Answer (DCNR/DCNA) [Vincent_D_Onofrio]
8388681 Rivada Xd Cell-Info-Modification-Request/Answer (DIMR/DIMA) [Vincent_D_Onofrio]
8388682 Rivada Xd Cell-Info-Modification-Notification-Request/Answer (DINR/DINA) [Vincent_D_Onofrio]
8388683 Rivada Xd Resource-Allocation-Request/Answer (DRAR/DRAA) [Vincent_D_Onofrio]
8388684 Rivada Xd Resource-Allocation-Notification-Request/Answer (DANR/DANA) [Vincent_D_Onofrio]
8388685 Rivada Xd Resource-Modification-Request/Answer (DRMR/DRMA) [Vincent_D_Onofrio]
8388686 Rivada Xd Resource-Modification-Notification-Request/Answer (DMNR/DMNA) [Vincent_D_Onofrio]
8388687 Rivada Xd Resource-Hold-Request/Answer (DRHR/DRHA) [Vincent_D_Onofrio]
8388688 Rivada Xd Resource-Hold-Notification-Request/Answer (DHNR/DHNA) [Vincent_D_Onofrio]
8388689 Rivada Xd Resource-Resume-Request/Answer (DRSR/DRSA) [Vincent_D_Onofrio]
8388690 Rivada Xd Resource-Resume-Notification-Request/Answer (DSNR/DSNA) [Vincent_D_Onofrio]
8388691 Rivada Xd Resource-Usage-Update-Request/Answer (DRUR/DRUA) [Vincent_D_Onofrio]
8388692 Rivada Xd Resource-Usage-Notification-Request/Answer (DUNR/DUNA) [Vincent_D_Onofrio]
8388693 Rivada Xd Resource-Release-Request/Answer (DRRR/DRRA) [Vincent_D_Onofrio]
8388694 Rivada Xd Resource-Release-Notification-Request/Answer (DRNR/DRNA) [Vincent_D_Onofrio]
8388695 Rivada Xm Resource-Allocation-Request/Answer (MRAR/MRAA) [Vincent_D_Onofrio]
8388696 Rivada Xm Resource-Hold-Request/Answer (MRHR/MRHA) [Vincent_D_Onofrio]
8388697 Rivada Xm Resource-Release-Request/Answer (MRRR/MRRA) [Vincent_D_Onofrio]
8388698 Rivada Xm Resource-Modify-Request/Answer (MRMR/MRMA) [Vincent_D_Onofrio]
8388699 Rivada Xm Resource-Allocation-Notify-Request/Answer (MANR/MANA) [Vincent_D_Onofrio]
8388700 Rivada Xm Resource-Resume-Request/Answer (MRSR/MRSA) Vincent_D_Onofrio]
8388701 Rivada Xm Add-UE-Context-Request/Answer (MAUR/MAUA) [Vincent_D_Onofrio]
8388702 Rivada Xm Update-UE-Context-Request/Answer (MUUR/MUUA) [Vincent_D_Onofrio]
8388703 Rivada Xm Delete-UE-Context-Request/Answer (MDUR/MDUA) [Vincent_D_Onofrio]
8388704 Rivada Xm Detach-UE-Request/Answer (MDTR/MDTA) [Vincent_D_Onofrio]
8388705 Rivada Xm Page-UE-Request/Answer (MPUR/MPUA)[Vincent_D_Onofrio]
8388706 Rivada Xm Heart-Beat-Request/Answer (MHBR/MHBA) [Vincent_D_Onofrio]
8388707 Rivada Xa DPC-Registration-Request/Answer (ADRR/ADRA) [Vincent_D_Onofrio]
8388708 Rivada Xa Heart-Beat-Request/Answer (AHBR/AHBA) [Vincent_D_Onofrio]
8388709 Rivada Xa Resource-Allocation-Request/Answer (ARAR/ARAA) [Vincent_D_Onofrio]
8388710 Rivada Xa Resource-Release-Request/Answer (ARRR/ARRA) [Vincent_D_Onofrio]
8388711 Rivada Xa Resource-Release-Notification-Request/Answer (ARNR/ARNA) [Vincent_D_Onofrio]
8388712 Rivada Xh User-Data-Request/Answer (HUDR/HUDA) [Vincent_D_Onofrio]
8388713 ProSe-Initial-Location-Information-Request/Answer (PSR/PSA) [3GPP TS 29.344][Kimmo_Kymalainen] TGPP.xml
8388714 Nokia Session-Sync-Request/Answer (SSR/SSA) [Timo_Perala]
8388715 Nokia Session-Mass-Sync-Request/Answer (SMR/SMA) [Timo_Perala]
8388716 Nokia Fetch-Session-Request/Answer (FSR/FSA) [Timo_Perala]
-->
<command name="Ericsson Trace-Report" code="8388717" vendor-id="None"/>
<command name="Configuration-Information" code="8388718" vendor-id="None"/>
<command name="Reporting-Information" code="8388719" vendor-id="None"/>
<command name="Non-Aggregated-RUCI-Report" code="8388720" vendor-id="None"/>
<command name="Aggregated-RUCI-Report" code="8388721" vendor-id="None"/>
<command name="Modify-Uecontext" code="8388722" vendor-id="None"/>
<!--
8388723 Background-Data-Transfer-Request/Answer (BTR/BTA) [3GPP TS 29.154][Kimmo_Kymalainen]
8388724 Network-Status-Request/Answer (NSR/NSA) [3GPP TS 29.153][Kimmo_Kymalainen]
8388725 Network-Status-Continuous-Report-Request/Answer (NCR/NCA) [3GPP TS 29.153][Kimmo_Kymalainen]
-->
<command name="NIDD-Information" code="8388726" vendor-id="None"/> <!-- 3GPP TS 29.336 -->
<!--
8388727 ProXimity-Application-Request/Answer (XAR/XAA) [3GPP TS 29.343][Kimmo_Kymalainen]
8388728 Data-Pull-Request/Answer (DPR/DPA) [3GPP TS 29.283][Kimmo_Kymalainen]
8388729 Data-Update-Request/Answer (DMR/DMA) [3GPP TS 29.283][Kimmo_Kymalainen]
8388730 Notification-Data-Request/Answer (NDR/NDA) [3GPP TS 29.283][Kimmo_Kymalainen]
8388731 TSSF-Notification-Request/Answer (TNR/TNA) [3GPP TS 29.212][Kimmo_Kymalainen]
-->
<command name="Connection-Management" code="8388732" vendor-id="None"/> <!-- 3GPP TS 29.128 -->
<command name="MO-Data" code="8388733" vendor-id="None"/> <!-- 3GPP TS 29.128 -->
<command name="MT-Data" code="8388734" vendor-id="None"/> <!-- 3GPP TS 29.128 -->
<!--
8388658-16777213 Unassigned
16777214 Experimental code [RFC3588]
16777215 Experimental code [RFC3588]
-->
<!-- ************************************************************** -->
<!-- ********************** End Commands ************************** -->
<!-- ************************************************************** -->
<!-- ************************************************************** -->
<!-- ************************ 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="Unsigned32"/>
<typedefn type-name="AppId" type-parent="Unsigned32"/>
<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="Integer32"/>
<typedefn type-name="DiameterURI" type-parent="UTF8String"/>
<typedefn type-name="Float32"/>
<!--
This represents floating point values of single precision as
described by [FLOATPOINT]. The 32-bit value is transmitted in
network byte order. The AVP Length field MUST be set to 12 (16 if
the 'V' bit is enabled).
-->
<typedefn type-name="Float64"/>
<!--
This represents floating point values of double precision as
described by [FLOATPOINT]. The 64-bit value is transmitted in
network byte order. The AVP Length field MUST be set to 16 (20 if
the 'V' bit is enabled).
-->
<typedefn type-name="OctetStringOrUTF8" type-parent="OctetString"/>
<!-- A Wireshark extension to be able to use
BASE_SHOW_ASCII_PRINTABLE 0x00010000 show byte array as ASCII if it's all printable characters
-->
<!-- ************************************************************** -->
<!-- ************************* 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="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="OctetString"/>
</avp>
<avp name="CHAP-Password" code="3" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="OctetString"/>
</avp>
<avp name="NAS-IP-Address" code="4" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="OctetString"/>
</avp>
<avp name="NAS-Port" code="5" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="Unsigned32"/>
</avp>
<avp name="Service-Type" code="6" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="Enumerated"/>
<enum name="Unknown" code="0"/>
<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"/>
<enum name="Framed-Management" code="18"/>
</avp>
<avp name="Framed-Protocol" code="7" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="Enumerated"/>
<enum name="PPP" code="1"/>
<enum name="SLIP" code="2"/>
<enum name="ARAP" code="3"/>
<enum name="Gandalf" code="4"/>
<enum name="Xylogics" code="5"/>
<enum name="X.75" code="6"/>
<enum name="GPRS PDP Context" code="7"/>
<enum name="Ascend-ARA" code="255"/>
<enum name="MPP" code="256"/>
<enum name="EURAW" code="257"/>
<enum name="EUUI" code="258"/>
<enum name="X25" code="259"/>
<enum name="COMB" code="260"/>
<enum name="FR" code="261"/>
</avp>
<avp name="Framed-IP-Address" code="8" mandatory="must" protected="may" may-encrypt="yes" vendor-bit="mustnot">
<type type-name="IPAddress"/>
</avp>
<avp name="Framed-IP-Netmask" code="9" mandatory="must" protected="may" may-encrypt="yes" vendor-bit="mustnot">
<type type-name="IPAddress"/>
</avp>
<avp name="Framed-Routing" code="10" mandatory="must" protected="may" may-encrypt="yes" vendor-bit="mustnot">
<type type-name="Enumerated"/>
<enum name="None" code="0"/>
<enum name="Send routing packets" code="1"/>
<enum name="Listen for routing packets" code="2"/>
<enum name="Send and Listen " code="3"/>
</avp>
<avp name="Filter-Id" code="11" mandatory="must" protected="may" may-encrypt="yes" vendor-bit="mustnot">
<type type-name="UTF8String"/>
</avp>
<avp name="Framed-MTU" code="12" mandatory="must" protected="may" may-encrypt="yes" vendor-bit="mustnot">
<type type-name="Unsigned32"/>
</avp>
<avp name="Framed-Compression" code="13" mandatory="must" protected="may" may-encrypt="yes" vendor-bit="mustnot">
<type type-name="Enumerated"/>
<enum name="None" code="0"/>
<enum name="Van Jacobson TCP/IP header compression" code="1"/>
<enum name="IPX header compression" code="2"/>
<enum name="Stac-LZS compression" code="3"/>
</avp>
<avp name="Login-IP-Host" code="14" mandatory="must" protected="may" may-encrypt="yes" vendor-bit="mustnot">
<type type-name="IPAddress"/>
</avp>
<avp name="Login-Service" code="15" mandatory="must" protected="may" may-encrypt="yes" vendor-bit="mustnot">
<type type-name="Enumerated"/>
<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="Unassigned" code="7"/>
<enum name="TCP Clear Quiet (suppresses any NAS-generated connect string)" code="8"/>
</avp>
<avp name="Login-TCP-Port" code="16" mandatory="must" protected="may" may-encrypt="yes" vendor-bit="mustnot">
<type type-name="Unsigned32"/>
</avp>
<!-- AVP 17 unassigned -->
<avp name="Reply-Message" code="18" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="UTF8String"/>
</avp>
<avp name="Callback-Number" code="19" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="UTF8String"/>
</avp>
<avp name="Callback-Id" code="20" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="UTF8String"/>
</avp>
<!-- AVP 21 unassigned -->
<avp name="Framed-Route" code="22" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="UTF8String"/>
</avp>
<avp name="Framed-IPX-Network" code="23" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="UTF8String"/>
</avp>
<avp name="State" code="24" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="OctetString"/>
</avp>
<avp name="Class" code="25" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="OctetString"/>
</avp>
<avp name="Vendor-Specific" code="26" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="Unsigned32"/>
<!-- Should vendors be enum'ed? -->
</avp>
<avp name="Session-Timeout" code="27" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="Unsigned32"/>
</avp>
<avp name="Idle-Timeout" code="28" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="Unsigned32"/>
</avp>
<avp name="Termination-Action" code="29" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="Enumerated"/>
<enum name="Default" code="0"/>
<enum name="RADIUS-Request" code="1"/>
</avp>
<avp name="Called-Station-Id" code="30" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="UTF8String"/>
</avp>
<avp name="Calling-Station-Id" code="31" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="UTF8String"/>
</avp>
<avp name="NAS-Identifier" code="32" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="UTF8String"/>
</avp>
<avp name="Proxy-State" code="33" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="OctetString"/>
</avp>
<avp name="Login-LAT-Service" code="34" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="OctetString"/>
</avp>
<avp name="Login-LAT-Node" code="35" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="OctetString"/>
</avp>
<avp name="Login-LAT-Group" code="36" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="OctetString"/>
</avp>
<avp name="Framed-AppleTalk-Link" code="37" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="Unsigned32"/>
</avp>
<avp name="Framed-AppleTalk-Network" code="38" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="Unsigned32"/>
</avp>
<avp name="Framed-AppleTalk-Zone" code="39" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="OctetString"/>
</avp>
<avp name="Acct-Status-Type" code="40">
<type type-name="Enumerated"/>
<enum name="Start" code="1"/>
<enum name="Stop" code="2"/>
<enum name="Interim-Update" code="3"/>
<enum name="Modem-Start" code="4"/>
<enum name="Modem-Stop" code="5"/>
<enum name="Cancel" code="6"/>
<enum name="Accounting-On" code="7"/>
<enum name="Accounting-Off" code="8"/>
<!-- 9-14 Reserved for Tunnel Accounting -->
<enum name="Tunnel-Start" code="9"/>
<enum name="Tunnel-Stop" code="10"/>
<enum name="Tunnel-Reject" code="11"/>
<enum name="Tunnel-Link-Start" code="12"/>
<enum name="Tunnel-Link-Stop" code="13"/>
<enum name="Tunnel-Link-Rejectf" code="14"/>
<!-- 15 Reserved for Tunnel Failed -->
<enum name="Failed" code="15"/>
</avp>
<avp name="Acct-Delay-Time" code="41" mandatory="must" protected="may" may-encrypt="yes" vendor-bit="mustnot">
<type type-name="Unsigned32"/>
</avp>
<avp name="Acct-Input-Octets" code="42" mandatory="may">
<type type-name="Unsigned32"/>
</avp>
<avp name="Acct-Output-Octets" code="43" mandatory="may">
<type type-name="Unsigned32"/>
</avp>
<avp name="Acct-Session-Id" code="44" mandatory="must" protected="may" may-encrypt="yes" vendor-bit="mustnot">
<type type-name="OctetString"/>
<!-- See https://gitlab.com/wireshark/wireshark/-/issues/5411 -->
</avp>
<avp name="Acct-Authentic" code="45" mandatory="must" protected="may" may-encrypt="yes" vendor-bit="mustnot">
<type type-name="Enumerated"/>
<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="must" protected="may" may-encrypt="yes" vendor-bit="mustnot">
<type type-name="Unsigned32"/>
</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="Enumerated"/>
<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="UTF8String"/>
</avp>
<avp name="Acct-Link-Count" code="51" mandatory="must" protected="may" may-encrypt="yes" vendor-bit="mustnot">
<type type-name="Unsigned32"/>
</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 54 unassigned -->
<avp name="Event-Timestamp" code="55" mandatory="must" may-encrypt="no" protected="mustnot" vendor-bit="mustnot">
<type type-name="Time"/>
</avp>
<avp name="Egress-VLANID" code="56" mandatory="must" protected="may" may-encrypt="yes" vendor-bit="mustnot">
<type type-name="OctetString"/>
</avp>
<avp name="Ingress-Filters" code="57" mandatory="must" protected="may" may-encrypt="yes" vendor-bit="mustnot">
<type type-name="Enumerated"/>
<enum name="Enabled" code="1"/>
<enum name="Disabled" code="2"/>
</avp>
<avp name="Egress-VLAN-Name" code="58" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="UTF8String"/>
</avp>
<avp name="User-Priority-Table" code="59" mandatory="must" protected="may" may-encrypt="yes" vendor-bit="mustnot">
<type type-name="OctetString"/>
</avp>
<avp name="CHAP-Challenge" code="60" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="OctetString"/>
</avp>
<avp name="NAS-Port-Type" code="61" mandatory="must" may-encrypt="yes" protected="may" vendor-bit="mustnot">
<type type-name="Enumerated"/>
<enum name="Async" code="0"/>
<enum name="Sync" code="1"/>
<enum name="ISDN-Sync" code="2"/>
<enum name="ISDN-Async-v120" code="3"/>
<enum name="ISDN-Async-v110" code="4"/>
<enum name="Virtual" code="5"/>
<enum name="PIAFS" code="6"/>
<enum name="HDLC-Clear-Channel" code="7"/>
<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"/>