aboutsummaryrefslogtreecommitdiffstats
path: root/radius/dictionary.usr
blob: 7bf9942ac931e5bafc3bea656f8e0fcec6a38e77 (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
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
# -*- text -*-
#
# dictionary.usr	USR Robotics dictionary.
#
#		Taken from the dictionary included with the USR RADIUS server,
#		and adjusted a bit.
#
# Version:	$Id$
#

#
#	USR specific attributes
#
# Prompt value should be 1 for echo, 0 for no echo, default 1.
#ATTRIBUTE	Prompt			64	integer
ATTRIBUTE	Multi-Link-Flag				126	integer
ATTRIBUTE	Char-Noecho				250	integer

#
#	USR specific Integer Translations
#

#Taken from the website:
#https://bitbucket.org/02strich/openvpn-auth-radius/src/b52f7f5e1acd/RadiusClass/utilities/dictionary
#

VALUE	Termination-Action		Manage-Resources	2

VALUE	Acct-Status-Type		Modem-Start		4
VALUE	Acct-Status-Type		Modem-Stop		5
VALUE	Acct-Status-Type		Cancel			6

VALUE	Multi-Link-Flag			True			1
VALUE	Multi-Link-Flag			False			0

#	USR specific Authentication Types

#
#  These are commented out because the conflict with the standard
#  definitions.
#
#VALUE		Acct-Authentic		None			0
#VALUE		Acct-Authentic		Remote			3
#VALUE		Acct-Authentic		RADIUS			4
#VALUE		Acct-Authentic		MNET			5
#VALUE		Acct-Authentic		KCHAP			6
#VALUE		Acct-Authentic		TACACS			7
#VALUE		Acct-Authentic		Realm			8
#VALUE		Acct-Authentic		Local			9
#VALUE		Acct-Authentic		File			10
#VALUE		Acct-Authentic		Local-VPN		11

#
#	USR Extensions: USR Vendor-Specific stuff.
#
#	For now in NMC format (whatever that stands for), though the
#	normal vendor-specific format would work just as well.
#
#
VENDOR		USR				429	format=4,0
BEGIN-VENDOR	USR

ATTRIBUTE	USR-Last-Number-Dialed-Out		0x0066	string
ATTRIBUTE	USR-Last-Number-Dialed-In-DNIS		0x00E8	string
ATTRIBUTE	USR-Last-Callers-Number-ANI		0x00E9	string
ATTRIBUTE	USR-Channel				0xBF38	integer
ATTRIBUTE	USR-Event-Id				0xBFBE	integer
ATTRIBUTE	USR-Event-Date-Time			0xBF2F	date
ATTRIBUTE	USR-Call-Start-Date-Time		0xBFF7	date
ATTRIBUTE	USR-Call-End-Date-Time			0xBFF6	date
ATTRIBUTE	USR-Default-DTE-Data-Rate		0x005E	integer
ATTRIBUTE	USR-Initial-Rx-Link-Data-Rate		0xBF2D	integer
ATTRIBUTE	USR-Final-Rx-Link-Data-Rate		0xBF2C	integer
ATTRIBUTE	USR-Initial-Tx-Link-Data-Rate		0x006A	integer
ATTRIBUTE	USR-Final-Tx-Link-Data-Rate		0x006B	integer
ATTRIBUTE	USR-Chassis-Temperature			0xBF31	integer
ATTRIBUTE	USR-Chassis-Temp-Threshold		0xBE84	integer
ATTRIBUTE	USR-Actual-Voltage			0xBF32	integer
ATTRIBUTE	USR-Expected-Voltage			0xBF33	integer
ATTRIBUTE	USR-Power-Supply-Number			0xBF34	integer
ATTRIBUTE	USR-Card-Type				0xBE85	integer
ATTRIBUTE	USR-Chassis-Slot			0xBF39	integer
ATTRIBUTE	USR-Sync-Async-Mode			0x0067	integer
ATTRIBUTE	USR-Originate-Answer-Mode		0x0068	integer
ATTRIBUTE	USR-Modulation-Type			0x006C	integer
ATTRIBUTE	USR-Connect-Term-Reason			0x009B	integer
ATTRIBUTE	USR-Failure-to-Connect-Reason		0x0069	integer
ATTRIBUTE	USR-Equalization-Type			0x006F	integer
ATTRIBUTE	USR-Fallback-Enabled			0x0070	integer
ATTRIBUTE	USR-Connect-Time-Limit			0xBFE7	integer
ATTRIBUTE	USR-Number-of-Rings-Limit		0xBFE6	integer
ATTRIBUTE	USR-DTE-Data-Idle-Timout		0x0048	integer
ATTRIBUTE	USR-Characters-Sent			0x0071	integer
ATTRIBUTE	USR-Characters-Received			0x0072	integer
ATTRIBUTE	USR-Blocks-Sent				0x0075	integer
ATTRIBUTE	USR-Blocks-Received			0x0076	integer
ATTRIBUTE	USR-Blocks-Resent			0x0077	integer
ATTRIBUTE	USR-Retrains-Requested			0x0078	integer
ATTRIBUTE	USR-Retrains-Granted			0x0079	integer
ATTRIBUTE	USR-Line-Reversals			0x007A	integer
ATTRIBUTE	USR-Number-Of-Characters-Lost		0x007B	integer
ATTRIBUTE	USR-Number-of-Blers			0x007D	integer
ATTRIBUTE	USR-Number-of-Link-Timeouts		0x007E	integer
ATTRIBUTE	USR-Number-of-Fallbacks			0x007F	integer
ATTRIBUTE	USR-Number-of-Upshifts			0x0080	integer
ATTRIBUTE	USR-Number-of-Link-NAKs			0x0081	integer
ATTRIBUTE	USR-DTR-False-Timeout			0x00BE	integer
ATTRIBUTE	USR-Fallback-Limit			0x00BF	integer
ATTRIBUTE	USR-Block-Error-Count-Limit		0x00C0	integer
ATTRIBUTE	USR-DTR-True-Timeout			0x00DA	integer
ATTRIBUTE	USR-Security-Login-Limit		0xBEDE	integer
ATTRIBUTE	USR-Security-Resp-Limit			0xBEFA	integer
ATTRIBUTE	USR-DTE-Ring-No-Answer-Limit		0xBF17	integer
ATTRIBUTE	USR-Back-Channel-Data-Rate		0x007C	integer
ATTRIBUTE	USR-Simplified-MNP-Levels		0x0099	integer
ATTRIBUTE	USR-Simplified-V42bis-Usage		0x00C7	integer
ATTRIBUTE	USR-Mbi_Ct_PRI_Card_Slot		0x0184	integer
ATTRIBUTE	USR-Mbi_Ct_TDM_Time_Slot		0x0185	integer
ATTRIBUTE	USR-Mbi_Ct_PRI_Card_Span_Line		0x0186	integer
ATTRIBUTE	USR-Mbi_Ct_BChannel_Used		0x0187	integer
ATTRIBUTE	USR-Physical-State			0xBE77	integer
ATTRIBUTE	USR-Packet-Bus-Session			0xBF14	integer
ATTRIBUTE	USR-Server-Time				0xF000	date

# 0xBE5D-0xBE63 sent with Event-Id 79
ATTRIBUTE	USR-Channel-Connected-To		0xBE5D	integer
ATTRIBUTE	USR-Slot-Connected-To			0xBE5E	integer
ATTRIBUTE	USR-Device-Connected-To			0xBE5F	integer
ATTRIBUTE	USR-NFAS-ID				0xBE60	integer
ATTRIBUTE	USR-Q931-Call-Reference-Value		0xBE61	integer
ATTRIBUTE	USR-Call-Event-Code			0xBE62	integer
ATTRIBUTE	USR-DS0					0xBE63	integer
# DS0s sent with Event-Id 77,78
ATTRIBUTE	USR-DS0s				0xBE64	string
# Gateway-IP-Address sent with Event-Id 71,72
ATTRIBUTE	USR-Gateway-IP-Address			0xBE66	ipaddr

#
#
#
ATTRIBUTE	CW-Version-Id				0x8000	integer
ATTRIBUTE	CW-Account-Id				0x8001	string
ATTRIBUTE	CW-Acct-Type				0x8002	integer
ATTRIBUTE	CW-Acct-Identification-Code		0x8003	integer
ATTRIBUTE	CW-Service-Type				0x8004	integer
ATTRIBUTE	CW-Rate-Plan-Id				0x8005	integer
ATTRIBUTE	CW-Source-Identifier			0x8006	integer
ATTRIBUTE	CW-Session-Id				0x8007	string
ATTRIBUTE	CW-Num-Call-Attempt-Session		0x8008	integer
ATTRIBUTE	CW-Session-Sequence-Num			0x8009	integer
ATTRIBUTE	CW-Session-Sequence-End			0x800a	integer
ATTRIBUTE	CW-Authentication-Fail-Cnt		0x800b	integer
ATTRIBUTE	CW-Clg-Party-E164-Type			0x800c	integer
ATTRIBUTE	CW-Clg-Party-E164-Number		0x800d	string
ATTRIBUTE	CW-Clg-Party-Trans-Protocol		0x800e	integer
ATTRIBUTE	CW-Clg-Party-Trans-Port			0x800f	integer
ATTRIBUTE	CW-Clg-Party-Trans-IP			0x8010	ipaddr
ATTRIBUTE	CW-Clg-Party-Trans-DNS			0x8011	string
ATTRIBUTE	CW-Cld-Party-E164-Type			0x8012	integer
ATTRIBUTE	CW-Cld-Party-E164-Number		0x8013	string
ATTRIBUTE	CW-Cld-Party-Trans-Protocol		0x8014	integer
ATTRIBUTE	CW-Cld-Party-Trans-Port			0x8015	integer
ATTRIBUTE	CW-Cld-Party-Trans-IP			0x8016	ipaddr
ATTRIBUTE	CW-Cld-Party-Trans-DNS			0x8017	string
ATTRIBUTE	CW-Orig-Line-Identifier			0x8018	integer
ATTRIBUTE	CW-PSTN-Interface-Number		0x8019	integer
ATTRIBUTE	CW-Ingr-Gway-E164-Type			0x801a	integer
ATTRIBUTE	CW-Ingr-Gway-E164-Number		0x801b	string
ATTRIBUTE	CW-Ingr-Gway-Trans-Protocol		0x801c	integer
ATTRIBUTE	CW-Ingr-Gway-Trans-Port			0x801d	integer
ATTRIBUTE	CW-Ingr-Gway-Trans-IP			0x801e	ipaddr
ATTRIBUTE	CW-Ingr-Gway-Trans-DNS			0x801f	string
ATTRIBUTE	CW-Egr-Gway-Trans-Protocol		0x8020	integer
ATTRIBUTE	CW-Egr-Gway-Trans-Port			0x8021	integer
ATTRIBUTE	CW-Egr-Gway-Trans-IP			0x8022	ipaddr
ATTRIBUTE	CW-Egr-Gway-Trans-DNS			0x8023	string
ATTRIBUTE	CW-Ingr-Gtkpr-Trans-Protocol		0x8024	integer
ATTRIBUTE	CW-Ingr-Gtkpr-Trans-Port		0x8025	integer
ATTRIBUTE	CW-Ingr-Gtkpr-Trans-IP			0x8026	ipaddr
ATTRIBUTE	CW-Ingr-Gtkpr-Trans-DNS			0x8027	string
ATTRIBUTE	CW-Egr-Gtkpr-Trans-Protocol		0x8028	integer
ATTRIBUTE	CW-Egr-Gtkpr-Trans-Port			0x8029	integer
ATTRIBUTE	CW-Egr-Gtkpr-Trans-IP			0x802a	ipaddr
ATTRIBUTE	CW-Egr-Gtkpr-Trans-DNS			0x802b	string
ATTRIBUTE	CW-Call-Identifier			0x802c	string
ATTRIBUTE	CW-Call-Type				0x802d	integer
ATTRIBUTE	CW-Call-Start-Ingr-GW-Sec		0x802e	string
ATTRIBUTE	CW-Call-Start-Ingr-GW-Msec		0x802f	integer
ATTRIBUTE	CW-Call-Start-Time-Ans-Sec		0x8030	string
ATTRIBUTE	CW-Call-Start-Time-Ans-Msec		0x8031	integer
ATTRIBUTE	CW-Call-End-Time-Sec			0x8032	string
ATTRIBUTE	CW-Call-End-Time-Msec			0x8033	integer
ATTRIBUTE	CW-Call-Durn-Connect-Disc		0x8034	integer
ATTRIBUTE	CW-Codec-Type				0x8035	integer
ATTRIBUTE	CW-Call-Termination-Cause		0x8036	integer
ATTRIBUTE	CW-Audio-Packets-Sent			0x8037	integer
ATTRIBUTE	CW-Audio-Packets-Received		0x8038	integer
ATTRIBUTE	CW-Audio-Packets-Lost			0x8039	integer
ATTRIBUTE	CW-Audio-Packets-In-Frame		0x803a	integer
ATTRIBUTE	CW-Audio-Bytes-In-Frame			0x803b	integer
ATTRIBUTE	CW-Audio-Signal-In-Packet		0x803c	integer
ATTRIBUTE	CW-Port-Id-For-Call			0x803d	integer
ATTRIBUTE	CW-Slot-Id-For-Call			0x803e	integer
ATTRIBUTE	CW-Acct-Balance-Start-Curr		0x803f	integer
ATTRIBUTE	CW-Acct-Balance-Start-Amt		0x8040	integer
ATTRIBUTE	CW-Acct-Balance-Start-Dec		0x8041	integer
ATTRIBUTE	CW-Acct-Balance-Decr-Curr		0x8042	integer
ATTRIBUTE	CW-LRQ-Token				0x8043	string
ATTRIBUTE	CW-ARQ-Token				0x8044	string
ATTRIBUTE	CW-Token-Status				0x8045	integer
ATTRIBUTE	CW-SS7-Destn-Ptcode-Type		0x8046	integer
ATTRIBUTE	CW-SS7-Destn-Ptcode-Address		0x8047	integer
ATTRIBUTE	CW-SS7-Orig-Ptcode-Type			0x8048	integer
ATTRIBUTE	CW-SS7-Orig-Ptcode-Address		0x8049	integer
ATTRIBUTE	CW-SS7-CIC				0x804a	integer
ATTRIBUTE	CW-MGC-Id				0x804b	integer
ATTRIBUTE	CW-MG-Id				0x804c	integer
ATTRIBUTE	CW-Signaling-Protocol			0x804d	integer
ATTRIBUTE	CW-Protocol-Transport			0x804e	integer
ATTRIBUTE	CW-Local-Sig-Trans-Protocol		0x804f	integer
ATTRIBUTE	CW-Local-Sig-Trans-Port			0x8050	integer
ATTRIBUTE	CW-Local-Sig-Trans-IP			0x8051	ipaddr
ATTRIBUTE	CW-Local-Sig-Trans-DNS			0x8052	string
ATTRIBUTE	CW-Remote-Sig-Trans-Protocol		0x8053	integer
ATTRIBUTE	CW-Remote-Sig-Trans-Port		0x8054	integer
ATTRIBUTE	CW-Remote-Sig-Trans-IP			0x8055	ipaddr
ATTRIBUTE	CW-Remote-Sig-Trans-DNS			0x8056	string
ATTRIBUTE	CW-Local-MG-RTP-Protocol		0x8057	integer
ATTRIBUTE	CW-Local-MG-RTP-Port			0x8058	integer
ATTRIBUTE	CW-Local-MG-RTP-IP			0x8059	ipaddr
ATTRIBUTE	CW-Local-MG-RTP-DNS			0x805a	string
ATTRIBUTE	CW-Remote-MG-RTP-Protocol		0x805b	integer
ATTRIBUTE	CW-Remote-MG-RTP-Port			0x805c	integer
ATTRIBUTE	CW-Remote-MG-RTP-IP			0x805d	ipaddr
ATTRIBUTE	CW-Remote-MG-RTP-DNS			0x805e	string
ATTRIBUTE	CW-Call-Model				0x805f	integer
ATTRIBUTE	CW-Call-Plan-Id				0x8060	integer
ATTRIBUTE	CW-Trans-Cld-Party-E164-Type		0x8061	integer
ATTRIBUTE	CW-Trans-Cld-Party-E164-Num		0x8062	string
ATTRIBUTE	CW-OSP-Source-Device			0x8063	string

#
# These are CCA Radius attributes
#
ATTRIBUTE	USR-PW_USR_IFilter_IP			0x9000	string
ATTRIBUTE	USR-PW_USR_IFilter_IPX			0x9001	string
ATTRIBUTE	USR-PW_USR_OFilter_IP			0x9003	string
ATTRIBUTE	USR-PW_USR_OFilter_IPX			0x9004	string
ATTRIBUTE	USR-PW_USR_OFilter_SAP			0x9005	string
ATTRIBUTE	USR-PW_VPN_ID				0x9006	string
ATTRIBUTE	USR-PW_VPN_Name				0x9007	string
ATTRIBUTE	USR-PW_VPN_Neighbor			0x9008	ipaddr
ATTRIBUTE	USR-PW_Framed_Routing_V2		0x9009	string
ATTRIBUTE	USR-PW_VPN_Gateway			0x900a	string
ATTRIBUTE	USR-PW_Tunnel_Authentication		0x900b	string
ATTRIBUTE	USR-PW_Index				0x900c	string
ATTRIBUTE	USR-PW_Cutoff				0x900d	string
ATTRIBUTE	USR-PW_Packet				0x900e	string
ATTRIBUTE	USR-Primary_DNS_Server			0x900f	ipaddr
ATTRIBUTE	USR-Secondary_DNS_Server		0x9010	ipaddr
ATTRIBUTE	USR-Primary_NBNS_Server			0x9011	ipaddr
ATTRIBUTE	USR-Secondary_NBNS_Server		0x9012	ipaddr
ATTRIBUTE	USR-Syslog-Tap				0x9013	integer
ATTRIBUTE	USR-Chassis-Call-Slot			0x9019	integer
ATTRIBUTE	USR-Chassis-Call-Span			0x901A	integer
ATTRIBUTE	USR-Chassis-Call-Channel		0x901B	integer
ATTRIBUTE	USR-Keypress-Timeout			0x901C	integer
ATTRIBUTE	USR-Unauthenticated-Time		0x901D	integer
ATTRIBUTE	USR-Connect-Speed			0x9023	integer
ATTRIBUTE	USR-Framed_IP_Address_Pool_Name		0x9024	string #it is RAD-IP-Address-Pool in our code
ATTRIBUTE	USR-MP-EDO				0x9025	string

#
# Pilgrim attributes
#
ATTRIBUTE	USR-Bearer-Capabilities			0x9800	integer
ATTRIBUTE	USR-Speed-Of-Connection			0x9801	integer
ATTRIBUTE	USR-Max-Channels			0x9802	integer
ATTRIBUTE	USR-Channel-Expansion			0x9803	integer
ATTRIBUTE	USR-Channel-Decrement			0x9804	integer
ATTRIBUTE	USR-Expansion-Algorithm			0x9805	integer
ATTRIBUTE	USR-Compression-Algorithm		0x9806	integer
ATTRIBUTE	USR-Receive-Acc-Map			0x9807	integer
ATTRIBUTE	USR-Transmit-Acc-Map			0x9808	integer
ATTRIBUTE	USR-Compression-Reset-Mode		0x980a	integer
ATTRIBUTE	USR-Min-Compression-Size		0x980b	integer
ATTRIBUTE	USR-IP					0x980c	integer
ATTRIBUTE	USR-IPX					0x980d	integer
ATTRIBUTE	USR-Filter-Zones			0x980e	integer
ATTRIBUTE	USR-Appletalk				0x980f	integer
ATTRIBUTE	USR-Bridging				0x9810	integer
ATTRIBUTE	USR-Spoofing				0x9811	integer
ATTRIBUTE	USR-Host-Type				0x9812	integer
ATTRIBUTE	USR-Send-Name				0x9813	string
ATTRIBUTE	USR-Send-Password			0x9814	string
ATTRIBUTE	USR-Start-Time				0x9815	integer
ATTRIBUTE	USR-End-Time				0x9816	integer
ATTRIBUTE	USR-Send-Script1			0x9817	string
ATTRIBUTE	USR-Reply-Script1			0x9818	string
ATTRIBUTE	USR-Send-Script2			0x9819	string
ATTRIBUTE	USR-Reply-Script2			0x981a	string
ATTRIBUTE	USR-Send-Script3			0x981b	string
ATTRIBUTE	USR-Reply-Script3			0x981c	string
ATTRIBUTE	USR-Send-Script4			0x981d	string
ATTRIBUTE	USR-Reply-Script4			0x981e	string
ATTRIBUTE	USR-Send-Script5			0x981f	string
ATTRIBUTE	USR-Reply-Script5			0x9820	string
ATTRIBUTE	USR-Send-Script6			0x9821	string
ATTRIBUTE	USR-Reply-Script6			0x9822	string
ATTRIBUTE	USR-Terminal-Type			0x9823	string
ATTRIBUTE	USR-Appletalk-Network-Range		0x9824	integer
ATTRIBUTE	USR-Local-IP-Address			0x9825	string
ATTRIBUTE	USR-Routing-Protocol			0x9826	integer
ATTRIBUTE	USR-Modem-Group				0x9827	integer
ATTRIBUTE	USR-Modem-Training-Time			0x9842	integer
ATTRIBUTE	USR-Interface-Index			0x9843	integer
ATTRIBUTE	USR-Multicast-Proxy        0x984d integer
ATTRIBUTE	USR-Multicast-Forwarding        0x9850 integer
ATTRIBUTE	USR-MP-MRRU				0x982f	integer

ATTRIBUTE	USR-SAP-Filter-In			0x9002	string
ATTRIBUTE	USR-MIC					0x9014	string
ATTRIBUTE	USR-Log-Filter-Packets			0x9017	string
ATTRIBUTE	USR-VPN-Encrypter			0x901e	integer
ATTRIBUTE	USR-Re-Chap-Timeout			0x9020	integer
ATTRIBUTE	USR-Tunnel-Switch-Endpoint		0x9868	string

ATTRIBUTE	USR-IP-SAA-Filter			0x9870	integer
ATTRIBUTE	Initial-Modulation-Type			0x0923	integer
ATTRIBUTE	USR-VTS-Session-Key			0x9856	string
ATTRIBUTE	USR-Orig-NAS-Type			0x9857	string
ATTRIBUTE	USR-Call-Arrival-Time			0x9858	integer
ATTRIBUTE	USR-Call-End-Time			0x9859	integer
ATTRIBUTE	USR-Tunnel-Auth-Hostname		0x986b	string
ATTRIBUTE	USR-Acct-Reason-Code			0x986c	integer
ATTRIBUTE	USR-Supports-Tags			0x9889	integer
ATTRIBUTE	USR-HARC-Disconnect-Code		0x988b	integer
ATTRIBUTE	USR-RMMIE-Status			0x01cd	integer
ATTRIBUTE	USR-RMMIE-Last-Update-Event		0x0901	integer
ATTRIBUTE	USR-RMMIE-x2-Status			0x0909	integer
ATTRIBUTE	USR-RMMIE-Planned-Disconnect		0x090a	integer
ATTRIBUTE	USR-VPN-GW-Location-Id			0x901f	string
ATTRIBUTE	USR-CCP-Algorithm			0x9021	integer
ATTRIBUTE	USR-ACCM-Type				0x9022	integer
ATTRIBUTE	USR-Local-Framed-IP-Addr		0x9026	ipaddr
ATTRIBUTE	USR-IPX-Routing				0x9828	integer
ATTRIBUTE	USR-IPX-WAN				0x9829	integer
ATTRIBUTE	USR-IP-RIP-Policies			0x982a	integer
ATTRIBUTE	USR-IP-RIP-Simple-Auth-Password		0x982b	string
ATTRIBUTE	USR-IP-RIP-Input-Filter			0x982c	string
ATTRIBUTE	USR-IP-Call-Input-Filter		0x982d	string
ATTRIBUTE	USR-IPX-RIP-Input-Filter		0x982e	string
ATTRIBUTE	USR-IPX-Call-Input-Filter		0x9830	string
ATTRIBUTE	USR-AT-Input-Filter			0x9831	string
ATTRIBUTE	USR-AT-RTMP-Input-Filter		0x9832	string
ATTRIBUTE	USR-AT-Zip-Input-Filter			0x9833	string
ATTRIBUTE	USR-AT-Call-Input-Filter		0x9834	string
ATTRIBUTE	USR-ET-Bridge-Input-Filter		0x9835	string
ATTRIBUTE	USR-IP-RIP-Output-Filter		0x9836	string
ATTRIBUTE	USR-IP-Call-Output-Filter		0x9837	string
ATTRIBUTE	USR-IPX-RIP-Output-Filter		0x9838	string
ATTRIBUTE	USR-IPX-Call-Output-Filter		0x9839	string
ATTRIBUTE	USR-AT-Output-Filter			0x983a	string
ATTRIBUTE	USR-AT-RTMP-Output-Filter		0x983b	string
ATTRIBUTE	USR-AT-Zip-Output-Filter		0x983c	string
ATTRIBUTE	USR-AT-Call-Output-Filter		0x983d	string
ATTRIBUTE	USR-ET-Bridge-Output-Filter		0x983e	string
# This item name is too long for the server to parse; had to chop the r off.  FIXME?
ATTRIBUTE	USR-ET-Bridge-Call-Output-Filte		0x983f	string
ATTRIBUTE	USR-IP-Default-Route-Option		0x9840	integer
ATTRIBUTE	USR-MP-EDO-HIPER			0x9841	string
ATTRIBUTE	USR-Tunnel-Security			0x9844	integer
ATTRIBUTE	USR-Port-Tap				0x9845	integer
ATTRIBUTE	USR-Port-Tap-Format			0x9846	integer
ATTRIBUTE	USR-Port-Tap-Output			0x9847	integer
ATTRIBUTE	USR-Port-Tap-Facility			0x9848	integer
ATTRIBUTE	USR-Port-Tap-Priority			0x9849	integer
ATTRIBUTE	USR-Port-Tap-Address			0x984a	ipaddr
ATTRIBUTE	USR-MobileIP-Home-Agent-Address		0x984b	ipaddr
ATTRIBUTE	USR-Tunneled-MLPP			0x984c	integer
ATTRIBUTE	USR-Multicast-Proxy			0x984d	integer
ATTRIBUTE	USR-Multicast-Receive			0x984e	integer
ATTRIBUTE	USR-Multicast-Forwarding		0x9850	integer
ATTRIBUTE	USR-IGMP-Query-Interval			0x9851	integer
ATTRIBUTE	USR-IGMP-Maximum-Response-Time		0x9852	integer
ATTRIBUTE	USR-IGMP-Robustness			0x9853	integer
ATTRIBUTE	USR-IGMP-Version			0x9854	integer
ATTRIBUTE	USR-Call-Arrival-Time			0x9858	integer
ATTRIBUTE	USR-Call-End-Time			0x9859	integer
ATTRIBUTE	USR-Callback-Type			0x986a	integer
ATTRIBUTE	USR-Pre-shared-MN-Key			0x9873	integer
ATTRIBUTE	USR-MIP-NAI								0x9874	string
ATTRIBUTE	USR-Agent									0x9876  integer
ATTRIBUTE	USR-Mobile-Session-ID			0x9885	integer
ATTRIBUTE	USR-Mobile-Accounting-Type 0x9886 integer

ATTRIBUTE	USR-Request-Type			0xf001	integer
ATTRIBUTE	USR-RMMIE-Num-Of-Updates		0x01ce	integer
ATTRIBUTE	USR-RMMIE-Manufacturer-ID		0x01df	integer
ATTRIBUTE	USR-RMMIE-Product-Code			0x01e0	string
ATTRIBUTE	USR-RMMIE-Serial-Number			0x01e1	string
ATTRIBUTE	USR-RMMIE-Firmware-Version		0x01e2	string
ATTRIBUTE	USR-RMMIE-Firmware-Build-Date		0x01e3	string
ATTRIBUTE	USR-Call-Arrival-in-GMT			0xbe52	date
ATTRIBUTE	USR-Call-Connect-in-GMT			0xbe51	date
ATTRIBUTE	USR-Call-Terminate-in-GMT		0xbe50	date
ATTRIBUTE	USR-IDS0-Call-Type			0xbe4f	integer
ATTRIBUTE	USR-Call-Reference-Number		0xbe7d	integer
ATTRIBUTE	USR-CDMA-Call-Reference-Number		0x0183	integer
ATTRIBUTE	USR-Mobile-IP-Address			0x088e	ipaddr
ATTRIBUTE	USR-QNC1-Service-Destination		0x08f4	ipaddr
ATTRIBUTE	USR-IWF-IP-Address			0x03f4	ipaddr
ATTRIBUTE	USR-Called-Party-Number			0x0890	string
ATTRIBUTE	USR-Calling-Party-Number		0x088f	string
ATTRIBUTE	USR-Call-Type				0x0891	integer
ATTRIBUTE	USR-ESN					0x0892	string
ATTRIBUTE	USR-IWF-Call-Identifier			0x0893	integer
ATTRIBUTE	USR-IMSI				0x0894	string
ATTRIBUTE	USR-Service-Option			0x0895	integer
ATTRIBUTE	USR-Disconnect-Cause-Indicator		0x0896	integer
ATTRIBUTE	USR-Mobile-NumBytes-Txed		0x0897	integer
ATTRIBUTE	USR-Mobile-NumBytes-Rxed		0x0898	integer
ATTRIBUTE	USR-Num-Fax-Pages-Processed		0x0899	integer
ATTRIBUTE	USR-Compression-Type			0x089a	integer
ATTRIBUTE	USR-Call-Error-Code			0x089b	integer
ATTRIBUTE	USR-Modem-Setup-Time			0x089c	integer
ATTRIBUTE	USR-Call-Connecting-Time		0x089d	integer
ATTRIBUTE	USR-Connect-Time			0x089e	integer
ATTRIBUTE	USR-RMMIE-Last-Update-Time		0x0900	integer
ATTRIBUTE	USR-RMMIE-Rcv-Tot-PwrLvl		0x0902	integer
ATTRIBUTE	USR-RMMIE-Rcv-PwrLvl-3300Hz		0x0903	integer
ATTRIBUTE	USR-RMMIE-Rcv-PwrLvl-3750Hz		0x0904	integer
ATTRIBUTE	USR-RMMIE-PwrLvl-NearEcho-Canc		0x0905	integer
ATTRIBUTE	USR-RMMIE-PwrLvl-FarEcho-Canc		0x0906	integer
ATTRIBUTE	USR-RMMIE-PwrLvl-Noise-Lvl		0x0907	integer
ATTRIBUTE	USR-RMMIE-PwrLvl-Xmit-Lvl		0x0908	integer
ATTRIBUTE	USR-Framed-IPX-Route			0x9027	ipaddr
ATTRIBUTE	USR-MPIP-Tunnel-Originator		0x9028	ipaddr
ATTRIBUTE	USR-IGMP-Routing			0x9855	integer
ATTRIBUTE	USR-Rad-Multicast-Routing-Ttl		0x9860	integer
# again, too long for cistron to parse "rate-limit", "protocol" and "boundary"
ATTRIBUTE	USR-Rad-Multicast-Routing-RtLim		0x9861	integer
ATTRIBUTE	USR-Rad-Multicast-Routing-Proto		0x9862	integer
ATTRIBUTE	USR-Rad-Multicast-Routing-Bound		0x9863	string
ATTRIBUTE	USR-Rad-Dvmrp-Metric			0x9864	integer
ATTRIBUTE	USR-Chat-Script-Name			0x9865	string
ATTRIBUTE	USR-CUSR-hat-Script-Rules		0x9866	string
ATTRIBUTE	USR-Rad-Location-Type			0x9867	integer
ATTRIBUTE	USR-OSPF-Addressless-Index		0x9869	integer
ATTRIBUTE	USR-QoS-Queuing-Mehtod			0x986d	integer
ATTRIBUTE	USR-PQ-Default-Priority			0x986e	integer
ATTRIBUTE	USR-FQ-Default-Priority			0x9871	integer
ATTRIBUTE	USR-IPP-Enable				0x9872	integer
ATTRIBUTE	USR-Pre-Shared-MN-Key			0x9873	string
ATTRIBUTE	USR-MIP-NAI				0x9874	integer
ATTRIBUTE	USR-DNIS-ReAuthentication		0x9875	integer
ATTRIBUTE	USR-Agent				0x9876	integer
ATTRIBUTE	USR-PQ-Parameters			0x9877	integer
ATTRIBUTE	USR-Dvmrp-Prune-Lifetime		0x9878	integer
ATTRIBUTE	USR-Special-Xon-Xoff-Flow		0x9879	integer
ATTRIBUTE	USR-Dvmrp-Advertised-Metric		0x987a	integer
ATTRIBUTE	USR-Dvmrp-Retransmit-Prunes		0x987b	integer
ATTRIBUTE	USR-Dvmrp-Non-Pruners			0x987c	integer
ATTRIBUTE	USR-Dvmrp-Route-Transit			0x987d	integer
ATTRIBUTE	USR-Dvmrp-Input-Filter			0x987e	string
ATTRIBUTE	USR-Dvmrp-Output-Filter				0x9880	string
ATTRIBUTE	USR-Policy-Access					0x9881	integer
ATTRIBUTE	USR-Policy-Configuration			0x9882	integer
ATTRIBUTE	USR-Policy-Filename					0x9883	string
ATTRIBUTE	USR-Policy-Type						0x9884	integer
ATTRIBUTE	USR-Mobile-Session-ID				0x9885	integer
ATTRIBUTE	USR-Mobile-Accounting-Type			0x9886	integer
ATTRIBUTE	USR-Mobile-Service-Option			0x9887	integer
ATTRIBUTE	USR-Wallclock-Timestamp				0x9888	integer
ATTRIBUTE	USR-Dvmrp-Initial-Flooding			0x988a	integer
ATTRIBUTE	USR-HARC-Disconnect-Code			0x988b integer
ATTRIBUTE	USR-Telnet-Options					0x988c	integer
ATTRIBUTE	USR-CDMA-PktData-Network-ID			0x988d	integer
ATTRIBUTE	USR-Auth-Next-Server-Address		0x988e	ipaddr
ATTRIBUTE	USR-User-PPP-AODI-Type				0x988f	integer
ATTRIBUTE	USR-MLPPP-Fragmentation-Threshld	0x9890	integer
ATTRIBUTE	USR-Unnumbered-Local-IP-Address		0x9891	ipaddr
ATTRIBUTE	USR-Traffic-Threshold				0x9892	integer
ATTRIBUTE	USR-Keep-Alive-Interval				0x9893	integer
ATTRIBUTE	Virtual-Server-ID					0x9894	integer
ATTRIBUTE	USR-X25-Trunk-Profile				0x9895	string
ATTRIBUTE	USR-X25-Acct-Input-Segment-Count	0x9896	integer
ATTRIBUTE	USR-X25-Acct-Output-Segment-Coun	0x9897	integer
ATTRIBUTE	USR-X25-Acct-Segment-Size			0x9898	integer
ATTRIBUTE	USR-X25-Acct-Termination-Code		0x9899	integer
ATTRIBUTE	USR-X25-SVC-Logical-Channel-Numb	0x989a	integer
ATTRIBUTE	USR-Nailed-B-Channel-Indicator		0x989b	integer
ATTRIBUTE	USR-X25-SVC-Call-Attributes			0x989c	integer
ATTRIBUTE	USR-Init-Reg-Server-Addr			0x989d	ipaddr
ATTRIBUTE	USR-Re-Reg-Server-Addr				0x989e	ipaddr
ATTRIBUTE	USR-Bytes-TX-Remain					0x989f	integer
ATTRIBUTE	USR-Bytes-RX-Remain					0x98a0	integer
ATTRIBUTE	USR-Session-Time-Remain				0x98a1	integer
ATTRIBUTE	USR-Pre-Paid-Enabled				0x98a2	integer
ATTRIBUTE	USR-Reg-Server-Prov-Timeout			0x98a3	integer
ATTRIBUTE	USR-Redirect						0x98a4	integer
ATTRIBUTE	USR-VLAN-Tag						0x98a5	integer
ATTRIBUTE	USR-Rad-IP-Pool-Definition			0x98a6	string
ATTRIBUTE	USR-Rad-NMC-Call-Progress-Status	0x98a7	integer
ATTRIBUTE	USR-Rad-NMC-Blocks_RX				0x98a8	integer
ATTRIBUTE	USR-Total-Bytes-Remain 				0x98b8 integer
ATTRIBUTE	USR-Forward-Rate-Limit 				0x98b9 integer
ATTRIBUTE	USR-Reverse-Rate-Limit 				0x98bc integer

ATTRIBUTE	USR-NAS-Type						0xf002	integer
ATTRIBUTE	USR-Auth-Mode						0xf003	integer
#
#	Integer Translations
#

#VALUE		USR-Character-Echo	Echo-On			0
#VALUE		USR-Character-Echo	Echo-Off		1

#VALUE	USR-PW_Framed_Routing_V2	Off			0
#VALUE	USR-PW_Framed_Routing_V2	On			1

VALUE	USR-Syslog-Tap			Off			0
VALUE	USR-Syslog-Tap			On-Raw			1
VALUE	USR-Syslog-Tap			On-Framed		2
VALUE	USR-Syslog-Tap			Unknown			4294967295

#	Event Indentifiers

VALUE	USR-Event-Id			Module-Inserted		6
VALUE	USR-Event-Id			Module-Removed		7
VALUE	USR-Event-Id			PSU-Voltage-Alarm	8
VALUE	USR-Event-Id			PSU-Failed		9
VALUE	USR-Event-Id			HUB-Temp-Out-of-Range	10
VALUE	USR-Event-Id			Fan-Failed		11
VALUE	USR-Event-Id			Watchdog-Timeout	12
VALUE	USR-Event-Id			Mgmt-Bus-Failure	13
VALUE	USR-Event-Id			In-Connection-Est	14
VALUE	USR-Event-Id			Out-Connection-Est	15
VALUE	USR-Event-Id			In-Connection-Term	16
VALUE	USR-Event-Id			Out-Connection-Term	17
VALUE	USR-Event-Id			Connection-Failed	18
VALUE	USR-Event-Id			Connection-Timeout	19
VALUE	USR-Event-Id			DTE-Transmit-Idle	20
VALUE	USR-Event-Id			DTR-True		21
VALUE	USR-Event-Id			DTR-False		22
VALUE	USR-Event-Id			Block-Error-at-Threshold 23
VALUE	USR-Event-Id			Fallbacks-at-Threshold	24
VALUE	USR-Event-Id			No-Dial-Tone-Detected	25
VALUE	USR-Event-Id			No-Loop-Current-Detected 26
VALUE	USR-Event-Id			Yellow-Alarm		27
VALUE	USR-Event-Id			Red-Alarm		28
VALUE	USR-Event-Id			Loss-Of-Signal		29
VALUE	USR-Event-Id			Rcv-Alrm-Ind-Signal	30
VALUE	USR-Event-Id			Timing-Source-Switch	31
VALUE	USR-Event-Id			Modem-Reset-by-DTE	32
VALUE	USR-Event-Id			Modem-Ring-No-Answer	33
VALUE	USR-Event-Id			DTE-Ring-No-Answer	34
VALUE	USR-Event-Id			Pkt-Bus-Session-Active	35
VALUE	USR-Event-Id			Pkt-Bus-Session-Congestion 36
VALUE	USR-Event-Id			Pkt-Bus-Session-Lost	37
VALUE	USR-Event-Id			Pkt-Bus-Session-Inactive 38
VALUE	USR-Event-Id			User-Interface-Reset	39
VALUE	USR-Event-Id			Gateway-Port-Out-of-Service 40
VALUE	USR-Event-Id			Gateway-Port-Link-Active 41
VALUE	USR-Event-Id			Dial-Out-Login-Failure	42
VALUE	USR-Event-Id			Dial-In-Login-Failure	43
VALUE	USR-Event-Id			Dial-Out-Restricted-Number 44
VALUE	USR-Event-Id			Dial-Back-Restricted-Number 45
VALUE	USR-Event-Id			User-Blacklisted	46
VALUE	USR-Event-Id			Attempted-Login-Blacklisted 47
VALUE	USR-Event-Id			Response-Attempt-Limit-Exceeded 48
VALUE	USR-Event-Id			Login-Attempt-Limit-Exceeded 49
VALUE	USR-Event-Id			Dial-Out-Call-Duration	50
VALUE	USR-Event-Id			Dial-In-Call-Duration	51
VALUE	USR-Event-Id			Pkt-Bus-Session-Err-Status 52
VALUE	USR-Event-Id			NMC-AutoRespnse-Trap	53
VALUE	USR-Event-Id			Acct-Server-Contact-Loss 54
VALUE	USR-Event-Id			Yellow-Alarm-Clear	55
VALUE	USR-Event-Id			Red-Alarm-Clear		56
VALUE	USR-Event-Id			Loss-Of-Signal-Clear	57
VALUE	USR-Event-Id			Rcv-Alrm-Ind-Signal-Clear 58
VALUE	USR-Event-Id			Incoming-Connection-Established 59
VALUE	USR-Event-Id			Outgoing-Connection-Established 60
VALUE	USR-Event-Id			Incoming-Connection-Terminated 61
VALUE	USR-Event-Id			Outgoing-Connection-Terminated 62
VALUE	USR-Event-Id			Connection-Attempt-Failure 63
VALUE	USR-Event-Id			Continuous-CRC-Alarm	64
VALUE	USR-Event-Id			Continuous-CRC-Alarm-Clear 65
VALUE	USR-Event-Id			Physical-State-Change	66
VALUE	USR-Event-Id			Gateway-Network-Failed	71
VALUE	USR-Event-Id			Gateway-Network-Restored 72
VALUE	USR-Event-Id			Packet-Bus-Clock-Lost	73
VALUE	USR-Event-Id			Packet-Bus-Clock-Restored 74
VALUE	USR-Event-Id			D-Channel-In-Service	75
VALUE	USR-Event-Id			D-Channel-Out-of-Service 76
VALUE	USR-Event-Id			DS0s-In-Service		77
VALUE	USR-Event-Id			DS0s-Out-of-Service	78
VALUE	USR-Event-Id			T1/T1PRI/E1PRI-Call-Event 79
VALUE	USR-Event-Id			Psu-Incompatible	80
VALUE	USR-Event-Id			T1,T1-E1/PRI-Call-Arrive-Event 81
VALUE	USR-Event-Id			T1,T1-E1/PRI-Call-Connect-Event 82
VALUE	USR-Event-Id			T1,T1-E1/PRI-Call-Termina-Event 83
VALUE	USR-Event-Id			T1,T1-E1/PRI-Call-Failed-Event 84
VALUE	USR-Event-Id			DNS-Contact-Lost	85
VALUE	USR-Event-Id			NTP-Contact-Lost	86
VALUE	USR-Event-Id			NTP-Contact-Restored	87
VALUE	USR-Event-Id			IPGW-Link-Up		88
VALUE	USR-Event-Id			IPGW-Link-Down		89
VALUE	USR-Event-Id			NTP-Contact-Degraded	90
VALUE	USR-Event-Id			In-Connection-Failed	91
VALUE	USR-Event-Id			Out-Connection-Failed	92
VALUE	USR-Event-Id			Application-ProcessorReset 93
VALUE	USR-Event-Id			DSP-Reset		94
VALUE	USR-Event-Id			Changed-to-Maint-Srvs-State 95
VALUE	USR-Event-Id			Loop-Back-cleared-on-channel 96
VALUE	USR-Event-Id			Loop-Back-on-channel	97
VALUE	USR-Event-Id			Telco-Abnormal-Response	98
VALUE	USR-Event-Id			DNS-Contact-Restored	99
VALUE	USR-Event-Id			DNS-Contact-Degraded	100
VALUE	USR-Event-Id			RADIUS-Accounting-Restored 101
VALUE	USR-Event-Id			RADIUS-Accounting-Group-Restore 102
VALUE	USR-Event-Id			RADIUS-Accounting-Group-Degrade 103
VALUE	USR-Event-Id			RADIUS-Accounting-Group-NonOper 104
VALUE	USR-Event-Id			T1/T1-E1/PRI-InCall-Fail-Event 119
VALUE	USR-Event-Id			T1/T1-E1/PRI-OutCall-Fail-Event 120
VALUE	USR-Event-Id			RMMIE-Retrain-Event	121
VALUE	USR-Event-Id			RMMIE-Speed-Shift-Event	122
VALUE	USR-Event-Id			CDMA-Call-Start		191
VALUE	USR-Event-Id			CDMA-Call-End		192

VALUE	USR-Card-Type			SlotEmpty		1
VALUE	USR-Card-Type			SlotUnknown		2
VALUE	USR-Card-Type			NetwMgtCard		3
VALUE	USR-Card-Type			DualT1NAC		4
VALUE	USR-Card-Type			DualModemNAC		5
VALUE	USR-Card-Type			QuadModemNAC		6
VALUE	USR-Card-Type			TrGatewayNAC		7
VALUE	USR-Card-Type			X25GatewayNAC		8
VALUE	USR-Card-Type			DualV34ModemNAC		9
VALUE	USR-Card-Type			QuadV32DigitalModemNAC	10
VALUE	USR-Card-Type			QuadV32AnalogModemNAC	11
VALUE	USR-Card-Type			QuadV32DigAnlModemNAC	12
VALUE	USR-Card-Type			QuadV34DigModemNAC	13
VALUE	USR-Card-Type			QuadV34AnlModemNAC	14
VALUE	USR-Card-Type			QuadV34DigAnlModemNAC	15
VALUE	USR-Card-Type			SingleT1NAC		16
VALUE	USR-Card-Type			EthernetGatewayNAC	17
VALUE	USR-Card-Type			AccessServer		18
VALUE	USR-Card-Type			486TrGatewayNAC		19
VALUE	USR-Card-Type			486EthernetGatewayNAC	20
VALUE	USR-Card-Type			DualRS232NAC		22
VALUE	USR-Card-Type			486X25GatewayNAC	23
VALUE	USR-Card-Type			ApplicationServerNAC	25
VALUE	USR-Card-Type			ISDNGatewayNAC		26
VALUE	USR-Card-Type			ISDNpriT1NAC		27
VALUE	USR-Card-Type			ClkedNetMgtCard		28
VALUE	USR-Card-Type			ModemPoolManagementNAC	29
VALUE	USR-Card-Type			ModemPoolNetserverNAC	30
VALUE	USR-Card-Type			ModemPoolV34ModemNAC	31
VALUE	USR-Card-Type			ModemPoolISDNNAC	32
VALUE	USR-Card-Type			NTServerNAC		33
VALUE	USR-Card-Type			QuadV34DigitalG2NAC	34
VALUE	USR-Card-Type			QuadV34AnalogG2NAC	35
VALUE	USR-Card-Type			QuadV34DigAnlgG2NAC	36
VALUE	USR-Card-Type			NETServerFrameRelayNAC	37
VALUE	USR-Card-Type			NETServerTokenRingNAC	38
VALUE	USR-Card-Type			X2524ChannelNAC		39
VALUE	USR-Card-Type			WirelessGatewayNac	42

VALUE	USR-Card-Type			EnhancedAccessServer	44
VALUE	USR-Card-Type			EnhancedISDNGatewayNAC	45

VALUE	USR-Card-Type			DualT1NIC		1001
VALUE	USR-Card-Type			DualAlogMdmNIC		1002
VALUE	USR-Card-Type			QuadDgtlMdmNIC		1003
VALUE	USR-Card-Type			QuadAlogDgtlMdmNIC	1004
VALUE	USR-Card-Type			TokenRingNIC		1005
VALUE	USR-Card-Type			SingleT1NIC		1006
VALUE	USR-Card-Type			EthernetNIC		1007
VALUE	USR-Card-Type			ShortHaulDualT1NIC	1008
VALUE	USR-Card-Type			DualAlogMgdIntlMdmNIC	1009
VALUE	USR-Card-Type			X25NIC			1010
VALUE	USR-Card-Type			QuadAlogNonMgdMdmNIC	1011
VALUE	USR-Card-Type			QuadAlogMgdIntlMdmNIC	1012
VALUE	USR-Card-Type			QuadAlogNonMgdIntlMdmNIC 1013
VALUE	USR-Card-Type			QuadLsdLiMgdMdmNIC	1014
VALUE	USR-Card-Type			QuadLsdLiNonMgdMdmNIC	1015
VALUE	USR-Card-Type			QuadLsdLiMgdIntlMdmNIC	1016
VALUE	USR-Card-Type			QuadLsdLiNonMgdIntlMdmNIC 1017
VALUE	USR-Card-Type			HSEthernetWithV35NIC	1018
VALUE	USR-Card-Type			HSEthernetWithoutV35NIC	1019
VALUE	USR-Card-Type			DualHighSpeedV35NIC	1020
VALUE	USR-Card-Type			QuadV35RS232LowSpeedNIC	1021
VALUE	USR-Card-Type			DualE1NIC		1022
VALUE	USR-Card-Type			ShortHaulDualE1NIC	1023
VALUE	USR-Card-Type			BellcoreLongHaulDualT1NIC 1025
VALUE	USR-Card-Type			BellcoreShrtHaulDualT1NIC 1026
VALUE	USR-Card-Type			SCSIEdgeServerNIC	1027

VALUE	USR-Default-DTE-Data-Rate	110-BPS			1
VALUE	USR-Default-DTE-Data-Rate	300-BPS			2
VALUE	USR-Default-DTE-Data-Rate	600-BPS			3
VALUE	USR-Default-DTE-Data-Rate	1200-BPS		4
VALUE	USR-Default-DTE-Data-Rate	2400-BPS		5
VALUE	USR-Default-DTE-Data-Rate	4800-BPS		6
VALUE	USR-Default-DTE-Data-Rate	7200-BPS		7
VALUE	USR-Default-DTE-Data-Rate	9600-BPS		8
VALUE	USR-Default-DTE-Data-Rate	12K-BPS			9
VALUE	USR-Default-DTE-Data-Rate	14.4K-BPS		10
VALUE	USR-Default-DTE-Data-Rate	16.8-BPS		11
VALUE	USR-Default-DTE-Data-Rate	19.2K-BPS		12
VALUE	USR-Default-DTE-Data-Rate	38.4K-BPS		13
VALUE	USR-Default-DTE-Data-Rate	75-BPS			14
VALUE	USR-Default-DTE-Data-Rate	450-BPS			15
VALUE	USR-Default-DTE-Data-Rate	UNKNOWN-BPS		16
VALUE	USR-Default-DTE-Data-Rate	57.6K-BPS		17
VALUE	USR-Default-DTE-Data-Rate	21.6K-BPS		18
VALUE	USR-Default-DTE-Data-Rate	24K-BPS			19
VALUE	USR-Default-DTE-Data-Rate	26K-BPS			20
VALUE	USR-Default-DTE-Data-Rate	28K-BPS			21
VALUE	USR-Default-DTE-Data-Rate	115K-BPS		22

VALUE	USR-Initial-Rx-Link-Data-Rate	110-BPS			1
VALUE	USR-Initial-Rx-Link-Data-Rate	300-BPS			2
VALUE	USR-Initial-Rx-Link-Data-Rate	600-BPS			3
VALUE	USR-Initial-Rx-Link-Data-Rate	1200-BPS		4
VALUE	USR-Initial-Rx-Link-Data-Rate	2400-BPS		5
VALUE	USR-Initial-Rx-Link-Data-Rate	4800-BPS		6
VALUE	USR-Initial-Rx-Link-Data-Rate	7200-BPS		7
VALUE	USR-Initial-Rx-Link-Data-Rate	9600-BPS		8
VALUE	USR-Initial-Rx-Link-Data-Rate	12000-BPS		9
VALUE	USR-Initial-Rx-Link-Data-Rate	14400-BPS		10
VALUE	USR-Initial-Rx-Link-Data-Rate	16800-BPS		11
VALUE	USR-Initial-Rx-Link-Data-Rate	19200-BPS		12
VALUE	USR-Initial-Rx-Link-Data-Rate	38400-BPS		13
VALUE	USR-Initial-Rx-Link-Data-Rate	75-BPS			14
VALUE	USR-Initial-Rx-Link-Data-Rate	450-BPS			15
VALUE	USR-Initial-Rx-Link-Data-Rate	UNKNOWN-BPS		16
VALUE	USR-Initial-Rx-Link-Data-Rate	57600-BPS		17
VALUE	USR-Initial-Rx-Link-Data-Rate	21600-BPS		18
VALUE	USR-Initial-Rx-Link-Data-Rate	24000-BPS		19
VALUE	USR-Initial-Rx-Link-Data-Rate	26400-BPS		20
VALUE	USR-Initial-Rx-Link-Data-Rate	28800-BPS		21
VALUE	USR-Initial-Rx-Link-Data-Rate	115200-BPS		22
VALUE	USR-Initial-Rx-Link-Data-Rate	31200-BPS		23
VALUE	USR-Initial-Rx-Link-Data-Rate	33600-BPS		24
VALUE	USR-Initial-Rx-Link-Data-Rate	25333-BPS		25
VALUE	USR-Initial-Rx-Link-Data-Rate	26666-BPS		26
VALUE	USR-Initial-Rx-Link-Data-Rate	28000-BPS		27
VALUE	USR-Initial-Rx-Link-Data-Rate	29333-BPS		28
VALUE	USR-Initial-Rx-Link-Data-Rate	30666-BPS		29
VALUE	USR-Initial-Rx-Link-Data-Rate	32000-BPS		30
VALUE	USR-Initial-Rx-Link-Data-Rate	33333-BPS		31
VALUE	USR-Initial-Rx-Link-Data-Rate	34666-BPS		32
VALUE	USR-Initial-Rx-Link-Data-Rate	36000-BPS		33
VALUE	USR-Initial-Rx-Link-Data-Rate	37333-BPS		34
VALUE	USR-Initial-Rx-Link-Data-Rate	38666-BPS		35
VALUE	USR-Initial-Rx-Link-Data-Rate	40000-BPS		36
VALUE	USR-Initial-Rx-Link-Data-Rate	41333-BPS		37
VALUE	USR-Initial-Rx-Link-Data-Rate	42666-BPS		38
VALUE	USR-Initial-Rx-Link-Data-Rate	44000-BPS		39
VALUE	USR-Initial-Rx-Link-Data-Rate	45333-BPS		40
VALUE	USR-Initial-Rx-Link-Data-Rate	46666-BPS		41
VALUE	USR-Initial-Rx-Link-Data-Rate	48000-BPS		42
VALUE	USR-Initial-Rx-Link-Data-Rate	49333-BPS		43
VALUE	USR-Initial-Rx-Link-Data-Rate	50666-BPS		44
VALUE	USR-Initial-Rx-Link-Data-Rate	52000-BPS		45
VALUE	USR-Initial-Rx-Link-Data-Rate	53333-BPS		46
VALUE	USR-Initial-Rx-Link-Data-Rate	54666-BPS		47
VALUE	USR-Initial-Rx-Link-Data-Rate	56000-BPS		48
VALUE	USR-Initial-Rx-Link-Data-Rate	57333-BPS		49
VALUE	USR-Initial-Rx-Link-Data-Rate	58666-BPS		50
VALUE	USR-Initial-Rx-Link-Data-Rate	60000-BPS		51
VALUE	USR-Initial-Rx-Link-Data-Rate	61333-BPS		52
VALUE	USR-Initial-Rx-Link-Data-Rate	62666-BPS		53
VALUE	USR-Initial-Rx-Link-Data-Rate	64000-BPS		54

VALUE	USR-Final-Rx-Link-Data-Rate	110-BPS			1
VALUE	USR-Final-Rx-Link-Data-Rate	300-BPS			2
VALUE	USR-Final-Rx-Link-Data-Rate	600-BPS			3
VALUE	USR-Final-Rx-Link-Data-Rate	1200-BPS		4
VALUE	USR-Final-Rx-Link-Data-Rate	2400-BPS		5
VALUE	USR-Final-Rx-Link-Data-Rate	4800-BPS		6
VALUE	USR-Final-Rx-Link-Data-Rate	7200-BPS		7
VALUE	USR-Final-Rx-Link-Data-Rate	9600-BPS		8
VALUE	USR-Final-Rx-Link-Data-Rate	12000-BPS		9
VALUE	USR-Final-Rx-Link-Data-Rate	14400-BPS		10
VALUE	USR-Final-Rx-Link-Data-Rate	16800-BPS		11
VALUE	USR-Final-Rx-Link-Data-Rate	19200-BPS		12
VALUE	USR-Final-Rx-Link-Data-Rate	38400-BPS		13
VALUE	USR-Final-Rx-Link-Data-Rate	75-BPS			14
VALUE	USR-Final-Rx-Link-Data-Rate	450-BPS			15
VALUE	USR-Final-Rx-Link-Data-Rate	UNKNOWN-BPS		16
VALUE	USR-Final-Rx-Link-Data-Rate	57600-BPS		17
VALUE	USR-Final-Rx-Link-Data-Rate	21600-BPS		18
VALUE	USR-Final-Rx-Link-Data-Rate	24000-BPS		19
VALUE	USR-Final-Rx-Link-Data-Rate	26400-BPS		20
VALUE	USR-Final-Rx-Link-Data-Rate	28800-BPS		21
VALUE	USR-Final-Rx-Link-Data-Rate	115200-BPS		22
VALUE	USR-Final-Rx-Link-Data-Rate	31200-BPS		23
VALUE	USR-Final-Rx-Link-Data-Rate	33600-BPS		24
VALUE	USR-Final-Rx-Link-Data-Rate	25333-BPS		25
VALUE	USR-Final-Rx-Link-Data-Rate	26666-BPS		26
VALUE	USR-Final-Rx-Link-Data-Rate	28000-BPS		27
VALUE	USR-Final-Rx-Link-Data-Rate	29333-BPS		28
VALUE	USR-Final-Rx-Link-Data-Rate	30666-BPS		29
VALUE	USR-Final-Rx-Link-Data-Rate	32000-BPS		30
VALUE	USR-Final-Rx-Link-Data-Rate	33333-BPS		31
VALUE	USR-Final-Rx-Link-Data-Rate	34666-BPS		32
VALUE	USR-Final-Rx-Link-Data-Rate	36000-BPS		33
VALUE	USR-Final-Rx-Link-Data-Rate	37333-BPS		34
VALUE	USR-Final-Rx-Link-Data-Rate	38666-BPS		35
VALUE	USR-Final-Rx-Link-Data-Rate	40000-BPS		36
VALUE	USR-Final-Rx-Link-Data-Rate	41333-BPS		37
VALUE	USR-Final-Rx-Link-Data-Rate	42666-BPS		38
VALUE	USR-Final-Rx-Link-Data-Rate	44000-BPS		39
VALUE	USR-Final-Rx-Link-Data-Rate	45333-BPS		40
VALUE	USR-Final-Rx-Link-Data-Rate	46666-BPS		41
VALUE	USR-Final-Rx-Link-Data-Rate	48000-BPS		42
VALUE	USR-Final-Rx-Link-Data-Rate	49333-BPS		43
VALUE	USR-Final-Rx-Link-Data-Rate	50666-BPS		44
VALUE	USR-Final-Rx-Link-Data-Rate	52000-BPS		45
VALUE	USR-Final-Rx-Link-Data-Rate	53333-BPS		46
VALUE	USR-Final-Rx-Link-Data-Rate	54666-BPS		47
VALUE	USR-Final-Rx-Link-Data-Rate	56000-BPS		48
VALUE	USR-Final-Rx-Link-Data-Rate	57333-BPS		49
VALUE	USR-Final-Rx-Link-Data-Rate	58666-BPS		50
VALUE	USR-Final-Rx-Link-Data-Rate	60000-BPS		51
VALUE	USR-Final-Rx-Link-Data-Rate	61333-BPS		52
VALUE	USR-Final-Rx-Link-Data-Rate	62666-BPS		53
VALUE	USR-Final-Rx-Link-Data-Rate	64000-BPS		54

VALUE	USR-Initial-Tx-Link-Data-Rate	110-BPS			1
VALUE	USR-Initial-Tx-Link-Data-Rate	300-BPS			2
VALUE	USR-Initial-Tx-Link-Data-Rate	600-BPS			3
VALUE	USR-Initial-Tx-Link-Data-Rate	1200-BPS		4
VALUE	USR-Initial-Tx-Link-Data-Rate	2400-BPS		5
VALUE	USR-Initial-Tx-Link-Data-Rate	4800-BPS		6
VALUE	USR-Initial-Tx-Link-Data-Rate	7200-BPS		7
VALUE	USR-Initial-Tx-Link-Data-Rate	9600-BPS		8
VALUE	USR-Initial-Tx-Link-Data-Rate	12000-BPS		9
VALUE	USR-Initial-Tx-Link-Data-Rate	14400-BPS		10
VALUE	USR-Initial-Tx-Link-Data-Rate	16800-BPS		11
VALUE	USR-Initial-Tx-Link-Data-Rate	19200-BPS		12
VALUE	USR-Initial-Tx-Link-Data-Rate	38400-BPS		13
VALUE	USR-Initial-Tx-Link-Data-Rate	75-BPS			14
VALUE	USR-Initial-Tx-Link-Data-Rate	450-BPS			15
VALUE	USR-Initial-Tx-Link-Data-Rate	UNKNOWN-BPS		16
VALUE	USR-Initial-Tx-Link-Data-Rate	57600-BPS		17
VALUE	USR-Initial-Tx-Link-Data-Rate	21600-BPS		18
VALUE	USR-Initial-Tx-Link-Data-Rate	24000-BPS		19
VALUE	USR-Initial-Tx-Link-Data-Rate	26400-BPS		20
VALUE	USR-Initial-Tx-Link-Data-Rate	28800-BPS		21
VALUE	USR-Initial-Tx-Link-Data-Rate	115200-BPS		22
VALUE	USR-Initial-Tx-Link-Data-Rate	31200-BPS		23
VALUE	USR-Initial-Tx-Link-Data-Rate	33600-BPS		24
VALUE	USR-Initial-Tx-Link-Data-Rate	25333-BPS		25
VALUE	USR-Initial-Tx-Link-Data-Rate	26666-BPS		26
VALUE	USR-Initial-Tx-Link-Data-Rate	28000-BPS		27
VALUE	USR-Initial-Tx-Link-Data-Rate	29333-BPS		28
VALUE	USR-Initial-Tx-Link-Data-Rate	30666-BPS		29
VALUE	USR-Initial-Tx-Link-Data-Rate	32000-BPS		30
VALUE	USR-Initial-Tx-Link-Data-Rate	33333-BPS		31
VALUE	USR-Initial-Tx-Link-Data-Rate	34666-BPS		32
VALUE	USR-Initial-Tx-Link-Data-Rate	36000-BPS		33
VALUE	USR-Initial-Tx-Link-Data-Rate	37333-BPS		34
VALUE	USR-Initial-Tx-Link-Data-Rate	38666-BPS		35
VALUE	USR-Initial-Tx-Link-Data-Rate	40000-BPS		36
VALUE	USR-Initial-Tx-Link-Data-Rate	41333-BPS		37
VALUE	USR-Initial-Tx-Link-Data-Rate	42666-BPS		38
VALUE	USR-Initial-Tx-Link-Data-Rate	44000-BPS		39
VALUE	USR-Initial-Tx-Link-Data-Rate	45333-BPS		40
VALUE	USR-Initial-Tx-Link-Data-Rate	46666-BPS		41
VALUE	USR-Initial-Tx-Link-Data-Rate	48000-BPS		42
VALUE	USR-Initial-Tx-Link-Data-Rate	49333-BPS		43
VALUE	USR-Initial-Tx-Link-Data-Rate	50666-BPS		44
VALUE	USR-Initial-Tx-Link-Data-Rate	52000-BPS		45
VALUE	USR-Initial-Tx-Link-Data-Rate	53333-BPS		46
VALUE	USR-Initial-Tx-Link-Data-Rate	54666-BPS		47
VALUE	USR-Initial-Tx-Link-Data-Rate	56000-BPS		48
VALUE	USR-Initial-Tx-Link-Data-Rate	57333-BPS		49
VALUE	USR-Initial-Tx-Link-Data-Rate	58666-BPS		50
VALUE	USR-Initial-Tx-Link-Data-Rate	60000-BPS		51
VALUE	USR-Initial-Tx-Link-Data-Rate	61333-BPS		52
VALUE	USR-Initial-Tx-Link-Data-Rate	62666-BPS		53
VALUE	USR-Initial-Tx-Link-Data-Rate	64000-BPS		54

VALUE	USR-Final-Tx-Link-Data-Rate	110-BPS			1
VALUE	USR-Final-Tx-Link-Data-Rate	300-BPS			2
VALUE	USR-Final-Tx-Link-Data-Rate	600-BPS			3
VALUE	USR-Final-Tx-Link-Data-Rate	1200-BPS		4
VALUE	USR-Final-Tx-Link-Data-Rate	2400-BPS		5
VALUE	USR-Final-Tx-Link-Data-Rate	4800-BPS		6
VALUE	USR-Final-Tx-Link-Data-Rate	7200-BPS		7
VALUE	USR-Final-Tx-Link-Data-Rate	9600-BPS		8
VALUE	USR-Final-Tx-Link-Data-Rate	12000-BPS		9
VALUE	USR-Final-Tx-Link-Data-Rate	14400-BPS		10
VALUE	USR-Final-Tx-Link-Data-Rate	16800-BPS		11
VALUE	USR-Final-Tx-Link-Data-Rate	19200-BPS		12
VALUE	USR-Final-Tx-Link-Data-Rate	38400-BPS		13
VALUE	USR-Final-Tx-Link-Data-Rate	75-BPS			14
VALUE	USR-Final-Tx-Link-Data-Rate	450-BPS			15
VALUE	USR-Final-Tx-Link-Data-Rate	UNKNOWN-BPS		16
VALUE	USR-Final-Tx-Link-Data-Rate	57600-BPS		17
VALUE	USR-Final-Tx-Link-Data-Rate	21600-BPS		18
VALUE	USR-Final-Tx-Link-Data-Rate	24000-BPS		19
VALUE	USR-Final-Tx-Link-Data-Rate	26400-BPS		20
VALUE	USR-Final-Tx-Link-Data-Rate	28800-BPS		21
VALUE	USR-Final-Tx-Link-Data-Rate	115200-BPS		22
VALUE	USR-Final-Tx-Link-Data-Rate	31200-BPS		23
VALUE	USR-Final-Tx-Link-Data-Rate	33600-BPS		24
VALUE	USR-Final-Tx-Link-Data-Rate	25333-BPS		25
VALUE	USR-Final-Tx-Link-Data-Rate	26666-BPS		26
VALUE	USR-Final-Tx-Link-Data-Rate	28000-BPS		27
VALUE	USR-Final-Tx-Link-Data-Rate	29333-BPS		28
VALUE	USR-Final-Tx-Link-Data-Rate	30666-BPS		29
VALUE	USR-Final-Tx-Link-Data-Rate	32000-BPS		30
VALUE	USR-Final-Tx-Link-Data-Rate	33333-BPS		31
VALUE	USR-Final-Tx-Link-Data-Rate	34666-BPS		32
VALUE	USR-Final-Tx-Link-Data-Rate	36000-BPS		33
VALUE	USR-Final-Tx-Link-Data-Rate	37333-BPS		34
VALUE	USR-Final-Tx-Link-Data-Rate	38666-BPS		35
VALUE	USR-Final-Tx-Link-Data-Rate	40000-BPS		36
VALUE	USR-Final-Tx-Link-Data-Rate	41333-BPS		37
VALUE	USR-Final-Tx-Link-Data-Rate	42666-BPS		38
VALUE	USR-Final-Tx-Link-Data-Rate	44000-BPS		39
VALUE	USR-Final-Tx-Link-Data-Rate	45333-BPS		40
VALUE	USR-Final-Tx-Link-Data-Rate	46666-BPS		41
VALUE	USR-Final-Tx-Link-Data-Rate	48000-BPS		42
VALUE	USR-Final-Tx-Link-Data-Rate	49333-BPS		43
VALUE	USR-Final-Tx-Link-Data-Rate	50666-BPS		44
VALUE	USR-Final-Tx-Link-Data-Rate	52000-BPS		45
VALUE	USR-Final-Tx-Link-Data-Rate	53333-BPS		46
VALUE	USR-Final-Tx-Link-Data-Rate	54666-BPS		47
VALUE	USR-Final-Tx-Link-Data-Rate	56000-BPS		48
VALUE	USR-Final-Tx-Link-Data-Rate	57333-BPS		49
VALUE	USR-Final-Tx-Link-Data-Rate	58666-BPS		50
VALUE	USR-Final-Tx-Link-Data-Rate	60000-BPS		51
VALUE	USR-Final-Tx-Link-Data-Rate	61333-BPS		52
VALUE	USR-Final-Tx-Link-Data-Rate	62666-BPS		53
VALUE	USR-Final-Tx-Link-Data-Rate	64000-BPS		54

VALUE	USR-Connect-Speed		NONE			1
VALUE	USR-Connect-Speed		300-BPS			2
VALUE	USR-Connect-Speed		1200-BPS		3
VALUE	USR-Connect-Speed		2400-BPS		4
VALUE	USR-Connect-Speed		4800-BPS		5
VALUE	USR-Connect-Speed		7200-BPS		6
VALUE	USR-Connect-Speed		9600-BPS		7
VALUE	USR-Connect-Speed		12000-BPS		8
VALUE	USR-Connect-Speed		14400-BPS		9
VALUE	USR-Connect-Speed		16800-BPS		10
VALUE	USR-Connect-Speed		19200-BPS		11
VALUE	USR-Connect-Speed		21600-BPS		12
VALUE	USR-Connect-Speed		28800-BPS		13
VALUE	USR-Connect-Speed		38400-BPS		14
VALUE	USR-Connect-Speed		57600-BPS		15
VALUE	USR-Connect-Speed		115200-BPS		16
VALUE	USR-Connect-Speed		288000-BPS		17
VALUE	USR-Connect-Speed		75-1200-BPS		18
VALUE	USR-Connect-Speed		1200-75-BPS		19
VALUE	USR-Connect-Speed		24000-BPS		20
VALUE	USR-Connect-Speed		26400-BPS		21
VALUE	USR-Connect-Speed		31200-BPS		22
VALUE	USR-Connect-Speed		33600-BPS		23
VALUE	USR-Connect-Speed		33333-BPS		24
VALUE	USR-Connect-Speed		37333-BPS		25
VALUE	USR-Connect-Speed		41333-BPS		26
VALUE	USR-Connect-Speed		42666-BPS		27
VALUE	USR-Connect-Speed		44000-BPS		28
VALUE	USR-Connect-Speed		45333-BPS		29
VALUE	USR-Connect-Speed		46666-BPS		30
VALUE	USR-Connect-Speed		48000-BPS		31
VALUE	USR-Connect-Speed		49333-BPS		32
VALUE	USR-Connect-Speed		50666-BPS		33
VALUE	USR-Connect-Speed		52000-BPS		34
VALUE	USR-Connect-Speed		53333-BPS		35
VALUE	USR-Connect-Speed		54666-BPS		36
VALUE	USR-Connect-Speed		56000-BPS		37
VALUE	USR-Connect-Speed		57333-BPS		38
VALUE	USR-Connect-Speed		64000-BPS		39
VALUE	USR-Connect-Speed		25333-BPS		40
VALUE	USR-Connect-Speed		26666-BPS		41
VALUE	USR-Connect-Speed		28000-BPS		42
VALUE	USR-Connect-Speed		29333-BPS		43
VALUE	USR-Connect-Speed		30666-BPS		44
VALUE	USR-Connect-Speed		32000-BPS		45
VALUE	USR-Connect-Speed		34666-BPS		46
VALUE	USR-Connect-Speed		36000-BPS		47
VALUE	USR-Connect-Speed		38666-BPS		48
VALUE	USR-Connect-Speed		40000-BPS		49
VALUE	USR-Connect-Speed		58666-BPS		50
VALUE	USR-Connect-Speed		60000-BPS		51
VALUE	USR-Connect-Speed		61333-BPS		52
VALUE	USR-Connect-Speed		62666-BPS		53

VALUE	USR-Sync-Async-Mode		Asynchronous		1
VALUE	USR-Sync-Async-Mode		Synchronous		2

VALUE	USR-Originate-Answer-Mode	Originate_in_Originate_Mode 1
VALUE	USR-Originate-Answer-Mode	Originate_in_Answer_Mode 2
VALUE	USR-Originate-Answer-Mode	Answer_in_Originate_Mode 3
VALUE	USR-Originate-Answer-Mode	Answer_in_Answer_Mode	4

VALUE	USR-Modulation-Type		usRoboticsHST		1
VALUE	USR-Modulation-Type		ccittV32		2
VALUE	USR-Modulation-Type		ccittV22bis		3
VALUE	USR-Modulation-Type		bell103			4
VALUE	USR-Modulation-Type		ccittV21		5
VALUE	USR-Modulation-Type		bell212			6
VALUE	USR-Modulation-Type		ccittV32bis		7
VALUE	USR-Modulation-Type		ccittV23		8
VALUE	USR-Modulation-Type		negotiationFailed	9
VALUE	USR-Modulation-Type		bell208b		10
VALUE	USR-Modulation-Type		v21FaxClass1		11
VALUE	USR-Modulation-Type		v27FaxClass1		12
VALUE	USR-Modulation-Type		v29FaxClass1		13
VALUE	USR-Modulation-Type		v17FaxClass1		14
VALUE	USR-Modulation-Type		v21FaxClass2		15
VALUE	USR-Modulation-Type		v27FaxClass2		16
VALUE	USR-Modulation-Type		v29FaxClass2		17
VALUE	USR-Modulation-Type		v17FaxClass2		18
VALUE	USR-Modulation-Type		v32Terbo		19
VALUE	USR-Modulation-Type		v34			20
VALUE	USR-Modulation-Type		vFC			21
VALUE	USR-Modulation-Type		v34plus			22
VALUE	USR-Modulation-Type		x2			23
VALUE	USR-Modulation-Type		v110			24
VALUE	USR-Modulation-Type		v120			25
VALUE	USR-Modulation-Type		x75			26
VALUE	USR-Modulation-Type		asyncSyncPPP		27
VALUE	USR-Modulation-Type		clearChannel		28
VALUE	USR-Modulation-Type		x2client		29
VALUE	USR-Modulation-Type		x2symmetric		30
VALUE	USR-Modulation-Type		piafs			31
VALUE	USR-Modulation-Type		x2version2		32
VALUE	USR-Modulation-Type		v90Analog		33
VALUE	USR-Modulation-Type		v90Digital		34
VALUE	USR-Modulation-Type		v90AllDigital		35

VALUE	Initial-Modulation-Type		usRoboticsHST		1
VALUE	Initial-Modulation-Type		ccittV32		2
VALUE	Initial-Modulation-Type		ccittV22bis		3
VALUE	Initial-Modulation-Type		bell103			4
VALUE	Initial-Modulation-Type		ccittV21		5
VALUE	Initial-Modulation-Type		bell212			6
VALUE	Initial-Modulation-Type		ccittV32bis		7
VALUE	Initial-Modulation-Type		ccittV23		8
VALUE	Initial-Modulation-Type		negotiationFailed	9
VALUE	Initial-Modulation-Type		bell208b		10
VALUE	Initial-Modulation-Type		v21FaxClass1		11
VALUE	Initial-Modulation-Type		v27FaxClass1		12
VALUE	Initial-Modulation-Type		v29FaxClass1		13
VALUE	Initial-Modulation-Type		v17FaxClass1		14
VALUE	Initial-Modulation-Type		v21FaxClass2		15
VALUE	Initial-Modulation-Type		v27FaxClass2		16
VALUE	Initial-Modulation-Type		v29FaxClass2		17
VALUE	Initial-Modulation-Type		v17FaxClass2		18
VALUE	Initial-Modulation-Type		v32Terbo		19
VALUE	Initial-Modulation-Type		v34			20
VALUE	Initial-Modulation-Type		vFC			21
VALUE	Initial-Modulation-Type		v34plus			22
VALUE	Initial-Modulation-Type		x2			23
VALUE	Initial-Modulation-Type		v110			24
VALUE	Initial-Modulation-Type		v120			25
VALUE	Initial-Modulation-Type		x75			26
VALUE	Initial-Modulation-Type		asyncSyncPPP		27
VALUE	Initial-Modulation-Type		clearChannel		28
VALUE	Initial-Modulation-Type		x2client		29
VALUE	Initial-Modulation-Type		x2symmetric		30
VALUE	Initial-Modulation-Type		piafs			31
VALUE	Initial-Modulation-Type		x2version2		32
VALUE	Initial-Modulation-Type		v90Analogue		33
VALUE	Initial-Modulation-Type		v90Digital		34
VALUE	Initial-Modulation-Type		v90AllDigital		35

VALUE	USR-Connect-Term-Reason		dtrDrop			1
VALUE	USR-Connect-Term-Reason		escapeSequence		2
VALUE	USR-Connect-Term-Reason		athCommand		3
VALUE	USR-Connect-Term-Reason		carrierLoss		4
VALUE	USR-Connect-Term-Reason		inactivityTimout	5
VALUE	USR-Connect-Term-Reason		mnpIncompatible		6
VALUE	USR-Connect-Term-Reason		undefined		7
VALUE	USR-Connect-Term-Reason		remotePassword		8
VALUE	USR-Connect-Term-Reason		linkPassword		9
VALUE	USR-Connect-Term-Reason		retransmitLimit		10
VALUE	USR-Connect-Term-Reason		linkDisconnectMsgReceived 11
VALUE	USR-Connect-Term-Reason		noLoopCurrent		12
VALUE	USR-Connect-Term-Reason		invalidSpeed		13
VALUE	USR-Connect-Term-Reason		unableToRetrain		14
VALUE	USR-Connect-Term-Reason		managementCommand	15
VALUE	USR-Connect-Term-Reason		noDialTone		16
VALUE	USR-Connect-Term-Reason		keyAbort		17
VALUE	USR-Connect-Term-Reason		lineBusy		18
VALUE	USR-Connect-Term-Reason		noAnswer		19
VALUE	USR-Connect-Term-Reason		voice			20
VALUE	USR-Connect-Term-Reason		noAnswerTone		21
VALUE	USR-Connect-Term-Reason		noCarrier		22
VALUE	USR-Connect-Term-Reason		undetermined		23
VALUE	USR-Connect-Term-Reason		v42SabmeTimeout		24
VALUE	USR-Connect-Term-Reason		v42BreakTimeout		25
VALUE	USR-Connect-Term-Reason		v42DisconnectCmd	26
VALUE	USR-Connect-Term-Reason		v42IdExchangeFail	27
VALUE	USR-Connect-Term-Reason		v42BadSetup		28
VALUE	USR-Connect-Term-Reason		v42InvalidCodeWord	29
VALUE	USR-Connect-Term-Reason		v42StringToLong		30
VALUE	USR-Connect-Term-Reason		v42InvalidCommand	31
VALUE	USR-Connect-Term-Reason		none			32
VALUE	USR-Connect-Term-Reason		v32Cleardown		33
VALUE	USR-Connect-Term-Reason		dialSecurity		34
VALUE	USR-Connect-Term-Reason		remoteAccessDenied	35
VALUE	USR-Connect-Term-Reason		loopLoss		36
VALUE	USR-Connect-Term-Reason		ds0Teardown		37
VALUE	USR-Connect-Term-Reason		promptNotEnabled	38
VALUE	USR-Connect-Term-Reason		noPromptingInSync	39
VALUE	USR-Connect-Term-Reason		nonArqMode		40
VALUE	USR-Connect-Term-Reason		modeIncompatible	41
VALUE	USR-Connect-Term-Reason		noPromptInNonARQ	42
VALUE	USR-Connect-Term-Reason		dialBackLink		43
VALUE	USR-Connect-Term-Reason		linkAbort		44
VALUE	USR-Connect-Term-Reason		autopassFailed		45
VALUE	USR-Connect-Term-Reason		pbGenericError		46
VALUE	USR-Connect-Term-Reason		pbLinkErrTxPreAck	47
VALUE	USR-Connect-Term-Reason		pbLinkErrTxTardyACK	48
VALUE	USR-Connect-Term-Reason		pbTransmitBusTimeout	49
VALUE	USR-Connect-Term-Reason		pbReceiveBusTimeout	50
VALUE	USR-Connect-Term-Reason		pbLinkErrTxTAL		51
VALUE	USR-Connect-Term-Reason		pbLinkErrRxTAL		52
VALUE	USR-Connect-Term-Reason		pbTransmitMasterTimeout	53
VALUE	USR-Connect-Term-Reason		pbClockMissing		54
VALUE	USR-Connect-Term-Reason		pbReceivedLsWhileLinkUp	55
VALUE	USR-Connect-Term-Reason		pbOutOfSequenceFrame	56
VALUE	USR-Connect-Term-Reason		pbBadFrame		57
VALUE	USR-Connect-Term-Reason		pbAckWaitTimeout	58
VALUE	USR-Connect-Term-Reason		pbReceivedAckSeqErr	59
VALUE	USR-Connect-Term-Reason		pbReceiveOvrflwRNRFail	60
VALUE	USR-Connect-Term-Reason		pbReceiveMsgBufOvrflw	61
VALUE	USR-Connect-Term-Reason		rcvdGatewayDiscCmd	62
VALUE	USR-Connect-Term-Reason		tokenPassingTimeout	63
VALUE	USR-Connect-Term-Reason		dspInterruptTimeout	64
VALUE	USR-Connect-Term-Reason		mnpProtocolViolation	65
VALUE	USR-Connect-Term-Reason		class2FaxHangupCmd	66
VALUE	USR-Connect-Term-Reason		hstSpeedSwitchTimeout	67
VALUE	USR-Connect-Term-Reason		tooManyUnacked		68
VALUE	USR-Connect-Term-Reason		timerExpired		69
VALUE	USR-Connect-Term-Reason		t1Glare			70
VALUE	USR-Connect-Term-Reason		priDialoutRqTimeout	71
VALUE	USR-Connect-Term-Reason		abortAnlgDstOvrIsdn	72
VALUE	USR-Connect-Term-Reason		normalUserCallClear	73
VALUE	USR-Connect-Term-Reason		normalUnspecified	74
VALUE	USR-Connect-Term-Reason		bearerIncompatibility	75
VALUE	USR-Connect-Term-Reason		protocolErrorEvent	76
VALUE	USR-Connect-Term-Reason		abnormalDisconnect	77
VALUE	USR-Connect-Term-Reason		invalidCauseValue	78
VALUE	USR-Connect-Term-Reason		resourceUnavailable	79
VALUE	USR-Connect-Term-Reason		remoteHungUpDuringTraining 80
VALUE	USR-Connect-Term-Reason		trainingTimeout		81
VALUE	USR-Connect-Term-Reason		incomingModemNotAvailable 82
VALUE	USR-Connect-Term-Reason		incomingInvalidBearerCap 83
VALUE	USR-Connect-Term-Reason		incomingInvalidChannelID 84
VALUE	USR-Connect-Term-Reason		incomingInvalidProgInd	85
VALUE	USR-Connect-Term-Reason		incomingInvalidCallingPty 86
VALUE	USR-Connect-Term-Reason		incomingInvalidCalledPty 87
VALUE	USR-Connect-Term-Reason		incomingCallBlock	88
VALUE	USR-Connect-Term-Reason		incomingLoopStNoRingOff	89
VALUE	USR-Connect-Term-Reason		outgoingTelcoDisconnect	90
VALUE	USR-Connect-Term-Reason		outgoingEMWinkTimeout	91
VALUE	USR-Connect-Term-Reason		outgoingEMWinkTooShort	92
VALUE	USR-Connect-Term-Reason		outgoingNoChannelAvail	93
VALUE	USR-Connect-Term-Reason		dspReboot		94
VALUE	USR-Connect-Term-Reason		noDSPRespToKA		95
VALUE	USR-Connect-Term-Reason		noDSPRespToDisc		96
VALUE	USR-Connect-Term-Reason		dspTailPtrInvalid	97
VALUE	USR-Connect-Term-Reason		dspHeadPtrInvalid	98

VALUE	USR-Failure-to-Connect-Reason	dtrDrop			1
VALUE	USR-Failure-to-Connect-Reason	escapeSequence		2
VALUE	USR-Failure-to-Connect-Reason	athCommand		3
VALUE	USR-Failure-to-Connect-Reason	carrierLoss		4
VALUE	USR-Failure-to-Connect-Reason	inactivityTimout	5
VALUE	USR-Failure-to-Connect-Reason	mnpIncompatible		6
VALUE	USR-Failure-to-Connect-Reason	undefined		7
VALUE	USR-Failure-to-Connect-Reason	remotePassword		8
VALUE	USR-Failure-to-Connect-Reason	linkPassword		9
VALUE	USR-Failure-to-Connect-Reason	retransmitLimit		10
VALUE	USR-Failure-to-Connect-Reason	linkDisconnectMsgRec	11
VALUE	USR-Failure-to-Connect-Reason	noLoopCurrent		12
VALUE	USR-Failure-to-Connect-Reason	invalidSpeed		13
VALUE	USR-Failure-to-Connect-Reason	unableToRetrain		14
VALUE	USR-Failure-to-Connect-Reason	managementCommand	15
VALUE	USR-Failure-to-Connect-Reason	noDialTone		16
VALUE	USR-Failure-to-Connect-Reason	keyAbort		17
VALUE	USR-Failure-to-Connect-Reason	lineBusy		18
VALUE	USR-Failure-to-Connect-Reason	noAnswer		19
VALUE	USR-Failure-to-Connect-Reason	voice			20
VALUE	USR-Failure-to-Connect-Reason	noAnswerTone		21
VALUE	USR-Failure-to-Connect-Reason	noCarrier		22
VALUE	USR-Failure-to-Connect-Reason	undetermined		23
VALUE	USR-Failure-to-Connect-Reason	v42SabmeTimeout		24
VALUE	USR-Failure-to-Connect-Reason	v42BreakTimeout		25
VALUE	USR-Failure-to-Connect-Reason	v42DisconnectCmd	26
VALUE	USR-Failure-to-Connect-Reason	v42IdExchangeFail	27
VALUE	USR-Failure-to-Connect-Reason	v42BadSetup		28
VALUE	USR-Failure-to-Connect-Reason	v42InvalidCodeWord	29
VALUE	USR-Failure-to-Connect-Reason	v42StringToLong		30
VALUE	USR-Failure-to-Connect-Reason	v42InvalidCommand	31
VALUE	USR-Failure-to-Connect-Reason	none			32
VALUE	USR-Failure-to-Connect-Reason	v32Cleardown		33
VALUE	USR-Failure-to-Connect-Reason	dialSecurity		34
VALUE	USR-Failure-to-Connect-Reason	remoteAccessDenied	35
VALUE	USR-Failure-to-Connect-Reason	loopLoss		36
VALUE	USR-Failure-to-Connect-Reason	ds0Teardown		37
VALUE	USR-Failure-to-Connect-Reason	promptNotEnabled	38
VALUE	USR-Failure-to-Connect-Reason	noPromptingInSync	39
VALUE	USR-Failure-to-Connect-Reason	nonArqMode		40
VALUE	USR-Failure-to-Connect-Reason	modeIncompatible	41
VALUE	USR-Failure-to-Connect-Reason	noPromptInNonARQ	42
VALUE	USR-Failure-to-Connect-Reason	dialBackLink		43
VALUE	USR-Failure-to-Connect-Reason	linkAbort		44
VALUE	USR-Failure-to-Connect-Reason	autopassFailed		45
VALUE	USR-Failure-to-Connect-Reason	pbGenericError		46
VALUE	USR-Failure-to-Connect-Reason	pbLinkErrTxPreAck	47
VALUE	USR-Failure-to-Connect-Reason	pbLinkErrTxTardyACK	48
VALUE	USR-Failure-to-Connect-Reason	pbTransmitBusTimeout	49
VALUE	USR-Failure-to-Connect-Reason	pbReceiveBusTimeout	50
VALUE	USR-Failure-to-Connect-Reason	pbLinkErrTxTAL		51
VALUE	USR-Failure-to-Connect-Reason	pbLinkErrRxTAL		52
VALUE	USR-Failure-to-Connect-Reason	pbTransmitMasterTimeout	53
VALUE	USR-Failure-to-Connect-Reason	pbClockMissing		54
VALUE	USR-Failure-to-Connect-Reason	pbReceivedLsWhileLinkUp	55
VALUE	USR-Failure-to-Connect-Reason	pbOutOfSequenceFrame	56
VALUE	USR-Failure-to-Connect-Reason	pbBadFrame		57
VALUE	USR-Failure-to-Connect-Reason	pbAckWaitTimeout	58
VALUE	USR-Failure-to-Connect-Reason	pbReceivedAckSeqErr	59
VALUE	USR-Failure-to-Connect-Reason	pbReceiveOvrflwRNRFail	60
VALUE	USR-Failure-to-Connect-Reason	pbReceiveMsgBufOvrflw	61
VALUE	USR-Failure-to-Connect-Reason	rcvdGatewayDiscCmd	62
VALUE	USR-Failure-to-Connect-Reason	tokenPassingTimeout	63
VALUE	USR-Failure-to-Connect-Reason	dspInterruptTimeout	64
VALUE	USR-Failure-to-Connect-Reason	mnpProtocolViolation	65
VALUE	USR-Failure-to-Connect-Reason	class2FaxHangupCmd	66
VALUE	USR-Failure-to-Connect-Reason	hstSpeedSwitchTimeout	67
VALUE	USR-Failure-to-Connect-Reason	tooManyUnacked		68
VALUE	USR-Failure-to-Connect-Reason	timerExpired		69
VALUE	USR-Failure-to-Connect-Reason	t1Glare			70
VALUE	USR-Failure-to-Connect-Reason	priDialoutRqTimeout	71
VALUE	USR-Failure-to-Connect-Reason	abortAnlgDstOvrIsdn	72
VALUE	USR-Failure-to-Connect-Reason	normalUserCallClear	73
VALUE	USR-Failure-to-Connect-Reason	normalUnspecified	74
VALUE	USR-Failure-to-Connect-Reason	bearerIncompatibility	75
VALUE	USR-Failure-to-Connect-Reason	protocolErrorEvent	76
VALUE	USR-Failure-to-Connect-Reason	abnormalDisconnect	77
VALUE	USR-Failure-to-Connect-Reason	invalidCauseValue	78
VALUE	USR-Failure-to-Connect-Reason	resourceUnavailable	79
VALUE	USR-Failure-to-Connect-Reason	remoteHungUpDuringTraining 80
VALUE	USR-Failure-to-Connect-Reason	trainingTimeout		81
VALUE	USR-Failure-to-Connect-Reason	incomingModemNotAvailable 82
VALUE	USR-Failure-to-Connect-Reason	incomingInvalidBearerCap 83
VALUE	USR-Failure-to-Connect-Reason	incomingInvalidChannelID 84
VALUE	USR-Failure-to-Connect-Reason	incomingInvalidProgInd	85
VALUE	USR-Failure-to-Connect-Reason	incomingInvalidCallingPty 86
VALUE	USR-Failure-to-Connect-Reason	incomingInvalidCalledPty 87
VALUE	USR-Failure-to-Connect-Reason	incomingCallBlock	88
VALUE	USR-Failure-to-Connect-Reason	incomingLoopStNoRingOff	89
VALUE	USR-Failure-to-Connect-Reason	outgoingTelcoDisconnect	90
VALUE	USR-Failure-to-Connect-Reason	outgoingEMWinkTimeout	91
VALUE	USR-Failure-to-Connect-Reason	outgoingEMWinkTooShort	92
VALUE	USR-Failure-to-Connect-Reason	outgoingNoChannelAvail	93
VALUE	USR-Failure-to-Connect-Reason	dspReboot		94
VALUE	USR-Failure-to-Connect-Reason	noDSPRespToKA		95
VALUE	USR-Failure-to-Connect-Reason	noDSPRespToDisc		96
VALUE	USR-Failure-to-Connect-Reason	dspTailPtrInvalid	97
VALUE	USR-Failure-to-Connect-Reason	dspHeadPtrInvalid	98

VALUE	USR-Simplified-MNP-Levels	none			1
VALUE	USR-Simplified-MNP-Levels	mnpLevel3		2
VALUE	USR-Simplified-MNP-Levels	mnpLevel4		3
VALUE	USR-Simplified-MNP-Levels	ccittV42		4
VALUE	USR-Simplified-MNP-Levels	usRoboticsHST		5
VALUE	USR-Simplified-MNP-Levels	synchronousNone		6
VALUE	USR-Simplified-MNP-Levels	mnpLevel2		7
VALUE	USR-Simplified-MNP-Levels	mnp10			8
VALUE	USR-Simplified-MNP-Levels	v42Etc			9
VALUE	USR-Simplified-MNP-Levels	mnp10Etc		10
VALUE	USR-Simplified-MNP-Levels	lapmEtc			11
VALUE	USR-Simplified-MNP-Levels	v42Etc2			12
VALUE	USR-Simplified-MNP-Levels	v42SRej			13
VALUE	USR-Simplified-MNP-Levels	piafs			14

VALUE	USR-Simplified-V42bis-Usage	none			1
VALUE	USR-Simplified-V42bis-Usage	ccittV42bis		2
VALUE	USR-Simplified-V42bis-Usage	mnpLevel5		3

VALUE	USR-Equalization-Type		Long			1
VALUE	USR-Equalization-Type		Short			2

VALUE	USR-Fallback-Enabled		Disabled		1
VALUE	USR-Fallback-Enabled		Enabled			2

VALUE	USR-Back-Channel-Data-Rate	450BPS			1
VALUE	USR-Back-Channel-Data-Rate	300BPS			2
VALUE	USR-Back-Channel-Data-Rate	None			3

VALUE	USR-Device-Connected-To		None			1
VALUE	USR-Device-Connected-To		isdnGateway		2
VALUE	USR-Device-Connected-To		quadModem		3

VALUE	USR-Call-Event-Code		notSupported		1
VALUE	USR-Call-Event-Code		setup			2
VALUE	USR-Call-Event-Code		usrSetup		3
VALUE	USR-Call-Event-Code		telcoDisconnect		4
VALUE	USR-Call-Event-Code		usrDisconnect		5
VALUE	USR-Call-Event-Code		noFreeModem		6
VALUE	USR-Call-Event-Code		modemsNotAllowed	7
VALUE	USR-Call-Event-Code		modemsRejectCall	8
VALUE	USR-Call-Event-Code		modemSetupTimeout	9
VALUE	USR-Call-Event-Code		noFreeIGW		10
VALUE	USR-Call-Event-Code		igwRejectCall		11
VALUE	USR-Call-Event-Code		igwSetupTimeout		12
VALUE	USR-Call-Event-Code		noFreeTdmts		13
VALUE	USR-Call-Event-Code		bcReject		14
VALUE	USR-Call-Event-Code		ieReject		15
VALUE	USR-Call-Event-Code		chidReject		16
VALUE	USR-Call-Event-Code		progReject		17
VALUE	USR-Call-Event-Code		callingPartyReject	18
VALUE	USR-Call-Event-Code		calledPartyReject	19
VALUE	USR-Call-Event-Code		blocked			20
VALUE	USR-Call-Event-Code		analogBlocked		21
VALUE	USR-Call-Event-Code		digitalBlocked		22
VALUE	USR-Call-Event-Code		outOfService		23
VALUE	USR-Call-Event-Code		busy			24
VALUE	USR-Call-Event-Code		congestion		25
VALUE	USR-Call-Event-Code		protocolError		26
VALUE	USR-Call-Event-Code		noFreeBchannel		27
VALUE	USR-Call-Event-Code		inOutCallCollision	28
VALUE	USR-Call-Event-Code		inCallArrival		29
VALUE	USR-Call-Event-Code		outCallArrival		30
VALUE	USR-Call-Event-Code		inCallConnect		31
VALUE	USR-Call-Event-Code		outCallConnect		32

VALUE	USR-HARC-Disconnect-Code	No-Error		0
VALUE	USR-HARC-Disconnect-Code	No-Carrier		1
VALUE	USR-HARC-Disconnect-Code	No-DSR			2
VALUE	USR-HARC-Disconnect-Code	Timeout			3
VALUE	USR-HARC-Disconnect-Code	Reset			4
VALUE	USR-HARC-Disconnect-Code	Call-Drop-Req		5
VALUE	USR-HARC-Disconnect-Code	Idle-Timeout		6
VALUE	USR-HARC-Disconnect-Code	Session-Timeout		7
VALUE	USR-HARC-Disconnect-Code	User-Req-Drop		8
VALUE	USR-HARC-Disconnect-Code	Host-Req-Drop		9
VALUE	USR-HARC-Disconnect-Code	Service-Interruption	10
VALUE	USR-HARC-Disconnect-Code	Service-Unavailable	11
VALUE	USR-HARC-Disconnect-Code	User-Input-Error	12
VALUE	USR-HARC-Disconnect-Code	NAS-Drop-For-Callback	13
VALUE	USR-HARC-Disconnect-Code	NAS-Drop-Misc-Non-Error	14
VALUE	USR-HARC-Disconnect-Code	NAS-Internal-Error	15
VALUE	USR-HARC-Disconnect-Code	Line-Busy		16
VALUE	USR-HARC-Disconnect-Code	Tunnel-Term-Unreach	19
VALUE	USR-HARC-Disconnect-Code	Tunnel-Refused		20
VALUE	USR-HARC-Disconnect-Code	Tunnel-Auth-Failed	21
VALUE	USR-HARC-Disconnect-Code	Tunnel-Session-Timeout	22
VALUE	USR-HARC-Disconnect-Code	Tunnel-Timeout		23
VALUE	USR-HARC-Disconnect-Code	Radius-Res-Reclaim	25
VALUE	USR-HARC-Disconnect-Code	DNIS-Auth-Failed	26
VALUE	USR-HARC-Disconnect-Code	PAP-Auth-Failure	27
VALUE	USR-HARC-Disconnect-Code	CHAP-Auth-Failure	28
VALUE	USR-HARC-Disconnect-Code	PPP-LCP-Failed		29
VALUE	USR-HARC-Disconnect-Code	PPP-NCP-Failed		30
VALUE	USR-HARC-Disconnect-Code	Radius-Timeout		31

VALUE	USR-CCP-Algorithm		NONE			1
VALUE	USR-CCP-Algorithm		Stac			2
VALUE	USR-CCP-Algorithm		MS			3
VALUE	USR-CCP-Algorithm		Any			4

VALUE	USR-Tunnel-Security		None			0
VALUE	USR-Tunnel-Security		Control-Only		1
VALUE	USR-Tunnel-Security		Data-Only		2
VALUE	USR-Tunnel-Security		Both-Data-and-Control	3

VALUE	USR-RMMIE-Status		notEnabledInLocalModem	1
VALUE	USR-RMMIE-Status		notDetectedInRemoteModem 2
VALUE	USR-RMMIE-Status		ok			3

VALUE	USR-RMMIE-x2-Status		notOperational		1
VALUE	USR-RMMIE-x2-Status		operational		2
VALUE	USR-RMMIE-x2-Status		x2Disabled		3
VALUE	USR-RMMIE-x2-Status		v8Disabled		4
VALUE	USR-RMMIE-x2-Status		remote3200Disabled	5
VALUE	USR-RMMIE-x2-Status		invalidSpeedSetting	6
VALUE	USR-RMMIE-x2-Status		v8NotDetected		7
VALUE	USR-RMMIE-x2-Status		x2NotDetected		8
VALUE	USR-RMMIE-x2-Status		incompatibleVersion	9
VALUE	USR-RMMIE-x2-Status		incompatibleModes	10
VALUE	USR-RMMIE-x2-Status		local3200Disabled	11
VALUE	USR-RMMIE-x2-Status		excessHighFrequencyAtten 12
VALUE	USR-RMMIE-x2-Status		connectNotSupport3200	13
VALUE	USR-RMMIE-x2-Status		retrainBeforeConnection	14

VALUE	USR-RMMIE-Planned-Disconnect	none			1
VALUE	USR-RMMIE-Planned-Disconnect	dteNotReady		2
VALUE	USR-RMMIE-Planned-Disconnect	dteInterfaceError	3
VALUE	USR-RMMIE-Planned-Disconnect	dteRequest		4
VALUE	USR-RMMIE-Planned-Disconnect	escapeToOnlineCommandMode 5
VALUE	USR-RMMIE-Planned-Disconnect	athCommand		6
VALUE	USR-RMMIE-Planned-Disconnect	inactivityTimeout	7
VALUE	USR-RMMIE-Planned-Disconnect	arqProtocolError	8
VALUE	USR-RMMIE-Planned-Disconnect	arqProtocolRetransmitLim 9
VALUE	USR-RMMIE-Planned-Disconnect	invalidComprDataCodeword 10
VALUE	USR-RMMIE-Planned-Disconnect	invalidComprDataStringLen 11
VALUE	USR-RMMIE-Planned-Disconnect	invalidComprDataCommand	12

VALUE	USR-RMMIE-Last-Update-Event	none			1
VALUE	USR-RMMIE-Last-Update-Event	initialConnection	2
VALUE	USR-RMMIE-Last-Update-Event	retrain			3
VALUE	USR-RMMIE-Last-Update-Event	speedShift		4
VALUE	USR-RMMIE-Last-Update-Event	plannedDisconnect	5

VALUE	USR-Request-Type		Access-Request		1
VALUE	USR-Request-Type		Access-Accept		2
VALUE	USR-Request-Type		Access-Reject		3
VALUE	USR-Request-Type		Accounting-Request	4
VALUE	USR-Request-Type		Accounting-Response	5
# The next three non standard packet types are used by
# US Robotics Security/Accounting Server
VALUE	USR-Request-Type		Access-Password-Change	7
VALUE	USR-Request-Type		Access-Password-Ack	8
VALUE	USR-Request-Type		Access-Password-Reject	9
VALUE	USR-Request-Type		Access-Challenge	11
VALUE	USR-Request-Type		Status-Server		12
VALUE	USR-Request-Type		Status-Client		13
# Non standard packet types used by NetServer to implement
# resource management and NAS reboot conditions
VALUE	USR-Request-Type		Resource-Free-Request	21
VALUE	USR-Request-Type		Resource-Free-Response	22
VALUE	USR-Request-Type		Resource-Query-Request	23
VALUE	USR-Request-Type		Resource-Query-Response	24
VALUE	USR-Request-Type		Disconnect-User		25
VALUE	USR-Request-Type		NAS-Reboot-Request	26
VALUE	USR-Request-Type		NAS-Reboot-Response	27
# This value is used for Tacacs Plus translation
VALUE	USR-Request-Type		Tacacs-Message		253
VALUE	USR-Request-Type		Reserved		255

VALUE	USR-Speed-Of-Connection		Auto			0
VALUE	USR-Speed-Of-Connection		56			1
VALUE	USR-Speed-Of-Connection		64			2
VALUE	USR-Speed-Of-Connection		Voice			3

VALUE	USR-Expansion-Algorithm		Constant		1
VALUE	USR-Expansion-Algorithm		Linear			2

VALUE	USR-Compression-Algorithm	None			0
VALUE	USR-Compression-Algorithm	Stac			1
VALUE	USR-Compression-Algorithm	Ascend			2
VALUE	USR-Compression-Algorithm	Microsoft		3
VALUE	USR-Compression-Algorithm	Auto			4

VALUE	USR-Compression-Reset-Mode	Auto			0
VALUE	USR-Compression-Reset-Mode	Reset-Every-Packet	1
VALUE	USR-Compression-Reset-Mode	Reset-On-Error		2

VALUE	USR-Filter-Zones		enabled			1
VALUE	USR-Filter-Zones		disabled		2

VALUE	USR-Bridging			enabled			1
VALUE	USR-Bridging			disabled		2

VALUE	USR-Appletalk			enabled			1
VALUE	USR-Appletalk			disabled		2

VALUE	USR-Spoofing			enabled			1
VALUE	USR-Spoofing			disabled		2

VALUE	USR-Routing-Protocol		Rip1			1
VALUE	USR-Routing-Protocol		Rip2			2

VALUE	USR-IPX-Routing			none			0
VALUE	USR-IPX-Routing			send			1
VALUE	USR-IPX-Routing			listen			2
VALUE	USR-IPX-Routing			respond			3
VALUE	USR-IPX-Routing			all			4

VALUE	USR-IPX-WAN			enabled			1
VALUE	USR-IPX-WAN			disabled		2

VALUE	USR-IP-Default-Route-Option	enabled			1
VALUE	USR-IP-Default-Route-Option	disabled		2

VALUE	USR-IP-RIP-Policies		SendDefault		0x0
VALUE	USR-IP-RIP-Policies		SendRoutes		0x2
VALUE	USR-IP-RIP-Policies		SendSubnets		0x4
VALUE	USR-IP-RIP-Policies		AcceptDefault		0x8
VALUE	USR-IP-RIP-Policies		SplitHorizon		0x10
VALUE	USR-IP-RIP-Policies		PoisonReserve		0x20
VALUE	USR-IP-RIP-Policies		FlashUpdate		0x40
VALUE	USR-IP-RIP-Policies		SimpleAuth		0x80
VALUE	USR-IP-RIP-Policies		V1Send			0x100
VALUE	USR-IP-RIP-Policies		V1Receive		0x200
VALUE	USR-IP-RIP-Policies		V2Receive		0x400
VALUE	USR-IP-RIP-Policies		Silent			0x80000000

VALUE	USR-Callback-Type		Normal			1
VALUE	USR-Callback-Type		ANI			2
VALUE	USR-Callback-Type		Static			3
VALUE	USR-Callback-Type		Dynamic			4

VALUE	USR-Agent			FA			1
VALUE	USR-Agent			HA			2

VALUE	USR-NAS-Type			3Com-NMC		0
VALUE	USR-NAS-Type			3Com-NETServer		1
VALUE	USR-NAS-Type			3Com-HiPerArc		2
VALUE	USR-NAS-Type				TACACS+-Server		3
VALUE	USR-NAS-Type			3Com-SA-Server		4
VALUE	USR-NAS-Type			Ascend			5
VALUE	USR-NAS-Type			Generic-RADIUS		6
VALUE	USR-NAS-Type			3Com-NETBuilder-II	7

VALUE	USR-Auth-Mode			Auth-3Com		0
VALUE	USR-Auth-Mode			Auth-Ace		1
VALUE	USR-Auth-Mode			Auth-Safeword		2
VALUE	USR-Auth-Mode			Auth-UNIX-PW		3
VALUE	USR-Auth-Mode			Auth-Defender		4
VALUE	USR-Auth-Mode			Auth-TACACSP		5
VALUE	USR-Auth-Mode			Auth-Netware		6
VALUE	USR-Auth-Mode			Auth-Skey		7
VALUE	USR-Auth-Mode			Auth-EAP-Proxy		8
VALUE	USR-Auth-Mode			Auth-UNIX-Crypt		9

VALUE	CW-Acct-Type			COMS-UNKNOWN-ACCT-TYPE	0
VALUE	CW-Acct-Type			COMS-PREPAID-ACCT	1
VALUE	CW-Acct-Type			COMS-NEW-ACCT		2
VALUE	CW-Acct-Type			COMS-SUSPENDED-ACCT	3
VALUE	CW-Acct-Type			COMS-ADMINISTRATIVE-ACCT 4

VALUE	CW-Source-Identifier		COMS-UNKNOWN-SOURCE	0
VALUE	CW-Source-Identifier		COMS-INGRESS-OPEN	257
VALUE	CW-Source-Identifier		COMS-EGRESS-OPEN	258
VALUE	CW-Source-Identifier		COMS-GTKPR-GEN-INGR-OPEN 259
VALUE	CW-Source-Identifier		COMS-GTKPR-GEN-EGR-OPEN	260
VALUE	CW-Source-Identifier		COMS-INGRESS-CLOSE	513
VALUE	CW-Source-Identifier		COMS-EGRESS-CLOSE	514
VALUE	CW-Source-Identifier		COMS-GTKPR-GEN-INGR-CLOSE 515
VALUE	CW-Source-Identifier		COMS-GTKPR-GEN-EGR-CLOSE 516

VALUE	CW-Session-Sequence-End		NOT-THE-LAST-CALL	0
VALUE	CW-Session-Sequence-End		LAST-CALL		1

VALUE	CW-Clg-Party-E164-Type		comsUnknown		1
VALUE	CW-Clg-Party-E164-Type		comsInternationalNumber	2
VALUE	CW-Clg-Party-E164-Type		comsNationalNumber	3
VALUE	CW-Clg-Party-E164-Type		comsNetworkSpecificNumber 4
VALUE	CW-Clg-Party-E164-Type		comsSubscriberNumber	5
VALUE	CW-Clg-Party-E164-Type		comsAbbreviatedNumber	6
VALUE	CW-Clg-Party-E164-Type		comsReserved		7

VALUE	CW-Clg-Party-Trans-Protocol	TCP			1
VALUE	CW-Clg-Party-Trans-Protocol	UDP			2
VALUE	CW-Clg-Party-Trans-Protocol	SCTP			3

VALUE	CW-Cld-Party-E164-Type		comsUnknown		1
VALUE	CW-Cld-Party-E164-Type		comsInternationalNumber	2
VALUE	CW-Cld-Party-E164-Type		comsNationalNumber	3
VALUE	CW-Cld-Party-E164-Type		comsNetworkSpecificNumber 4
VALUE	CW-Cld-Party-E164-Type		comsSubscriberNumber	5
VALUE	CW-Cld-Party-E164-Type		comsAbbreviatedNumber	6
VALUE	CW-Cld-Party-E164-Type		comsReserved		7

VALUE	CW-Cld-Party-Trans-Protocol	TCP			1
VALUE	CW-Cld-Party-Trans-Protocol	UDP			2
VALUE	CW-Cld-Party-Trans-Protocol	SCTP			3

VALUE	CW-Ingr-Gway-E164-Type		comsUnknown		1
VALUE	CW-Ingr-Gway-E164-Type		comsInternationalNumber	2
VALUE	CW-Ingr-Gway-E164-Type		comsNationalNumber	3
VALUE	CW-Ingr-Gway-E164-Type		comsNetworkSpecificNumber 4
VALUE	CW-Ingr-Gway-E164-Type		comsSubscriberNumber	5
VALUE	CW-Ingr-Gway-E164-Type		comsAbbreviatedNumber	6
VALUE	CW-Ingr-Gway-E164-Type		comsReserved		7

VALUE	CW-Ingr-Gway-Trans-Protocol	TCP			1
VALUE	CW-Ingr-Gway-Trans-Protocol	UDP			2
VALUE	CW-Ingr-Gway-Trans-Protocol	SCTP			3

VALUE	CW-Egr-Gway-Trans-Protocol	TCP			1
VALUE	CW-Egr-Gway-Trans-Protocol	UDP			2
VALUE	CW-Egr-Gway-Trans-Protocol	SCTP			3

VALUE	CW-Ingr-Gtkpr-Trans-Protocol	TCP			1
VALUE	CW-Ingr-Gtkpr-Trans-Protocol	UDP			2
VALUE	CW-Ingr-Gtkpr-Trans-Protocol	SCTP			3

VALUE	CW-Egr-Gtkpr-Trans-Protocol	TCP			1
VALUE	CW-Egr-Gtkpr-Trans-Protocol	UDP			2
VALUE	CW-Egr-Gtkpr-Trans-Protocol	SCTP			3

VALUE	CW-Call-Type			COMS-UNKNOWN-CALLTYPE	0
VALUE	CW-Call-Type			COMS-PHONE-TO-PHONE	1
VALUE	CW-Call-Type			COMS-PHONE-TO-PC	2
VALUE	CW-Call-Type			COMS-PC-TO-PHONE	3
VALUE	CW-Call-Type			COMS-PC-TO-PC		4

VALUE	CW-Codec-Type			COMS-UNDEFINED-CODEC	0
VALUE	CW-Codec-Type			COMS-G723-1		1
VALUE	CW-Codec-Type			COMS-G729-A		2
VALUE	CW-Codec-Type			COMS-G710-ALaw		3
VALUE	CW-Codec-Type			COMS-G711-MuLaw		4
VALUE	CW-Codec-Type			COMS-FAX-MODULATION	255

VALUE	CW-Call-Termination-Cause	CAUSE-UNKNOWN		0
VALUE	CW-Call-Termination-Cause	CAUSE-CLD-PARTY-TERMINATE 1
VALUE	CW-Call-Termination-Cause	CAUSE-CLG-PARTY-TERMINATE 2
VALUE	CW-Call-Termination-Cause	CAUSE-ACCT-BAL-DEPLETED	3
VALUE	CW-Call-Termination-Cause	CAUSE-NO-EGR-PORTS-AVAIL 4
VALUE	CW-Call-Termination-Cause	CAUSE-H225-UNABLE-TO-CON 5
VALUE	CW-Call-Termination-Cause	CAUSE-H245-UNABLE-TO-CON 6
VALUE	CW-Call-Termination-Cause	CAUSE-INGR-FACILITY-DISC 7
VALUE	CW-Call-Termination-Cause	CAUSE-EGR-FACILITY-DISC	8
VALUE	CW-Call-Termination-Cause	CAUSE-DIR-SERVER-DOWN	9
VALUE	CW-Call-Termination-Cause	CAUSE-RATING-SERVER-DOWN 10
VALUE	CW-Call-Termination-Cause	CAUSE-GATEWAY-SHUTDOWN	11
VALUE	CW-Call-Termination-Cause	CAUSE-GTKPR-TERMINATE	12
VALUE	CW-Call-Termination-Cause	CAUSE-GTKPR-SHUTDOWN-GTWAY 13
VALUE	CW-Call-Termination-Cause	CAUSE-BUSY		14
VALUE	CW-Call-Termination-Cause	CAUSE-ABANDON		15
VALUE	CW-Call-Termination-Cause	CAUSE-INVALID-LOGIN-LIMIT 16
VALUE	CW-Call-Termination-Cause	CAUSE-NOACCTNUMBER-ENTRY 17
VALUE	CW-Call-Termination-Cause	CAUSE-SUSPENDED-ACCT-LOGIN 18
VALUE	CW-Call-Termination-Cause	CAUSE-AUTHENT-SERVER-DOWN 19
VALUE	CW-Call-Termination-Cause	CAUSE-GATEKEEPER-TIMEOUT 20
VALUE	CW-Call-Termination-Cause	CAUSE-GATEWAY-NO-RESOURCES 21
VALUE	CW-Call-Termination-Cause	CAUSE-ACCT-INUSE	22
VALUE	CW-Call-Termination-Cause	CAUSE-DEBIT-ACCT-BAL-ZERO 23
VALUE	CW-Call-Termination-Cause	CAUSE-DEBIT-ACCTBAL-INSUFF 24
VALUE	CW-Call-Termination-Cause	CAUSE-INVALID-DESTNUMBER-THRESH 25
VALUE	CW-Call-Termination-Cause	CAUSE-NO-DESTNUMBER-ENTRY 26
VALUE	CW-Call-Termination-Cause	CAUSE-SEQUENCE-DIALING-THRESH 27

VALUE	CW-Signaling-Protocol		SIG-UNKNOWN		0
VALUE	CW-Signaling-Protocol		SIG-SIP			1
VALUE	CW-Signaling-Protocol		SIG-H323		2

VALUE	CW-Protocol-Transport		TCP			1
VALUE	CW-Protocol-Transport		UDP			2
VALUE	CW-Protocol-Transport		SCTP			3

VALUE	CW-Local-Sig-Trans-Protocol	TCP			1
VALUE	CW-Local-Sig-Trans-Protocol	UDP			2
VALUE	CW-Local-Sig-Trans-Protocol	SCTP			3

VALUE	CW-Remote-Sig-Trans-Protocol	TCP			1
VALUE	CW-Remote-Sig-Trans-Protocol	UDP			2
VALUE	CW-Remote-Sig-Trans-Protocol	SCTP			3

VALUE	CW-Local-MG-RTP-Protocol	TCP			1
VALUE	CW-Local-MG-RTP-Protocol	UDP			2
VALUE	CW-Local-MG-RTP-Protocol	SCTP			3

VALUE	CW-Remote-MG-RTP-Protocol	TCP			1
VALUE	CW-Remote-MG-RTP-Protocol	UDP			2
VALUE	CW-Remote-MG-RTP-Protocol	SCTP			3

VALUE	CW-Trans-Cld-Party-E164-Type	Unknown			1
VALUE	CW-Trans-Cld-Party-E164-Type	International-Number	2
VALUE	CW-Trans-Cld-Party-E164-Type	National-Number		3
VALUE	CW-Trans-Cld-Party-E164-Type	Network-Specific-Number	4
VALUE	CW-Trans-Cld-Party-E164-Type	Subscriber-Number	5
VALUE	CW-Trans-Cld-Party-E164-Type	Abbreviated-Number	6
VALUE	CW-Trans-Cld-Party-E164-Type	Reserved		7

VALUE USR-Pre-Paid-Enabled Phase2-active-Time-counted 1
VALUE USR-Pre-Paid-Enabled Phase2-Transfer/Reciev-Packet-counted 2
VALUE USR-Pre-Paid-Enabled Phase2-Total-Packet-counted 3
END-VENDOR USR