summaryrefslogtreecommitdiff
path: root/MIBS/benuos/BENU-RADIUS-MIB
blob: 6d5fc976b3f537a753ece51f55ee228a2711fe16 (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
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
BENU-RADIUS-MIB DEFINITIONS ::= BEGIN

IMPORTS
   Integer32 ,Unsigned32, MODULE-IDENTITY, OBJECT-TYPE, OBJECT-IDENTITY, NOTIFICATION-TYPE
      FROM SNMPv2-SMI

   DisplayString, TEXTUAL-CONVENTION
      FROM SNMPv2-TC

   InetAddressType, InetAddress
      FROM INET-ADDRESS-MIB

   benuWAG FROM BENU-WAG-MIB;

benuRadiusMIB  MODULE-IDENTITY 
            LAST-UPDATED "201607280000Z" -- Jul 28, 2016


            ORGANIZATION "Benu Networks,Inc"
            CONTACT-INFO "Benu Networks,Inc
                          Corporate Headquarters
                          300 Concord Road, Suite 110
                          Billerica, MA 01821 USA
                          Tel: +1 978-223-4700
                          Fax: +1 978-362-1908
                          Email: info@benunets.com"
            DESCRIPTION
               "This MIB module defines management information
                related to the AAA clients.

                Copyright (C)  2013 by Benu Networks, Inc.
                All rights reserved."

            REVISION "201607280000Z" -- Jul 28, 2016
            DESCRIPTION "Modified BAAAGroupAuthEntry, BAAAGroupAcctEntry, BAAAGroupCoAEntry"

            REVISION "201603170000Z" -- March 17, 2016 
            DESCRIPTION "Removed multiple instance indexes from BenuRadiusInstance. "

            REVISION "201506240000Z" -- June 24, 2015
            DESCRIPTION "Modified bRadiusProxyAuthTPSIntervalDuration description."

            REVISION "201505210000Z" -- May 21, 2015
            DESCRIPTION "Changed oid values for bRadiusProxyAuthTPSLowReached and bRadiusProxyAuthTPSHighReached."

            REVISION "201505200000Z" -- May 20, 2015
            DESCRIPTION "Modified description of bRadiusProxyAuthTPSIntervalDuration."

            REVISION "201503160000Z" -- March 16, 2015
            DESCRIPTION "Added units to processing times in bRadiusLatencyAuthTable"

            REVISION "201503020000Z" -- March 02, 2015
            DESCRIPTION "Added bRadiusLatencyAuthTable"

            REVISION "201502240000Z" -- February 24, 2015
            DESCRIPTION "Added bRadiusProxySubscriberDeleted in bRadiusProxyServerAuthTable"

            REVISION "201501260000Z" -- January 26, 2015
            DESCRIPTION "Updated notification assignments to comply with
            standards (RFC 2578)."


            REVISION "201501020000Z" --  January 02, 2015
            DESCRIPTION "Added bRadiusProxyAuthTPSTable, bRadiusProxyAuthTPSLowReached and bRadiusProxyAuthTPSHighReached"

            REVISION "201412020000Z" --  December 02, 2014
            DESCRIPTION "Changed bRadiusNotifObjects from index 2 to 0"

            REVISION "201407170000Z" --  July 17, 2014
            DESCRIPTION "Added radius proxy server Acct table"

            REVISION "201405190000Z" --  May 19, 2014
            DESCRIPTION "Added radius proxy server Authtable"

            REVISION "201304180000Z" --  April 18, 2013
            DESCRIPTION "Initial Version"

    ::= { benuWAG 4 }

-- declare top-level MIB objects for each component

BenuRadiusInstance ::= TEXTUAL-CONVENTION
    STATUS       current
    DESCRIPTION "An identifier that uniquely identifies
                 the Benu RADIUS Proxy instance.
                 They are as follows:

                     1  RADIUS instance 0
                "
    SYNTAX       INTEGER {
       radiusInstance0(1)
    }

bRadiusMIBObjects  OBJECT-IDENTITY
   STATUS      current
   DESCRIPTION
      "RADIUS server information is defined in this branch."
   ::= { benuRadiusMIB 1 }

bRadiusNotifications  OBJECT-IDENTITY
   STATUS      current
   DESCRIPTION
      "Notifications related to RADIUS server
       are defined in this branch."
   ::= { benuRadiusMIB 0 }

bRadiusNotifObjects  OBJECT-IDENTITY
   STATUS      current
   DESCRIPTION
       "Notification objects related to RADIUS server
        are defined in this branch."
   ::= { benuRadiusMIB 2 }   

bRadiusProxyMIBObjects  OBJECT-IDENTITY
   STATUS      current
   DESCRIPTION
      "RADIUS Proxyserver information is defined in this branch."
   ::= { benuRadiusMIB 3 }

bRadiusProxyNotifObjects  OBJECT-IDENTITY
   STATUS      current
   DESCRIPTION
      "Notifications related to RADIUS Proxy server
       are defined in this branch."
   ::= { benuRadiusMIB 4 }



-- RADIUS server authentication Table

bRadiusServerAuthTable  OBJECT-TYPE
   SYNTAX      SEQUENCE OF BRadiusServerAuthEntry
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION 
      "A list of authentication RADIUS server information."
   ::= { bRadiusMIBObjects 1 }

bRadiusServerAuthEntry  OBJECT-TYPE
   SYNTAX      BRadiusServerAuthEntry
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION 
      "A logical row in the bRadiusServerAuthTable."
   INDEX {
      bRadiusAuthStatsInterval,
      bRadiusAuthServerIndex
   }
   ::= { bRadiusServerAuthTable 1}

BRadiusServerAuthEntry ::= SEQUENCE {
    bRadiusAuthStatsInterval                    Integer32,
    bRadiusAuthServerIndex                      Integer32,
    bRadiusAuthServerInetAddressType            InetAddressType,
    bRadiusAuthServerInetAddress                InetAddress,
    bRadiusAuthIntervalDuration                 Integer32,
    bRadiusAccessRequestSent                    Unsigned32,
    bRadiusAccessAcceptReceived                 Unsigned32,
    bRadiusAccessRejectReceived                 Unsigned32,
    bRadiusAccessChallengeReceived              Unsigned32,
    bRadiusAccessRequestResent                  Unsigned32,
    bRadiusAccessRequestDropped                 Unsigned32,
    bRadiusAccessRequestTimedOut                Unsigned32,
    bRadiusAccessRequestSentFail                Unsigned32,
    bRadiusAccessPeakRequestPending             Unsigned32,
    bRadiusAccessMalformedRespDropped           Unsigned32,
    bRadiusAccessBadAuthenticatorRcvd           Unsigned32,
    bRadiusAccessServerMarkedDead               Unsigned32,
    bRadiusAuthLatencyMin                       Unsigned32,
    bRadiusAuthLatencyMax                       Unsigned32,
    bRadiusAuthLatencyAvg                       Unsigned32,
    bRadiusAuthLatencyLast                      Unsigned32,
    bRadiusAuthAAAGroupName                     DisplayString
}
bRadiusAuthStatsInterval  OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "The interval during which the measurements were accumulated.
       The interval index one indicates the latest interval for which statistics
       accumulation was completed. Older the statistics data, greater the
       interval index value.
       In a system supporting a history of n intervals with IntervalCount(1) and 
       IntervalCount(n), the most and least recent intervals respectively, the following
       applies at the end of an interval:
       - discard the value of IntervalCount(n)
       - the value of IntervalCount(i) becomes that
         of IntervalCount(i+1) for 1 <= i < n
       - the value of IntervalCount(1) becomes that
         of CurrentCount."
   ::= { bRadiusServerAuthEntry 1 }

bRadiusAuthServerIndex  OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
       "A number uniquely identifying each RADIUS
        Authentication server with which this client
        communicates."
   ::= { bRadiusServerAuthEntry 2 }

bRadiusAuthServerInetAddressType  OBJECT-TYPE
   SYNTAX      InetAddressType
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The type of address format used for the
       bRadiusAuthServerInetAddress object."
   ::= { bRadiusServerAuthEntry 3 }

bRadiusAuthServerInetAddress  OBJECT-TYPE
   SYNTAX      InetAddress
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
     "The IP address of the RADIUS Authentication
      server referred to in this table entry, using
      the version-neutral IP address format."
   ::= { bRadiusServerAuthEntry 4 }

bRadiusAuthIntervalDuration  OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "Duration of statistics accumulation interval in minutes."
   ::= { bRadiusServerAuthEntry 5 }


bRadiusAccessRequestSent  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of Access-Request message(s) sent."
   ::= { bRadiusServerAuthEntry 6 }

bRadiusAccessAcceptReceived  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of Access-Accept message(s) received."
   ::= { bRadiusServerAuthEntry 7 }

bRadiusAccessRejectReceived  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of Access-Reject message(s) received."
   ::= { bRadiusServerAuthEntry 8 }

bRadiusAccessChallengeReceived  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of Access-Challenge message(s) received."
   ::= { bRadiusServerAuthEntry 9 }

bRadiusAccessRequestResent  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the number of Access-Request message(s) resent to server
       as no response was received."
   ::= { bRadiusServerAuthEntry 10 }

bRadiusAccessRequestDropped  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the number of Access-Request message(s) dropped."
   ::= { bRadiusServerAuthEntry 11 }

bRadiusAccessRequestTimedOut  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION 
       "The count of the number of Access-Request message(s) for which
       no response is received even after maximum number of retransmissions."
   ::= { bRadiusServerAuthEntry 12 }

bRadiusAccessRequestSentFail  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the number of Access-Request message(s) for which send() failed."
   ::= { bRadiusServerAuthEntry 13 }

bRadiusAccessPeakRequestPending  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the peak number of outstanding Access-Request message(s) reached in a
        measurement interval period."
   ::= { bRadiusServerAuthEntry 14 }

bRadiusAccessMalformedRespDropped  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the number of dropped malformed message(s) received from RADIUS authentication server."
   ::= { bRadiusServerAuthEntry 15 }

bRadiusAccessBadAuthenticatorRcvd  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the number of packets received from RADIUS server with bad authenticator."
   ::= { bRadiusServerAuthEntry 16 }

bRadiusAccessServerMarkedDead  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION 
       "The count of the number of times a RADIUS server is marked dead during the measurement interval."
   ::= { bRadiusServerAuthEntry 17 }

bRadiusAuthLatencyMin  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The measure of the minimum time interval, between all Access-Request
       message(s) sent by the AAA process residing in the WAG to the RADIUS Server 
       and the  corresponding Access-Accept/Reject message(s) received by the AAA process.
       The value is in in microseconds."
   ::= { bRadiusServerAuthEntry 18 }

bRadiusAuthLatencyMax  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The measure of the maximum time interval, between all Access-Request
       message(s) sent by the AAA process residing in the WAG to the RADIUS Server and 
       the  corresponding Access-Accept/Reject message(s) received by the AAA process.
       The value is in in microseconds."
   ::= { bRadiusServerAuthEntry 19 }

bRadiusAuthLatencyAvg  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The measure of the average time interval, between all Access-Request
       message(s) sent by the AAA process residing in the WAG to the RADIUS Server and 
       the  corresponding Access-Accept/Reject message(s) received by the AAA process.
       The value is in in microseconds."
   ::= { bRadiusServerAuthEntry 20 }

bRadiusAuthLatencyLast  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The measure of the time interval, between the most recent Access-Request
       message sent by the AAA process residing in the WAG to the RADIUS Server 
       and the corresponding Access-Accept/Reject message received by the AAA process.
       The value is in in microseconds."
   ::= { bRadiusServerAuthEntry 21  }


bRadiusAuthAAAGroupName  OBJECT-TYPE
   SYNTAX      DisplayString
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "AAA server group to which this RADIUS server belongs."
   ::= { bRadiusServerAuthEntry 22 }

-- RADIUS Proxy server authentication Table

bRadiusProxyServerAuthTable  OBJECT-TYPE
   SYNTAX      SEQUENCE OF BRadiusProxyServerAuthEntry
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "A list of authentication RADIUS Proxy server information."
   ::= { bRadiusProxyMIBObjects 1 }

bRadiusProxyServerAuthEntry  OBJECT-TYPE
   SYNTAX      BRadiusProxyServerAuthEntry
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "A logical row in the Radius Proxy server Auth Table."
   INDEX {
      bRadiusProxyAuthStatsInterval,
      bRadiusProxyAuthServerIndex
   }
   ::= { bRadiusProxyServerAuthTable 1}

BRadiusProxyServerAuthEntry::= SEQUENCE {
    bRadiusProxyAuthStatsInterval                    Integer32,
    bRadiusProxyAuthServerIndex                      Integer32,
    bRadiusProxyAuthServerInetAddressType            InetAddressType,
    bRadiusProxyAuthServerInetAddress                InetAddress,
    bRadiusProxyAuthIntervalDuration                 Integer32,
    bRadiusProxyAccessRequestRcvd                    Unsigned32,
    bRadiusProxyAccessUnknownTypeRcvd                Unsigned32,
    bRadiusProxyAccessUnknownClientRcvd              Unsigned32,
    bRadiusProxyAccessRequestDropped                 Unsigned32,
    bRadiusProxyAccessSentFail                       Unsigned32,
    bRadiusProxyAccessBadAuthenticatorRcvd           Unsigned32,
    bRadiusProxyAccessAcceptRcvd                     Unsigned32,
    bRadiusProxyAccessRejectRcvd                     Unsigned32,
    bRadiusProxyAccessChallengeRcvd                  Unsigned32,
    bRadiusProxySubscriberBlocked                    Unsigned32,
    bRadiusProxySubscriberDeleted                    Unsigned32
}
bRadiusProxyAuthStatsInterval  OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "The interval during which the measurements were accumulated.
       The interval index one indicates the latest interval for which
       statistics accumulation was completed. Older the statistics data, greater the
       interval index value.    In a system supporting a history of n intervals with 
       IntervalCount(1) and IntervalCount(n), the most and least recent intervals 
       respectively, the following applies at the end of an interval:
       - discard the value of IntervalCount(n)
       - the value of IntervalCount(i) becomes that
         of IntervalCount(i+1) for 1 <= i < n
       - the value of IntervalCount(1) becomes that
         of CurrentCount."
   ::= { bRadiusProxyServerAuthEntry 1 }

bRadiusProxyAuthServerIndex  OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
       "A number uniquely identifying each RADIUS
        Authentication Proxy server with which this clients
        communicates."
   ::= { bRadiusProxyServerAuthEntry 2 }

bRadiusProxyAuthServerInetAddressType  OBJECT-TYPE
   SYNTAX      InetAddressType
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The type of address format used for the
       bRadiusProxyAuthServerInetAddress object."
   ::= { bRadiusProxyServerAuthEntry 3 }

bRadiusProxyAuthServerInetAddress  OBJECT-TYPE
   SYNTAX      InetAddress
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
     "The IP address of the RADIUS Authentication
      proxy server referred to in this table entry, using
      the version-neutral IP address format."
   ::= { bRadiusProxyServerAuthEntry 4 }

bRadiusProxyAuthIntervalDuration  OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "Duration of statistics accumulation interval in minutes."
   ::= { bRadiusProxyServerAuthEntry 5 }

bRadiusProxyAccessRequestRcvd   OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of Access-Request message(s) received."
   ::= { bRadiusProxyServerAuthEntry 6 }

bRadiusProxyAccessUnknownTypeRcvd  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of Unknown message(s) received."
   ::= { bRadiusProxyServerAuthEntry 7 }

bRadiusProxyAccessUnknownClientRcvd  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of  message(s) received by Radius
         Proxy server from unknown clients."
   ::= { bRadiusProxyServerAuthEntry 8 }

bRadiusProxyAccessRequestDropped  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the number of Access-Request message(s) dropped by the 
        radius proxy server ."
   ::= { bRadiusProxyServerAuthEntry 9 }

bRadiusProxyAccessSentFail  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the number of message(s)received by the radius proxy 
         server from clients for which transmit failed."
   ::= { bRadiusProxyServerAuthEntry 10 }

bRadiusProxyAccessBadAuthenticatorRcvd  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the number of packets received by the radius proxy server
         from clients  with bad authenticator."
   ::= { bRadiusProxyServerAuthEntry 11 }

bRadiusProxyAccessAcceptRcvd  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of Access-Accept message(s) received."
   ::= { bRadiusProxyServerAuthEntry 12 }

bRadiusProxyAccessRejectRcvd  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of Access-Reject message(s) received."
   ::= { bRadiusProxyServerAuthEntry 13 }

bRadiusProxyAccessChallengeRcvd  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of Access-Challenge message(s) received."
   ::= { bRadiusProxyServerAuthEntry 14 }

bRadiusProxySubscriberBlocked  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of subscribers blocked by the proxy
        server."
   ::= { bRadiusProxyServerAuthEntry 15 }

bRadiusProxySubscriberDeleted  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of subscribers deleted by the proxy
        server."
   ::= { bRadiusProxyServerAuthEntry 16 }

-- RADIUS Proxy authentication TPS Table

bRadiusProxyAuthTPSTable  OBJECT-TYPE
   SYNTAX      SEQUENCE OF BRadiusProxyAuthTPSEntry
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "An informative list of RADIUS Proxy authentication transactions."
   ::= { bRadiusProxyMIBObjects 3 }

bRadiusProxyAuthTPSEntry  OBJECT-TYPE
   SYNTAX      BRadiusProxyAuthTPSEntry
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "A logical row in the Radius Proxy Auth TPS Table."
   INDEX {
      bRadiusProxyAuthTPSInterval
   }
   ::= { bRadiusProxyAuthTPSTable 1}

BRadiusProxyAuthTPSEntry::= SEQUENCE {
    bRadiusProxyAuthTPSInterval             Integer32,
    bRadiusProxyAuthTPSIntervalDuration     Unsigned32,
    bRadiusProxyAuthTPSLow                  Unsigned32,
    bRadiusProxyAuthTPSHigh                 Unsigned32,
    bRadiusProxyAuthTPS                     Unsigned32
}

bRadiusProxyAuthTPSInterval  OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "The interval during which the measurements were accumulated.
       The interval index one indicates the latest interval for which
       statistics accumulation was completed. Older the statistics data, greater the
       interval index value.    In a system supporting a history of n intervals with 
       IntervalCount(1) and IntervalCount(n), the most and least recent intervals 
       respectively, the following applies at the end of an interval:
       - discard the value of IntervalCount(n)
       - the value of IntervalCount(i) becomes that
         of IntervalCount(i+1) for 1 <= i < n
       - the value of IntervalCount(1) becomes that
         of CurrentCount."
   ::= { bRadiusProxyAuthTPSEntry 1 }

bRadiusProxyAuthTPSIntervalDuration  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "Configured interval duration of Radius transactions in seconds"
   ::= { bRadiusProxyAuthTPSEntry 2 }

bRadiusProxyAuthTPSLow  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The low value configured for the particular interval"
   ::= { bRadiusProxyAuthTPSEntry 3 }

bRadiusProxyAuthTPSHigh  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
     "The high value configured for the particular interval"
   ::= { bRadiusProxyAuthTPSEntry 4 }

bRadiusProxyAuthTPS  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "Total number of Radius Proxy transactions for the Radius tps interval"
   ::= { bRadiusProxyAuthTPSEntry 5 }



-- RADIUS server accounting Table

bRadiusServerAcctTable  OBJECT-TYPE
   SYNTAX      SEQUENCE OF BRadiusServerAcctEntry
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "A list of accounting RADIUS server information."
   ::= { bRadiusMIBObjects 2 }

bRadiusServerAcctEntry  OBJECT-TYPE
   SYNTAX      BRadiusServerAcctEntry
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "A logical row in the bRadiusServerAcctTable."
   INDEX {
      bRadiusAcctStatsInterval,
      bRadiusAcctServerIndex
   }
   ::= { bRadiusServerAcctTable 1}

BRadiusServerAcctEntry ::= SEQUENCE {
    bRadiusAcctStatsInterval                    Integer32,
    bRadiusAcctServerIndex                      Integer32,
    bRadiusAcctServerInetAddressType            InetAddressType,
    bRadiusAcctServerInetAddress                InetAddress,
    bRadiusAcctIntervalDuration                 Integer32,
    bRadiusAcctRequestSent                      Unsigned32,
    bRadiusAcctStartRequestSent                 Unsigned32,
    bRadiusAcctStopRequestSent                  Unsigned32,
    bRadiusAcctInterimUpdateSent                Unsigned32,
    bRadiusAcctResponseReceived                 Unsigned32,
    bRadiusAcctRequestResent                    Unsigned32,
    bRadiusAcctRequestDropped                   Unsigned32,
    bRadiusAcctRequestTimedOut                  Unsigned32,
    bRadiusAcctRequestSentFail                  Unsigned32,
    bRadiusAcctPeakRequestPending               Unsigned32,
    bRadiusAcctMalformedRespDropped             Unsigned32,
    bRadiusAcctBadAuthenticatorRcvd             Unsigned32,
    bRadiusAcctServerMarkedDead                 Unsigned32,
    bRadiusAcctLatencyMin                       Unsigned32,
    bRadiusAcctLatencyMax                       Unsigned32,
    bRadiusAcctLatencyAvg                       Unsigned32,
    bRadiusAcctLatencyLast                      Unsigned32,
    bRadiusAcctAAAGroupName                     DisplayString
}

bRadiusAcctStatsInterval  OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "The interval during which the measurements were accumulated.
       The interval index one indicates the latest interval for which statistics
       accumulation was completed. Older the statistics data, greater the
       interval index value.
       In a system supporting a history of n intervals with IntervalCount(1) and
       IntervalCount(n), the most and least recent intervals respectively, the following
       applies at the end of an interval:
       - discard the value of IntervalCount(n)
       - the value of IntervalCount(i) becomes that
         of IntervalCount(i+1) for  1 <= i < n
       - the value of IntervalCount(1) becomes that
         of CurrentCount."
   ::= { bRadiusServerAcctEntry 1 }

bRadiusAcctServerIndex  OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
       "A number uniquely identifying each RADIUS
        Accounting server with which this client
        communicates."
   ::= { bRadiusServerAcctEntry 2 }

bRadiusAcctServerInetAddressType  OBJECT-TYPE
   SYNTAX      InetAddressType
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The type of address format used for the
       bRadiusAcctServerInetAddress object."
   ::= { bRadiusServerAcctEntry 3 }

bRadiusAcctServerInetAddress  OBJECT-TYPE
   SYNTAX      InetAddress
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
     "The IP address of the RADIUS Accounting
      server referred to in this table entry, using
      the version-neutral IP address format."
   ::= { bRadiusServerAcctEntry 4 }

bRadiusAcctIntervalDuration  OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "Duration of statistics accumulation interval in minutes."
   ::= { bRadiusServerAcctEntry 5 }

bRadiusAcctRequestSent  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION 
       "The count of the total number of Accounting-Request message(s) sent."
   ::= { bRadiusServerAcctEntry 6 }

bRadiusAcctStartRequestSent  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of Accounting-Request Start message(s) sent."
   ::= { bRadiusServerAcctEntry 7 }

bRadiusAcctStopRequestSent  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION 
       "The count of the total number of Accounting-Request Stop message(s) sent."
   ::= { bRadiusServerAcctEntry 8 }

bRadiusAcctInterimUpdateSent  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION 
       "The count of the total number of Accounting-Request Interim-Update message(s) sent."
   ::= { bRadiusServerAcctEntry 9 }

bRadiusAcctResponseReceived  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of Accounting-Response message(s) received."
   ::= { bRadiusServerAcctEntry 10 }


bRadiusAcctRequestResent  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the number of Accounting-Request message(s) resent to server 
       as no response was received."
   ::= { bRadiusServerAcctEntry 11 }

bRadiusAcctRequestDropped  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the number of Accounting-Request message(s) dropped."
   ::= { bRadiusServerAcctEntry 12 }

bRadiusAcctRequestTimedOut  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the number of Accounting-Request message(s) for which no response
        is received even after maximum number of retransmissions."
   ::= { bRadiusServerAcctEntry 13 }

bRadiusAcctRequestSentFail  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION 
       "The count of the number of Accounting-Request message(s) for which send() failed."
   ::= { bRadiusServerAcctEntry 14 }

bRadiusAcctPeakRequestPending  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION 
       "The count of the peak number of outstanding Accounting-Request message(s) reached in
        a measurement interval period."
   ::= { bRadiusServerAcctEntry 15 }

bRadiusAcctMalformedRespDropped  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the number of dropped malformed packets received from RADIUS accounting server."
   ::= { bRadiusServerAcctEntry 16 }

bRadiusAcctBadAuthenticatorRcvd  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the number of packets received from AAA server with bad authenticator."
   ::= { bRadiusServerAcctEntry 17 }

bRadiusAcctServerMarkedDead  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the number of times a server is marked dead during the measurement interval."
   ::= { bRadiusServerAcctEntry 18 }

bRadiusAcctLatencyMin  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The measure of the minimum time interval, between all Accounting-Request
       message(s) (Start/Interim Update/Stop) sent by the AAA process residing in 
       the WAG to the RADIUS Server and the corresponding Accounting-Response message(s) 
       received by the AAA process.
       The value is in in microseconds."
   ::= { bRadiusServerAcctEntry 19 }

bRadiusAcctLatencyMax  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The measure of the maximum time interval, between all Accounting-Request
       message(s) (Start/Interim Update/Stop) sent by the AAA process residing in the 
       WAG to the RADIUS Server and the corresponding Accounting-Response message(s) 
       received by the AAA process.
       The value is in in microseconds."
   ::= { bRadiusServerAcctEntry 20 }

bRadiusAcctLatencyAvg  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The measure of the average time interval, between all Accounting-Request
       message(s) (Start/Interim Update/Stop) sent by the AAA process residing in the 
       WAG to the RADIUS Server and the corresponding Accounting-Response message(s) 
       received by the AAA process.
       The value is in in microseconds."
   ::= { bRadiusServerAcctEntry 21 }

bRadiusAcctLatencyLast  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The measure of the time interval, between the most recent Accounting-Request
       message (Start/Interim Update/Stop) sent by the AAA process residing in the WAG 
       to the RADIUS Server and the corresponding Accounting-Response message received 
       by the AAA process.
       The value is in in microseconds."
   ::= { bRadiusServerAcctEntry 22 }

bRadiusAcctAAAGroupName  OBJECT-TYPE 
   SYNTAX      DisplayString
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "AAA server group to which this radius server belongs."
   ::= { bRadiusServerAcctEntry 23 }

-- RADIUS Proxy server accounting Table

bRadiusProxyServerAcctTable  OBJECT-TYPE
   SYNTAX      SEQUENCE OF BRadiusProxyServerAcctEntry
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "A list of accounting RADIUS Proxy Accounting server information."
   ::= { bRadiusProxyMIBObjects 2 }

bRadiusProxyServerAcctEntry  OBJECT-TYPE
   SYNTAX      BRadiusProxyServerAcctEntry
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "A logical row in the bRadiusProxyServerAcctTable."
   INDEX {
      bRadiusProxyAcctStatsInterval,
      bRadiusProxyAcctServerIndex
   }
   ::= { bRadiusProxyServerAcctTable 1}

BRadiusProxyServerAcctEntry ::= SEQUENCE {
    bRadiusProxyAcctStatsInterval                    Integer32,
    bRadiusProxyAcctServerIndex                      Integer32,
    bRadiusProxyAcctServerInetAddressType            InetAddressType,
    bRadiusProxyAcctServerInetAddress                InetAddress,
    bRadiusProxyAcctIntervalDuration                 Integer32,
    bRadiusProxyAcctRequestRcvd                      Unsigned32,
    bRadiusProxyAcctRequestSent                      Unsigned32,
    bRadiusProxyAcctStartRequestRcvd                 Unsigned32,
    bRadiusProxyAcctStopRequestRcvd                  Unsigned32,
    bRadiusProxyAcctInterimUpdateRcvd                Unsigned32,
    bRadiusProxyAcctStartRequestSent                 Unsigned32,
    bRadiusProxyAcctStopRequestSent                  Unsigned32,
    bRadiusProxyAcctInterimUpdateSent                Unsigned32,
    bRadiusProxyAcctResponseRcvd                     Unsigned32,
    bRadiusProxyAcctResponseSent                     Unsigned32
}

bRadiusProxyAcctStatsInterval  OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "The interval during which the measurements were accumulated.
       The interval index one indicates the latest interval for which
statistics
       accumulation was completed. Older the statistics data, greater the
       interval index value.
       In a system supporting a history of n intervals with IntervalCount(1)
and
       IntervalCount(n), the most and least recent intervals respectively, the
following
       applies at the end of an interval:
       - discard the value of IntervalCount(n)
       - the value of IntervalCount(i) becomes that
         of IntervalCount(i+1) for  1 <= i < n
       - the value of IntervalCount(1) becomes that
         of CurrentCount."
   ::= { bRadiusProxyServerAcctEntry 1 }

bRadiusProxyAcctServerIndex  OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
       "A number uniquely identifying each RADIUS
        Proxy Accounting server with which  client
        communicates."
   ::= { bRadiusProxyServerAcctEntry 2 }

bRadiusProxyAcctServerInetAddressType  OBJECT-TYPE
   SYNTAX      InetAddressType
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The type of address format used for the
       bRadiusProxyAcctServerInetAddress object."
   ::= { bRadiusProxyServerAcctEntry 3 }

bRadiusProxyAcctServerInetAddress  OBJECT-TYPE
   SYNTAX      InetAddress
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
     "The IP address of the RADIUS Accounting proxy
      server referred to in this table entry, using
      the version-neutral IP address format."
   ::= { bRadiusProxyServerAcctEntry 4 }

bRadiusProxyAcctIntervalDuration  OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "Duration of statistics accumulation interval in minutes."
   ::= { bRadiusProxyServerAcctEntry 5 }

bRadiusProxyAcctRequestRcvd  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of Accounting-Request message(s)
        received."
   ::= { bRadiusProxyServerAcctEntry 6 }

bRadiusProxyAcctRequestSent  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of Accounting-Request message(s) sent."
   ::= { bRadiusProxyServerAcctEntry 7 }

bRadiusProxyAcctStartRequestRcvd  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of Accounting-Request Start message(s)
        received."
   ::= { bRadiusProxyServerAcctEntry 8 }

bRadiusProxyAcctStopRequestRcvd  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of Accounting-Request Stop 
        message(s) received."
   ::= { bRadiusProxyServerAcctEntry 9 }

bRadiusProxyAcctInterimUpdateRcvd   OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of Accounting-Request Interim-Update
        message(s) received."
   ::= { bRadiusProxyServerAcctEntry 10 }

bRadiusProxyAcctStartRequestSent  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of Accounting-Request Start message(s)
        sent."
   ::= { bRadiusProxyServerAcctEntry 11 }

bRadiusProxyAcctStopRequestSent  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of Accounting-Request Stop 
        message(s) sent."
   ::= { bRadiusProxyServerAcctEntry 12 }

bRadiusProxyAcctInterimUpdateSent  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of Accounting-Request Interim-Update 
        message(s) sent."
   ::= { bRadiusProxyServerAcctEntry 13 }

bRadiusProxyAcctResponseRcvd  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of Accounting-Response message(s)
        received."
   ::= { bRadiusProxyServerAcctEntry 14 }

bRadiusProxyAcctResponseSent  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of Accounting-Response message(s)
         sent."
   ::= { bRadiusProxyServerAcctEntry 15 }



-- RADIUS client CoA Table

bRadiusClientCoATable  OBJECT-TYPE
   SYNTAX      SEQUENCE OF BRadiusClientCoAEntry
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "A list of CoA RADIUS client information."
   ::= { bRadiusMIBObjects 3 }

bRadiusClientCoAEntry  OBJECT-TYPE
   SYNTAX      BRadiusClientCoAEntry
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "A logical row in the bRadiusClientCoATable."
   INDEX {
      bRadiusCOAStatsInterval,
      bRadiusCoAClientIndex
   }
   ::= { bRadiusClientCoATable 1}

BRadiusClientCoAEntry ::= SEQUENCE {
    bRadiusCOAStatsInterval                                   Integer32,
    bRadiusCoAClientIndex                                     Integer32,
    bRadiusCoAClientInetAddressType                           InetAddressType,
    bRadiusCoAClientInetAddress                               InetAddress,
    bRadiusCoAIntervalDuration                                Integer32,
    bRadiusCoAAckSent                                         Unsigned32,
    bRadiusCoANackSent                                        Unsigned32,
    bRadiusCoARequestReceived                                 Unsigned32,
    bRadiusCoARequestDropped                                  Unsigned32,
    bRadiusCoAReqDropDueToDupReq                              Unsigned32,
    bRadiusCoAReqDropDueToInvalidTime                         Unsigned32,
    bRadiusCoAReqDropDueToBadAuthenticator                    Unsigned32,
    bRadiusCoANackDueToInvalidReq                             Unsigned32,
    bRadiusCoANackDueToExceedMaxOutstanding                   Unsigned32,
    bRadiusDisconnectRequestReceived                          Unsigned32,
    bRadiusDisconnectAckSent                                  Unsigned32,
    bRadiusDisconnectNackSent                                 Unsigned32,
    bRadiusDisconnectRequestDropped                           Unsigned32,
    bRadiusDisconnectReqDropDueToDupReq                       Unsigned32,
    bRadiusDisconnectReqDropDueToInvalidTime                  Unsigned32,
    bRadiusDisconnectReqDropDueToBadAuthenticator             Unsigned32,
    bRadiusDisconnectNackDueToInvalidReq                      Unsigned32,
    bRadiusDisconnectNackDueToExceedMaxOutstanding            Unsigned32,
    bRadiusCoALatencyMin                                      Unsigned32,
    bRadiusCoALatencyMax                                      Unsigned32,
    bRadiusCoALatencyAvg                                      Unsigned32,
    bRadiusCoALatencyLast                                     Unsigned32,
    bRadiusCoADMLatencyMin                                    Unsigned32,
    bRadiusCoADMLatencyMax                                    Unsigned32,
    bRadiusCoADMLatencyAvg                                    Unsigned32,
    bRadiusCoADMLatencyLast                                   Unsigned32,
    bRadiusCoAAAAGroupName                                    DisplayString
}
bRadiusCOAStatsInterval  OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "The interval during which the measurements were accumulated.
       The interval index one indicates the latest interval for which statistics
       accumulation was completed. Older the statistics, greater the
       interval index value.
       In a system supporting a history of n intervals with IntervalCount(1) and
       IntervalCount(n), the most and least recent intervals respectively, the following
       applies at the end of an interval:
       - discard the value of IntervalCount(n)
       - the value of IntervalCount(i) becomes that
         of IntervalCount(i+1) for  1 <= i < n
       - the value of IntervalCount(1) becomes that
         of CurrentCount."
   ::= { bRadiusClientCoAEntry 1 }

bRadiusCoAClientIndex  OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
       "A number uniquely identifying each RADIUS
        CoA client with which this server
        communicates."
   ::= { bRadiusClientCoAEntry 2 }

bRadiusCoAClientInetAddressType  OBJECT-TYPE
   SYNTAX      InetAddressType
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The type of address format used for the
       bRadiusCoAClientInetAddress object."
   ::= { bRadiusClientCoAEntry 3 }

bRadiusCoAClientInetAddress  OBJECT-TYPE
   SYNTAX      InetAddress
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION 
     "The IP address of the RADIUS CoA
      server referred to in this table entry, using
      the version-neutral IP address format."
   ::= { bRadiusClientCoAEntry 4 }

bRadiusCoAIntervalDuration  OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "Duration of statistics accumulation interval in minutes."
   ::= { bRadiusClientCoAEntry 5 }

bRadiusCoAAckSent  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of CoA-Ack message(s) sent."
   ::= { bRadiusClientCoAEntry 6 }

bRadiusCoANackSent  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of CoA-Nack message(s) sent."
   ::= { bRadiusClientCoAEntry 7 }

bRadiusCoARequestReceived  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of CoA-Request message(s) received."
   ::= { bRadiusClientCoAEntry 8 }

bRadiusCoARequestDropped  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of CoA-Request message(s) dropped."
   ::= { bRadiusClientCoAEntry 9 }

bRadiusCoAReqDropDueToDupReq  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of duplicate CoA-Request message(s) dropped."
   ::= { bRadiusClientCoAEntry 10 }

bRadiusCoAReqDropDueToInvalidTime  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of dropped CoA-Request message(s)
        due to invalid timestamp in the message."
   ::= { bRadiusClientCoAEntry 11 }

bRadiusCoAReqDropDueToBadAuthenticator  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of dropped CoA-Request message(s) from an invalid client."
   ::= { bRadiusClientCoAEntry 12 }

bRadiusCoANackDueToInvalidReq  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of CoA-Nack message(s) sent due to invalid request."
   ::= { bRadiusClientCoAEntry 13 }

bRadiusCoANackDueToExceedMaxOutstanding  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of CoA-Nack message(s)
        sent due to outstanding requests exceeding the maximum value."
   ::= { bRadiusClientCoAEntry 14 }


bRadiusDisconnectRequestReceived  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of Disconnect-Request message(s) received."
   ::= { bRadiusClientCoAEntry 15 }

bRadiusDisconnectAckSent  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of Disconnect-Ack message(s) sent."
   ::= { bRadiusClientCoAEntry 16 }

bRadiusDisconnectNackSent  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of Disconnect-Nack message(s) sent."
   ::= { bRadiusClientCoAEntry 17 }


bRadiusDisconnectRequestDropped  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of Disconnect-Request message(s) dropped."
   ::= { bRadiusClientCoAEntry 18 }

bRadiusDisconnectReqDropDueToDupReq  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of duplicate Disconnect-Request message(s) dropped."
   ::= { bRadiusClientCoAEntry 19 }

bRadiusDisconnectReqDropDueToInvalidTime  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of dropped Disconnect-Request message(s)
        due to invalid timestamp in the message."
   ::= { bRadiusClientCoAEntry 20 }

bRadiusDisconnectReqDropDueToBadAuthenticator  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of dropped Disconnect-Request message(s) from an invalid client."
   ::= { bRadiusClientCoAEntry 21 }

bRadiusDisconnectNackDueToInvalidReq  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of Disconnect-Nack message(s) sent due to invalid request."
   ::= { bRadiusClientCoAEntry 22 }

bRadiusDisconnectNackDueToExceedMaxOutstanding  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the total number of Disconnect-Nack message(s)
        sent due to outstanding requests exceeding the maximum value."
   ::= { bRadiusClientCoAEntry 23 }

bRadiusCoALatencyMin  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The measure of the minimum time interval, between all CoA-Request
       message(s) received from the RADIUS server and their corresponding
       CoA-Ack/Nack message(s) sent by the RADIUS client.
       The value is in in microseconds."
   ::= { bRadiusClientCoAEntry 24 }

bRadiusCoALatencyMax  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The measure of the maximum time interval, between all CoA-Request
       message(s) received from the RADIUS server and their corresponding
       CoA-Ack/Nack message(s) sent by the RADIUS client.
       The value is in in microseconds."
   ::= { bRadiusClientCoAEntry 25 }

bRadiusCoALatencyAvg  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The measure of the average time interval, between all CoA-Request
       message(s) received from the RADIUS server and their corresponding
       CoA-Ack/Nack message(s) sent by the RADIUS client.
       The value is in in microseconds."
   ::= { bRadiusClientCoAEntry 26 }

bRadiusCoALatencyLast  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION 
      "The measure of the time interval, between the most recent CoA-Request
       message received from the RADIUS server and its corresponding CoA-Ack/Nack
       message received by the RADIUS client. 
       The value is in in microseconds."
   ::= { bRadiusClientCoAEntry 27 }

bRadiusCoADMLatencyMin  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The measure of the minimum time interval, between all Disconnect-Request
       message(s) received from the RADIUS server and their corresponding 
       Disconnect-Ack/Nack message(s) sent by the RADIUS client.
       The value is in in microseconds."
   ::= { bRadiusClientCoAEntry 28 }

bRadiusCoADMLatencyMax  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The measure of the maximum time interval, between all Disconnect-Request
       message(s) received from the RADIUS server and their corresponding
       Disconnect-Ack/Nack message(s) sent by the RADIUS client.
       The value is in in microseconds."
   ::= { bRadiusClientCoAEntry 29 }

bRadiusCoADMLatencyAvg  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The measure of the average time interval, between all Disconnect-Request
       message(s) received from the RADIUS server and their corresponding
       Disconnect-Ack/Nack message(s) sent by the RADIUS client.
       The value is in in microseconds."
   ::= { bRadiusClientCoAEntry 30 }

bRadiusCoADMLatencyLast  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The measure of the time interval, between the most recent Disconnect-Request
       message received from the RADIUS server and its corresponding Disconnect-Ack/Nack
       message received by the RADIUS client.
       The value is in in microseconds."
   ::= { bRadiusClientCoAEntry 31 } 

bRadiusCoAAAAGroupName  OBJECT-TYPE
   SYNTAX      DisplayString
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION 
      "AAA server group to which this RADIUS server belongs."
   ::= { bRadiusClientCoAEntry 32 }

-- AAA group Authentication Table

bAAAGroupAuthTable  OBJECT-TYPE
   SYNTAX      SEQUENCE OF BAAAGroupAuthEntry
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "A list of Authentication AAA group information."
   ::= { bRadiusMIBObjects 4 }

bAAAGroupAuthEntry  OBJECT-TYPE
   SYNTAX      BAAAGroupAuthEntry
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "A logical row in the bAAAGroupAuthTable."
   INDEX {
      bAAAGroupAuthStatsInterval,
      bAAAGroupAuthIndex
   }
   ::= { bAAAGroupAuthTable 1}

BAAAGroupAuthEntry ::= SEQUENCE {
    bAAAGroupAuthStatsInterval                     Integer32,
    bAAAGroupAuthIndex                             Integer32,
    bAAAGroupAuthName                              DisplayString,
    bAAAGroupAuthIntervalDuration                  Integer32,
    bAAAGroupMaximumOutstandingAuthReqs            Unsigned32,
    bAAAGroupPeakOutstandingAuthReqsReached        Unsigned32,
    bAAAGroupAuthReqsDropped                       Unsigned32,
    bAAAGroupOutstandingAuthReqsHighThreshold      Unsigned32,
    bAAAGroupOutstandingAuthReqsLowThreshold       Unsigned32,
    bAAAGroupAuthCurrentOutstanding                Unsigned32 
}

bAAAGroupAuthStatsInterval  OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "The interval during which the measurements were accumulated.
       The interval index one indicates the latest interval for which statistics
       accumulation was completed. Older the statistics, greater the
       interval index value.
       In a system supporting a history of n intervals with IntervalCount(1) and
       IntervalCount(n), the most and least recent intervals respectively, the following
       applies at the end of an interval:
       - discard the value of IntervalCount(n)
       - the value of IntervalCount(i) becomes that
         of IntervalCount(i+1) for  1 <= i < n
       - the value of IntervalCount(1) becomes that
         of CurrentCount."
   ::= { bAAAGroupAuthEntry 1 }

bAAAGroupAuthIndex  OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
       "A number uniquely identifying each RADIUS
        Authentication server group "
   ::= { bAAAGroupAuthEntry 2 }

bAAAGroupAuthName  OBJECT-TYPE
   SYNTAX      DisplayString
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "AAA group Authentication name"
   ::= { bAAAGroupAuthEntry 3 }

bAAAGroupAuthIntervalDuration  OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "Duration of statistics accumulation interval in minutes."
   ::= { bAAAGroupAuthEntry 4 }

bAAAGroupMaximumOutstandingAuthReqs  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "Maximum number of outstanding Access-Request message(s) configured for this group."
   ::= { bAAAGroupAuthEntry 5 } 

bAAAGroupPeakOutstandingAuthReqsReached  OBJECT-TYPE
   SYNTAX      Unsigned32 
   MAX-ACCESS  read-only
   STATUS      current 
   DESCRIPTION 
       "The count of the peak number of outstanding Access-Request message(s)
        reached during the measurement interval."
   ::= { bAAAGroupAuthEntry 6 }

bAAAGroupAuthReqsDropped  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the Access-Rrequest message(s) at group level
       which could not be sent to any server and
       were dropped as the overflow queue was exhausted."
   ::= { bAAAGroupAuthEntry 7 }

bAAAGroupOutstandingAuthReqsHighThreshold  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
        "The high threshold for outstanding Access-Request message(s) in this
        AAA group. If a bAAAGroupOutstandingAuthReqsLow event has
        been generated (or no bAAAGroupOutstandingAuthReqsHigh was
        generated previously) for this AAA group, and the value for
        outstanding Access-Request message(s) has exceeded the value of
        bAAAGroupOutstandingAuthReqsHighThreshold, then a
        bAAAGroupOutstandingAuthReqsHigh event will be generated.  No more
        bAAAGroupOutstandingAuthReqsHigh events will be generated for this
        AAA group during this execution of the AAA group client until the
        value for outstanding Access-Request message(s) becomes equal to or less
        than the value of bAAAGroupOutstandingAuthReqsLowThreshold."
   ::= { bAAAGroupAuthEntry 8 }

bAAAGroupOutstandingAuthReqsLowThreshold  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
        "The low threshold for outstanding Access-Request message(s) in this
        AAA group. If the value for outstanding Access-Request message(s) in
        this group becomes equal to or less than this value and the current
        condition for bAAAGroupOutstandingAuthReqsHigh is raised, then a
        bAAAGroupOutstandingAuthReqsLow event will be generated. No more
        bAAAGroupOutstandingAuthReqsLow events will be generated for this
        AAA group during this execution of the AAA group client until the
        value for outstanding Access-Request message(s) has exceeded the value of
        bAAAGroupOutstandingAuthReqsLowThreshold."
   ::= { bAAAGroupAuthEntry 9 }

bAAAGroupAuthCurrentOutstanding  OBJECT-TYPE 
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION 
       "The current number of outstanding authentication requests." 
   ::= { bAAAGroupAuthEntry 10  }

-- AAA group Accounting Table

bAAAGroupAcctTable  OBJECT-TYPE
   SYNTAX      SEQUENCE OF BAAAGroupAcctEntry
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "A list of AAA group Accounting information."
   ::= { bRadiusMIBObjects 5 }

bAAAGroupAcctEntry  OBJECT-TYPE
   SYNTAX      BAAAGroupAcctEntry
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "A logical row in the bAAAGroupAcctTable."
   INDEX {
      bAAAGroupAcctStatsInterval,
      bAAAGroupAcctIndex
   }
   ::= { bAAAGroupAcctTable 1}

BAAAGroupAcctEntry ::= SEQUENCE {
    bAAAGroupAcctStatsInterval                     Integer32,
    bAAAGroupAcctIndex                             Integer32,
    bAAAGroupAcctName                              DisplayString,
    bAAAGroupAcctIntervalDuration                  Integer32,
    bAAAGroupMaximumOutstandingAcctReqs            Unsigned32,
    bAAAGroupPeakOutstandingAcctReqsReached        Unsigned32,
    bAAAGroupAcctReqsDropped                       Unsigned32,
    bAAAGroupOutstandingAcctReqsHighThreshold      Unsigned32,
    bAAAGroupOutstandingAcctReqsLowThreshold       Unsigned32,
    bAAAGroupAcctCurrentOutstanding                Unsigned32
}

bAAAGroupAcctStatsInterval  OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "The interval during which the measurements were accumulated.
       The interval index one indicates the latest interval for which statistics
       accumulation was completed. Older the statistics, greater the
       interval index value.
       In a system supporting a history of n intervals with IntervalCount(1) and
       IntervalCount(n), the most and least recent intervals respectively, the following
       applies at the end of an interval:
       - discard the value of IntervalCount(n)
       - the value of IntervalCount(i) becomes that
         of IntervalCount(i+1) for  1 <= i < n
       - the value of IntervalCount(1) becomes that
         of CurrentCount."
   ::= { bAAAGroupAcctEntry 1 }

bAAAGroupAcctIndex  OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
       "A number uniquely identifying each RADIUS
        Accounting server group."
   ::= { bAAAGroupAcctEntry 2 }

bAAAGroupAcctName  OBJECT-TYPE
   SYNTAX      DisplayString
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "AAA group Accounting name."
   ::= { bAAAGroupAcctEntry 3 }

bAAAGroupAcctIntervalDuration  OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "Duration of statistics accumulation interval in minutes."
   ::= { bAAAGroupAcctEntry 4 }

bAAAGroupMaximumOutstandingAcctReqs  OBJECT-TYPE
   SYNTAX      Unsigned32 
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "Maximum number of outstanding Accounting-Request message(s) configured
        for this group."
   ::= { bAAAGroupAcctEntry 5 }

bAAAGroupPeakOutstandingAcctReqsReached  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The count of the peak number of outstanding Accounting-Request message(s)
        reached during the measurement interval."
   ::= { bAAAGroupAcctEntry 6 }


bAAAGroupAcctReqsDropped  OBJECT-TYPE 
   SYNTAX      Unsigned32 
   MAX-ACCESS  read-only
   STATUS      current 
   DESCRIPTION 
       "The count of the Accounting-Request message(s) at group level
       which could not be sent to any server and 
       were dropped as overflow queue was exhausted."
   ::= { bAAAGroupAcctEntry 7 }


bAAAGroupOutstandingAcctReqsHighThreshold  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION 
        "The high threshold for outstanding Accounting-Request message(s) in this
        AAA group. If a bAAAGroupOutstandingAcctReqsLow event had
        been generated (or no bAAAGroupOutstandingAcctReqsHigh event was
        generated previously) for this AAA group, and the value for
        outstanding Accounting-Request has exceeded the value of
        bAAAGroupOutstandingAcctReqsHighThreshold, then a
        bAAAGroupOutstandingAcctReqsHigh event will be generated. No more
        bAAAGroupOutstandingAcctReqsHigh events will be generated for this
        AAA group during this execution of the AAA group client until the
        value for outstanding Accounting-Requests becomes equal to or less
        than the value of bAAAGroupOutstandingAcctReqsLowThreshold."
   ::= { bAAAGroupAcctEntry 8 }

bAAAGroupOutstandingAcctReqsLowThreshold  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION 
        "The low threshold for outstanding Accounting-Request message(s) in this
        AAA group. If the value for outstanding Accounting-Request message(s) in
        this group becomes equal to or less than this value and the current
        condition for bAAAGroupOutstandingAcctReqsHigh is raised, then a
        bAAAGroupOutstandingAcctReqsLow event will be generated. No more
        bAAAGroupOutstandingAcctReqsLow events will be generated for this
        AAA group during this execution of the AAA group client until the
        value for outstanding Accounting-Requests has exceeded the value of
        bAAAGroupOutstandingAcctReqsLowThreshold."
   ::= { bAAAGroupAcctEntry 9 }

bAAAGroupAcctCurrentOutstanding  OBJECT-TYPE 
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION 
            "The current number of outstanding accounting requests." 
   ::= { bAAAGroupAcctEntry 10  }

-- AAA group CoA Table

bAAAGroupCoATable  OBJECT-TYPE
   SYNTAX      SEQUENCE OF BAAAGroupCoAEntry
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "A list of AAA group CoA information."
   ::= { bRadiusMIBObjects 6 }

bAAAGroupCoAEntry  OBJECT-TYPE
   SYNTAX      BAAAGroupCoAEntry
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "A logical row in the bAAAGroupCoATable."
   INDEX {
      bAAAGroupCoAStatsInterval,
      bAAAGroupCoAIndex
   }
   ::= { bAAAGroupCoATable 1}
   
BAAAGroupCoAEntry ::= SEQUENCE {
    bAAAGroupCoAStatsInterval                          Integer32,
    bAAAGroupCoAIndex                                  Integer32,
    bAAAGroupCoAName                                   DisplayString,
    bAAAGroupCoAIntervalDuration                       Integer32,
    bAAAGroupCoANumOfClients                           Unsigned32,
    bAAAGroupCoAReqsDropDueToInvalidClient             Unsigned32,
    bAAAGroupDisconnectReqsDropDueToInvalidClient      Unsigned32,
    bAAAGroupMaximumOutstandingCoAReqs                 Unsigned32,
    bAAAGroupPeakOutstandingCoAReqs                    Unsigned32,
    bAAAGroupOutstandingCoAReqsHighThreshold           Unsigned32,
    bAAAGroupOutstandingCoAReqsLowThreshold            Unsigned32,
    bAAAGroupCoaCurrentOutstanding                     Unsigned32
}

bAAAGroupCoAStatsInterval  OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "The interval during which the measurements were accumulated.
       The interval index one indicates the latest interval for which statistics
       accumulation was completed. Older the statistics, greater the
       interval index value.
       In a system supporting a history of n intervals with IntervalCount(1) and
       IntervalCount(n) the most and least recent intervals respectively, the following
       applies at the end of an interval:
       - discard the value of IntervalCount(n)
       - the value of IntervalCount(i) becomes that
         of IntervalCount(i+1) for  1 <= i < n
       - the value of IntervalCount(1) becomes that
         of CurrentCount,"
   ::= { bAAAGroupCoAEntry 1 }

bAAAGroupCoAIndex  OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
       "A number uniquely identifying each
        COA Group."
   ::= { bAAAGroupCoAEntry 2 }

bAAAGroupCoAName  OBJECT-TYPE
   SYNTAX      DisplayString 
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "AAA group CoA name."
   ::= { bAAAGroupCoAEntry 3 }

bAAAGroupCoAIntervalDuration  OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "Duration of statistics accumulation interval in minutes."
   ::= { bAAAGroupCoAEntry 4 }

bAAAGroupCoANumOfClients  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
        "Number of clients which have sent CoA."
   ::= { bAAAGroupCoAEntry 5 } 

bAAAGroupCoAReqsDropDueToInvalidClient  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "Number Of CoA-Request message(s) dropped from an invalid client."
   ::= { bAAAGroupCoAEntry 6 }

bAAAGroupDisconnectReqsDropDueToInvalidClient  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "Number Of Disconnect-Request message(s) dropped from an invalid client."
   ::= { bAAAGroupCoAEntry 7 }

bAAAGroupMaximumOutstandingCoAReqs  OBJECT-TYPE
   SYNTAX      Unsigned32 
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "Maximum number of outstanding CoA-Request or Disconnect-Request message(s)
        configured for this group. Any requests after this value will be dropped."
   ::= { bAAAGroupCoAEntry 8 }

bAAAGroupPeakOutstandingCoAReqs  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "Current number of outstanding CoA or Disconnect Request message(s)
        in this group."
   ::= { bAAAGroupCoAEntry 9 }

bAAAGroupOutstandingCoAReqsHighThreshold  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
        "The high threshold for outstanding CoA or Disconnect Request message(s) in this
        AAA group. If a bAAAGroupOutstandingCoAReqsLow event has been generated
       (or no bAAAGroupOutstandingCoAReqsHigh was generated previously) for
        this AAA group, and the value for outstanding CoA or Disconnect
        Request message(s) has exceeded the value of
        bAAAGroupOutstandingCoAReqsHighThreshold, then a
        bAAAGroupOutstandingCoAReqsHigh event will be generated. No more
        bAAAGroupOutstandingCoAReqsHigh events will be generated for this
        AAA group during this execution of the AAA group client until the value
        for outstanding CoA or Disconnect Request message(s) becomes equal to or
        less than the value of bAAAGroupOutstandingCoAReqsLowThreshold."
   ::= { bAAAGroupCoAEntry 10 }

bAAAGroupOutstandingCoAReqsLowThreshold  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
        "The low threshold for outstanding CoA or Disconnect Request message(s) in this
        AAA group. If the value for outstanding CoA or Disconnect Request message(s) in
        this group becomes equal to or less than this value and the current
        condition for bAAAGroupOutstandingCoAReqsHigh is raised, then a
        bAAAGroupOutstandingCoAReqsLow event will be generated. No more
        bAAAGroupOutstandingCoAReqsLow events will be generated for this
        AAA group during this execution of the AAA group client until the
        value for outstanding CoA or Disconnect Request message(s) has exceeded the
        value of bAAAGroupOutstandingCoAReqsLowThreshold."
   ::= { bAAAGroupCoAEntry 11 }

bAAAGroupCoaCurrentOutstanding  OBJECT-TYPE 
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION 
        "The current number of outstanding coa requests." 
   ::= { bAAAGroupCoAEntry 12  }

-- RADIUS latency Table

bRadiusLatencyAuthTable  OBJECT-TYPE
   SYNTAX      SEQUENCE OF BRadiusLatencyAuthEntry
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "Latency information list for authentication RADIUS server instance."
   ::= { bRadiusMIBObjects 7 }

bRadiusLatencyAuthEntry  OBJECT-TYPE
   SYNTAX      BRadiusLatencyAuthEntry
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "A logical row in the bRadiusLatencyAuthTable."
   INDEX {
      bRadiusAuthLatencyStatsInterval,
      bRadiusAuthInstanceIndex
   }
   ::= { bRadiusLatencyAuthTable 1}

BRadiusLatencyAuthEntry ::= SEQUENCE {
    bRadiusAuthLatencyStatsInterval                 Integer32,
    bRadiusAuthInstanceIndex                        BenuRadiusInstance,
    bRadiusAuthLatencyIntervalDuration              Integer32,
    bRadiusAuthRequestTotalPackets                  Unsigned32,
    bRadiusAuthRequestMaximumProcessingTime         Unsigned32,
    bRadiusAuthRequestMinimumProcessingTime         Unsigned32,
    bRadiusAuthRequestAverageProcessingTime         Unsigned32,
    bRadiusAuthRequestProcessingTimeGreaterthan1MS  Unsigned32,
    bRadiusAuthResponseTotalPackets                 Unsigned32,
    bRadiusAuthResponseMaximumProcessingTime        Unsigned32,
    bRadiusAuthResponseMinimumProcessingTime        Unsigned32,
    bRadiusAuthResponseAverageProcessingTime        Unsigned32,
    bRadiusAuthResponseProcessingTimeGreaterthan1MS Unsigned32
}

bRadiusAuthLatencyStatsInterval  OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
      "The interval during which the measurements were accumulated.
       The interval index one indicates the latest interval for which statistics
       accumulation was completed. Older the statistics data, greater the
       interval index value.
       In a system supporting a history of n intervals with IntervalCount(1) and
       IntervalCount(n), the most and least recent intervals respectively, the following
       applies at the end of an interval:
       - discard the value of IntervalCount(n)
       - the value of IntervalCount(i) becomes that
         of IntervalCount(i+1) for 1 <= i < n
       - the value of IntervalCount(1) becomes that
         of CurrentCount."
   ::= { bRadiusLatencyAuthEntry 1 }

bRadiusAuthInstanceIndex  OBJECT-TYPE
   SYNTAX      BenuRadiusInstance
   MAX-ACCESS  not-accessible
   STATUS      current
   DESCRIPTION
       "A number uniquely identifying each RADIUS Authentication instance"
   ::= { bRadiusLatencyAuthEntry 2 }

bRadiusAuthLatencyIntervalDuration  OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "Duration of statistics accumulation interval in minutes."
   ::= { bRadiusLatencyAuthEntry 3 }

bRadiusAuthRequestTotalPackets  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The total number of Access-Request packets for this instance"
   ::= { bRadiusLatencyAuthEntry 4 }

bRadiusAuthRequestMaximumProcessingTime  OBJECT-TYPE
   SYNTAX      Unsigned32
   UNITS       "microseconds"
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The Maximum Processing Time for an Access-Request packet"
   ::= { bRadiusLatencyAuthEntry 5 }

bRadiusAuthRequestMinimumProcessingTime  OBJECT-TYPE
   SYNTAX      Unsigned32
   UNITS       "microseconds"
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The Minimum Processing Time for an Access-Request packet"
   ::= { bRadiusLatencyAuthEntry 6 }

bRadiusAuthRequestAverageProcessingTime  OBJECT-TYPE
   SYNTAX      Unsigned32
   UNITS       "microseconds"
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The Average Processing Time for an Access-Request packet"
   ::= { bRadiusLatencyAuthEntry 7 }

bRadiusAuthRequestProcessingTimeGreaterthan1MS  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The number of Access-Request packets for which processing time is 
       greater than 1ms."
   ::= { bRadiusLatencyAuthEntry 8 }

bRadiusAuthResponseTotalPackets  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The total number of packets received in response to Access-Request packets."
   ::= { bRadiusLatencyAuthEntry 9 }

bRadiusAuthResponseMaximumProcessingTime  OBJECT-TYPE
   SYNTAX      Unsigned32
   UNITS       "microseconds"
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The maximum processing time of a packet received in response to an
      Access-Request."
   ::= { bRadiusLatencyAuthEntry 10 }

bRadiusAuthResponseMinimumProcessingTime  OBJECT-TYPE
   SYNTAX      Unsigned32
   UNITS       "microseconds"
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The minimum processing time of a packet received in response to an
      Access-Request."
   ::= { bRadiusLatencyAuthEntry 11 }

bRadiusAuthResponseAverageProcessingTime  OBJECT-TYPE
   SYNTAX      Unsigned32
   UNITS       "microseconds"
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
      "The average processing time of a packet received in response to an
      Access-Request."
   ::= { bRadiusLatencyAuthEntry 12 }

bRadiusAuthResponseProcessingTimeGreaterthan1MS  OBJECT-TYPE
   SYNTAX      Unsigned32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION
       "The number of response packets for which processing time is greater
       than 1ms."
   ::= { bRadiusLatencyAuthEntry 13 }


-- Radius server notifications

bRadiusServerIPAddrType  OBJECT-TYPE
    SYNTAX          InetAddressType
    MAX-ACCESS      accessible-for-notify
    STATUS          current
    DESCRIPTION
        "IP Address type (IPv4 or IPv6) of the RADIUS server."
    ::= { bRadiusNotifObjects 1 }

bRadiusServerIPAddress  OBJECT-TYPE
    SYNTAX          InetAddress
    MAX-ACCESS      accessible-for-notify
    STATUS          current
    DESCRIPTION
        "IP Address of the RADIUS server."
    ::= { bRadiusNotifObjects 2 }

bAAAGroupOutstandingAuthReqsLow    NOTIFICATION-TYPE
    OBJECTS         {
                        bAAAGroupAuthName,
                        bAAAGroupMaximumOutstandingAuthReqs,
                        bAAAGroupOutstandingAuthReqsLowThreshold
                    }
    STATUS          current
    DESCRIPTION
        "This notification signifies that the number of outstanding Access-
        Request message(s) for a particular AAA group is cleared, meaning that it
        has fallen below the value of bAAAGroupOutstandingAuthReqsLowThreshold
        for that AAA group."
    ::= { bRadiusNotifications 1 }

bAAAGroupOutstandingAuthReqsHigh NOTIFICATION-TYPE
    OBJECTS         {
                        bAAAGroupAuthName,
                        bAAAGroupMaximumOutstandingAuthReqs,
                        bAAAGroupOutstandingAuthReqsHighThreshold
                    }
    STATUS          current
    DESCRIPTION
        "This notification signifies that the number of outstanding
        Access-Request message(s) for a particular AAA group has risen above the
        value of bAAAGroupOutstandingAuthReqsHighThreshold for that
        AAA group."
    ::= { bRadiusNotifications 2 }

bAAAGroupOutstandingAcctReqsLow    NOTIFICATION-TYPE
    OBJECTS         {
                        bAAAGroupAcctName,
                        bAAAGroupMaximumOutstandingAcctReqs,
                        bAAAGroupOutstandingAcctReqsLowThreshold
                    }
    STATUS          current
    DESCRIPTION
        "This notification signifies that the number of outstanding Accounting-
        Request message(s) for a particular AAA group is cleared, meaning that it
        has fallen below the value of bAAAGroupOutstandingAcctReqsLowThreshold
        for that AAA group."
    ::= { bRadiusNotifications 3 }

bAAAGroupOutstandingAcctReqsHigh NOTIFICATION-TYPE
    OBJECTS         {
                        bAAAGroupAcctName,
                        bAAAGroupMaximumOutstandingAcctReqs,
                        bAAAGroupOutstandingAcctReqsHighThreshold
                    }
    STATUS          current
    DESCRIPTION
        "This notification signifies that the number of outstanding
        Accounting-Request message(s) for a particular AAA group has risen above the
        value of bAAAGroupOutstandingAcctReqsHighThreshold for that
        AAA group."
    ::= { bRadiusNotifications 4 }

bAAAGroupOutstandingCoAReqsLow    NOTIFICATION-TYPE
    OBJECTS         {
                        bAAAGroupCoAName,
                        bAAAGroupMaximumOutstandingCoAReqs,
                        bAAAGroupOutstandingCoAReqsLowThreshold
                    }
    STATUS          current
    DESCRIPTION
        "This notification signifies that the number of outstanding Accounting-
        Request message(s) for a particular AAA group is cleared, meaning that it has fallen
        below the value of bAAAGroupOutstandingCoAReqsLowThreshold for that
        AAA group."
    ::= { bRadiusNotifications  5 }

bAAAGroupOutstandingCoAReqsHigh NOTIFICATION-TYPE
    OBJECTS         {
                        bAAAGroupCoAName,
                        bAAAGroupMaximumOutstandingCoAReqs,
                        bAAAGroupOutstandingCoAReqsHighThreshold
                    }
    STATUS          current
    DESCRIPTION
        "This notification signifies that the number of outstanding
        Accounting-Requests for a particular AAA group has risen above the
        value of bAAAGroupOutstandingCoAReqsHighThreshold for that
        AAA group."
    ::= { bRadiusNotifications 6 }

bRadiusAuthServerMarkedDead NOTIFICATION-TYPE
    OBJECTS         {
                        bRadiusServerIPAddrType,
                        bRadiusServerIPAddress
                    }
    STATUS          current
    DESCRIPTION
        "This notification signifies that an authentication RADIUS server has been marked dead."
    ::= { bRadiusNotifications 7 }

bRadiusAuthServerMarkedAlive NOTIFICATION-TYPE
    OBJECTS         {
                        bRadiusServerIPAddrType,
                        bRadiusServerIPAddress
                    }
    STATUS          current
    DESCRIPTION
        "This notification signifies that an authentication RADIUS server has become alive."
    ::= { bRadiusNotifications 8 }

bRadiusAccountingServerMarkedDead NOTIFICATION-TYPE
    OBJECTS         {
                        bRadiusServerIPAddrType,
                        bRadiusServerIPAddress
                    }
    STATUS          current
    DESCRIPTION
        "This notification signifies that an accounting RADIUS server has been marked dead" 
    ::= { bRadiusNotifications 9 }

bRadiusAccountingServerMarkedAlive NOTIFICATION-TYPE
    OBJECTS         {
                        bRadiusServerIPAddrType,
                        bRadiusServerIPAddress
                    }
    STATUS          current
    DESCRIPTION
        "This notification signifies that an accounting RADIUS server has become alive" 
    ::= { bRadiusNotifications 10 }

bRadiusProxyAuthTPSLowReached  NOTIFICATION-TYPE
    OBJECTS         {
                        bRadiusProxyAuthTPS
                    }
    STATUS          current
    DESCRIPTION
        "This notification signifies that the total number of Radius Proxy transactions
        for the particular interval has fallen below the value bRadiusProxyAuthTPSLow."
    ::= { bRadiusNotifications 11 }

bRadiusProxyAuthTPSHighReached  NOTIFICATION-TYPE
    OBJECTS         {
                        bRadiusProxyAuthTPS
                    }
    STATUS          current
    DESCRIPTION
        "This notification signifies that the total number of Radius Proxy transactions
        for the particular interval has risen above the value bRadiusProxyAuthTPSHigh."
    ::= { bRadiusNotifications 12 }

END