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
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
|
-- =================================================================
-- Copyright (C) 2017 by HUAWEI TECHNOLOGIES. All rights reserved.
--
-- Description:HUAWEI-BRAS-RADIUS-MIB
-- Reference:
-- Version: V2.28
-- History:
-- v1.1
-- modified by huangjun 2009-12-08
-- =================================================================
HUAWEI-BRAS-RADIUS-MIB DEFINITIONS ::= BEGIN
IMPORTS
hwBRASMib
FROM HUAWEI-MIB
IpAddress, Unsigned32, Integer32, OBJECT-TYPE, MODULE-IDENTITY,NOTIFICATION-TYPE
FROM SNMPv2-SMI
MODULE-COMPLIANCE,OBJECT-GROUP,NOTIFICATION-GROUP
FROM SNMPv2-CONF
EnabledStatus
FROM P-BRIDGE-MIB
DisplayString, RowStatus, TruthValue
FROM SNMPv2-TC
Ipv6Address
FROM IPV6-TC;
hwBRASRadius MODULE-IDENTITY
LAST-UPDATED "201705281613Z"
ORGANIZATION
"Huawei Technologies Co.,Ltd."
CONTACT-INFO
"Huawei Industrial Base
Bantian, Longgang
Shenzhen 518129
People's Republic of China
Website: http://www.huawei.com
Email: support@huawei.com "
DESCRIPTION
"Add hwRadiusServerSourceVlanifEachServer."
REVISION "201705281613Z"
DESCRIPTION
"Add hwRadiusGlobalSettingTable, hwRadiusGlobalSettingEntry, hwRadiusGlobalServerSourceIp, hwRadiusGlobalServerSourceIpv6, hwRadiusGlobalAttrNasIp, hwRadiusGlobalAttrNasIpv6."
REVISION "201611011613Z"
DESCRIPTION
"Add hwRadiusStateInRequest."
REVISION "201608311613Z"
DESCRIPTION
"Add hwRadiusServerSourceLoopBackEachServer."
REVISION "201607111613Z"
DESCRIPTION
"Add hwRadiusServerSourceIPAddressEachServer, hwRadiusServerSourceIPv6AddressEachServer."
REVISION "201604221613Z"
DESCRIPTION
"Modified the packetcount."
REVISION "201604131933Z"
DESCRIPTION
"Modified hwRadiusAuthorServerRowStatus for read-create."
REVISION "201603151933Z"
DESCRIPTION
"Added trap hwRadiusDiscardCachePacket, hwRadiusCachePacketThresholdAlarm, hwRadiusCachePacketThresholdResume."
REVISION "201506281933Z"
DESCRIPTION
"The MIB contains objects of module Radius."
REVISION "201412171457Z"
DESCRIPTION
"The MIB contains objects of module Radius."
REVISION "201410081620Z"
DESCRIPTION
"The MIB contains objects of module Radius."
REVISION "201402281734Z"
DESCRIPTION
"The MIB contains objects of module Radius."
REVISION "201309102040Z"
DESCRIPTION
"The MIB contains objects of module Radius."
REVISION "201308082040Z"
DESCRIPTION
"The MIB contains objects of module Radius."
REVISION "201307051545Z"
DESCRIPTION
"The MIB contains objects of module Radius."
REVISION "201302181634Z"
DESCRIPTION
"The MIB contains objects of module Radius."
REVISION "201307271419Z"
DESCRIPTION "V1.0-V1.1."
REVISION "201402150000Z" -- February 15, 2014 at 13:34 GMT
DESCRIPTION
"Revision 2.17"
REVISION "201412311457Z"
DESCRIPTION
"The MIB contains objects of module Radius."
::= { hwBRASMib 15}
--
-- Node definitions
--
hwRadiusGroupObject OBJECT IDENTIFIER ::= { hwBRASRadius 1 }
hwRadiusGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwRadiusGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Radius Group Table.
"
::= { hwRadiusGroupObject 1 }
hwRadiusGroupEntry OBJECT-TYPE
SYNTAX HwRadiusGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Radius Group Entry.
Radius group table is used to configure the attribute of radius group including some public information of radius group.
Radius group table is uniquely identified by Radius group name which is the key word entered when radius group table is created and cannot be changed.
"
INDEX { hwRadiusGroupName }
::= { hwRadiusGroupTable 1 }
HwRadiusGroupEntry ::=
SEQUENCE {
hwRadiusGroupName
OCTET STRING,
hwRadiusServerKey
OCTET STRING,
hwRadiusServerProtType
INTEGER,
hwRadiusServerRetransmit
Integer32,
hwRadiusServerTimeout
Integer32,
hwRadiusServerAttrTran
TruthValue,
hwRadiusPacketUnit
INTEGER,
hwRadiusDomainInclude
INTEGER,
hwRadiusClassASCar
TruthValue,
hwRadiusAlgorithm
INTEGER,
hwRadiusServerNasPortFmt
OCTET STRING,
hwRadiusGroupRowStatus
RowStatus,
hwRadiusServerSourceInterface
OCTET STRING,
hwRadiusServerNasIpAddress
IpAddress ,
hwRadiusServerCallingStationId
OCTET STRING,
hwRadiusServerCallingStationIdDelimiter
OCTET STRING,
hwRadiusAttributeNoExistPolicy
INTEGER,
hwRadiusServerKeyType
INTEGER,
hwRadiusServerNasPortIdOption82
INTEGER,
hwRadiusServerAcctStopPacket
Integer32,
hwRadiusMasterServerDeadTime
Integer32,
hwRadiusServerDetectServer
Integer32,
hwRadiusServerNasPortIdFmt
INTEGER,
hwRadiusServerTestuserName
OCTET STRING,
hwRadiusServerTestuserPassword
OCTET STRING,
hwRadiusServerNasIpv6Address
Ipv6Address,
hwRadiusStateInRequest
Integer32
}
hwRadiusGroupName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radius Group name.
"
::= { hwRadiusGroupEntry 1 }
hwRadiusServerKey OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..188))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius Server secret.
"
::= { hwRadiusGroupEntry 2 }
hwRadiusServerProtType OBJECT-TYPE
SYNTAX INTEGER
{
radius(1),
radiusPlus10(2),
radiusPlus11(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius protocol.
"
::= { hwRadiusGroupEntry 3 }
hwRadiusServerRetransmit OBJECT-TYPE
SYNTAX Integer32 (1..5)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Max number of radius packet retransmission.
"
::= { hwRadiusGroupEntry 4 }
hwRadiusServerTimeout OBJECT-TYPE
SYNTAX Integer32 (3..25)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius packet retransmission interval.
"
::= { hwRadiusGroupEntry 5 }
hwRadiusServerAttrTran OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Whether the function of Radius server attribute translation is enabled.
1 indicates that it is enabled.
2 indicates that it is disabled.
"
DEFVAL { false }
::= { hwRadiusGroupEntry 6 }
hwRadiusPacketUnit OBJECT-TYPE
SYNTAX INTEGER
{
byte(1),
kbyte(2),
mbyte(3),
gbyte(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The packet unit of Radius server which is active when the Radius protocol is standard.
"
DEFVAL { byte }
::= { hwRadiusGroupEntry 7 }
hwRadiusDomainInclude OBJECT-TYPE
SYNTAX INTEGER
{
includingDomain(1),
notIncludingDomain(2),
original(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Whether the domain of Radius server is included.
"
DEFVAL { includingdomain }
::= { hwRadiusGroupEntry 8 }
hwRadiusClassASCar OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RADIUS server regards CLASS as CAR parameter.
"
DEFVAL { false }
::= { hwRadiusGroupEntry 9 }
hwRadiusAlgorithm OBJECT-TYPE
SYNTAX INTEGER
{
masterbackup(1),
shareloading(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Packet sending algorithm of Radius server.
"
DEFVAL { masterbackup }
::= { hwRadiusGroupEntry 10 }
hwRadiusServerNasPortFmt OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius Nas port format string.
"
::= { hwRadiusGroupEntry 11 }
hwRadiusGroupRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Row admin status.
Support add and delete."
::= { hwRadiusGroupEntry 12 }
hwRadiusServerSourceInterface OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..47))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius server source interface name.
"
::= { hwRadiusGroupEntry 13 }
hwRadiusServerNasIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius server NAS IP address"
::= { hwRadiusGroupEntry 14 }
hwRadiusServerCallingStationId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..47))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius server Calling-station-id"
::= { hwRadiusGroupEntry 15 }
hwRadiusServerCallingStationIdDelimiter OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..47))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius server Calling-station-id-Delimiter"
::= { hwRadiusGroupEntry 16 }
hwRadiusAttributeNoExistPolicy OBJECT-TYPE
SYNTAX INTEGER
{
online(1),
offline(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius-attribute qos-profile no-exist-policy."
::= { hwRadiusGroupEntry 17 }
hwRadiusServerKeyType OBJECT-TYPE
SYNTAX INTEGER
{
simple(0),
cipher(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius Server secret type."
::= { hwRadiusGroupEntry 18 }
hwRadiusServerNasPortIdOption82 OBJECT-TYPE
SYNTAX INTEGER
{
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Whether of not using option82 when building NAS-PORT-ID."
::= { hwRadiusGroupEntry 19 }
hwRadiusServerAcctStopPacket OBJECT-TYPE
SYNTAX Integer32 (1..300)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius stop account packet max num."
::= { hwRadiusGroupEntry 20 }
hwRadiusMasterServerDeadTime OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius master server dead time, default 5 minutes."
::= { hwRadiusGroupEntry 21 }
hwRadiusServerDetectServer OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius server detect interval , the default value is 60."
::= { hwRadiusGroupEntry 22 }
hwRadiusServerNasPortIdFmt OBJECT-TYPE
SYNTAX INTEGER
{
new(0),
old(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The format of NAS-PORT-ID."
::= { hwRadiusGroupEntry 23 }
hwRadiusServerTestuserName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius server test user name."
::= { hwRadiusGroupEntry 24 }
hwRadiusServerTestuserPassword OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius server test user password."
::= { hwRadiusGroupEntry 25 }
hwRadiusServerNasIpv6Address OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius server nas ipv6 address."
::= { hwRadiusGroupEntry 26 }
hwRadiusStateInRequest OBJECT-TYPE
SYNTAX Integer32 (1..2)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Take state in authentication request."
::= { hwRadiusGroupEntry 27 }
hwRadiusServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwRadiusServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Radius server group extend table.
"
::= { hwRadiusGroupObject 2 }
hwRadiusServerEntry OBJECT-TYPE
SYNTAX HwRadiusServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { hwRadiusGroupName ,hwRadiusServerIndex,hwRadiusServerType}
::= { hwRadiusServerTable 1 }
HwRadiusServerEntry ::=
SEQUENCE {
hwRadiusServerIndex
Integer32,
hwRadiusServerType
INTEGER,
hwRadiusServerVRF
OCTET STRING,
hwRadiusServerIP
IpAddress,
hwRadiusServerPort
Integer32,
hwRadiusServerWeight
Integer32,
hwRadiusServerSecretKey
OCTET STRING,
hwRadiusServerRowStatus
RowStatus,
hwRadiusServerPktSendNumber
Integer32,
hwRadiusServerPktSendInterval
Integer32,
hwRadiusServerSourceInterfaceEachServer
OCTET STRING,
hwRadiusServerResponses
Unsigned32,
hwRadiusServerSecretKeyType
INTEGER,
hwRadiusServerDeadCount
Integer32,
hwRadiusServerDeadTime
Integer32,
hwRadiusServerDeadInterval
Integer32,
hwRadiusServerIPv6Address
Ipv6Address,
hwRadiusServerSourceIPAddressEachServer
IpAddress,
hwRadiusServerSourceIPv6AddressEachServer
Ipv6Address,
hwRadiusServerSourceLoopBackEachServer
Unsigned32,
hwRadiusServerSourceVlanifEachServer
Unsigned32
}
hwRadiusServerIndex OBJECT-TYPE
SYNTAX Integer32 (0..512)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IP address index of authentication and accounting server, read-only.
"
::= { hwRadiusServerEntry 1 }
hwRadiusServerType OBJECT-TYPE
SYNTAX INTEGER
{
auth(1),
acct(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of authentication and accounting server, read-only.
"
::= { hwRadiusServerEntry 2 }
hwRadiusServerVRF OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (1..31))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"VPN-instance of authentication and accounting server.
"
::= { hwRadiusServerEntry 3 }
hwRadiusServerIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IP address of authentication and accounting server which is unnecessary to configure.
"
::= { hwRadiusServerEntry 4}
hwRadiusServerPort OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Port number of authentication and accounting server. Use the default value, if it is not configured.
"
::= { hwRadiusServerEntry 5 }
hwRadiusServerWeight OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Weight of authentication and accounting server, which is unnecessary to configure.
"
::= { hwRadiusServerEntry 6 }
hwRadiusServerSecretKey OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..188))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Secret of authentication and accounting server.
"
::= { hwRadiusServerEntry 7 }
hwRadiusServerRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Row admin status,either Add or Del.
Support add and delete.
"
::= { hwRadiusServerEntry 8 }
hwRadiusServerPktSendNumber OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of packets that can be sent
"
::= { hwRadiusServerEntry 9 }
hwRadiusServerPktSendInterval OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The interval for counting the number of sent packets(in sec)
"
::= { hwRadiusServerEntry 10 }
hwRadiusServerSourceInterfaceEachServer OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..1023))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius server source interface name
"
::= { hwRadiusServerEntry 11 }
hwRadiusServerResponses OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of RADIUS packets received from this server.
"
::= { hwRadiusServerEntry 12 }
hwRadiusServerSecretKeyType OBJECT-TYPE
SYNTAX INTEGER
{
simple(0),
cipher(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Secret key type of authentication and accounting server.
"
::= { hwRadiusServerEntry 13 }
hwRadiusServerDeadCount OBJECT-TYPE
SYNTAX Integer32 (3..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radius server dead count.
"
::= { hwRadiusServerEntry 14 }
hwRadiusServerDeadTime OBJECT-TYPE
SYNTAX Integer32 (0..60)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radius server dead time.
"
::= { hwRadiusServerEntry 15 }
hwRadiusServerDeadInterval OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radius server dead interval.
"
::= { hwRadiusServerEntry 16 }
hwRadiusServerIPv6Address OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius server ipv6 address."
::= { hwRadiusServerEntry 17 }
hwRadiusServerSourceIPAddressEachServer OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source IP address of each server. "
::= { hwRadiusServerEntry 18}
hwRadiusServerSourceIPv6AddressEachServer OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source IPv6 address of each server."
::= { hwRadiusServerEntry 19 }
hwRadiusServerSourceLoopBackEachServer OBJECT-TYPE
SYNTAX Unsigned32 (0..1023 | 4294967295)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source loopback of each server."
::= { hwRadiusServerEntry 20 }
hwRadiusServerSourceVlanifEachServer OBJECT-TYPE
SYNTAX Unsigned32 (0..4094)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source vlanif of each server."
::= { hwRadiusServerEntry 21 }
hwRadiusClientTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwRadiusClientEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Configuration table of server client end.
"
::= { hwRadiusGroupObject 3 }
hwRadiusClientEntry OBJECT-TYPE
SYNTAX HwRadiusClientEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { hwRadiusClientIP, hwRadiusClientVrf }
::= { hwRadiusClientTable 1}
HwRadiusClientEntry ::=
SEQUENCE {
hwRadiusClientIP
IpAddress,
hwRadiusClientVrf
OCTET STRING,
hwRadiusClientKey
OCTET STRING,
hwRadiusClientGroupName
OCTET STRING,
hwRadiusClientRowStatus
RowStatus,
hwRadiusClientKeyType
INTEGER
}
hwRadiusClientIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Client ip address.
"
::= { hwRadiusClientEntry 1 }
hwRadiusClientVrf OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (1..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Client vpn instance.
"
::= { hwRadiusClientEntry 2 }
hwRadiusClientKey OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..188))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Client share key.
"
::= { hwRadiusClientEntry 3 }
hwRadiusClientGroupName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Client group name.
"
::= { hwRadiusClientEntry 4 }
hwRadiusClientRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Client row status.
"
::= { hwRadiusClientEntry 5 }
hwRadiusClientKeyType OBJECT-TYPE
SYNTAX INTEGER
{
simple(0),
cipher(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Client share key type.
"
::= { hwRadiusClientEntry 6 }
hwRadiusAuthorServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwRadiusAuthorServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Configuration table of AUTHOR server.
"
::= { hwRadiusGroupObject 4 }
hwRadiusAuthorServerEntry OBJECT-TYPE
SYNTAX HwRadiusAuthorServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { hwRadiusAuthorServerIP, hwRadiusAuthorServerVrf}
::= { hwRadiusAuthorServerTable 1 }
HwRadiusAuthorServerEntry ::=
SEQUENCE {
hwRadiusAuthorServerIP
IpAddress,
hwRadiusAuthorServerVrf
OCTET STRING,
hwRadiusAuthorServerKey
OCTET STRING,
hwRadiusAuthorServerGroupName
OCTET STRING,
hwRadiusAuthorServerRowStatus
RowStatus,
hwRadiusAuthorServerKeyType
INTEGER
}
hwRadiusAuthorServerIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Authorization Server IP address.
"
::= { hwRadiusAuthorServerEntry 1 }
hwRadiusAuthorServerVrf OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (1..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Authorization Server VPN instance.
"
::= { hwRadiusAuthorServerEntry 2 }
hwRadiusAuthorServerKey OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..188))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Authorization Server share key.
"
::= { hwRadiusAuthorServerEntry 3 }
hwRadiusAuthorServerGroupName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Authorization Server group name.
"
::= { hwRadiusAuthorServerEntry 4 }
hwRadiusAuthorServerRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Authorization Server row status.
"
::= { hwRadiusAuthorServerEntry 5 }
hwRadiusAuthorServerKeyType OBJECT-TYPE
SYNTAX INTEGER
{
simple(0),
cipher(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Authorization Server share key type.
"
::= { hwRadiusAuthorServerEntry 6 }
hwRadiusSetting OBJECT IDENTIFIER ::= { hwRadiusGroupObject 5 }
hwRadiusSettingEntry OBJECT IDENTIFIER ::= { hwRadiusSetting 1 }
hwEnableSourcePortsExtended OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"To enable one or more ports to be used as the source ports for sending out RADIUS requests,default is 2.
"
::= { hwRadiusSettingEntry 1 }
hwSourcePortsExtendedStartPort OBJECT-TYPE
SYNTAX Integer32 (0|5000..55535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The start port to be used as the source ports for sending out RADIUS requests.
"
::= { hwRadiusSettingEntry 2 }
hwSourcePortsExtendedPortNum OBJECT-TYPE
SYNTAX Integer32 (0|1..32)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of port to be used as the source ports for sending out RADIUS requests.
"
::= { hwRadiusSettingEntry 3 }
hwRadiusResetStatAll OBJECT-TYPE
SYNTAX INTEGER
{
reset(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Reset statistics information of radius sending and receiving packets.
"
::= { hwRadiusSettingEntry 4 }
hwResetRadiusAttrCount OBJECT-TYPE
SYNTAX INTEGER
{
reset(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Reset RADIUS attribute count.
"
::= { hwRadiusSettingEntry 5 }
hwRadiusTotalDeadCount OBJECT-TYPE
SYNTAX Integer32 (3..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius server total dead count.
"
::= { hwRadiusSettingEntry 6 }
hwRadiusTotalDeadTime OBJECT-TYPE
SYNTAX Integer32 (0..60)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius server total dead time.
"
::= { hwRadiusSettingEntry 7 }
hwRadiusTotalDeadInterval OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius server total dead interval.
"
::= { hwRadiusSettingEntry 8 }
hwRadiusStatAuthenIpv4Table OBJECT-TYPE
SYNTAX SEQUENCE OF HwRadiusStatAuthenIpv4Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Authentication packet statistics information for IPv4 radius server.
"
::= { hwRadiusGroupObject 6 }
hwRadiusStatAuthenIpv4Entry OBJECT-TYPE
SYNTAX HwRadiusStatAuthenIpv4Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { hwRadiusStatAuthenIpv4ServerIP, hwRadiusStatAuthenIpv4Vrf }
::= { hwRadiusStatAuthenIpv4Table 1 }
HwRadiusStatAuthenIpv4Entry ::=
SEQUENCE {
hwRadiusStatAuthenIpv4ServerIP
IpAddress,
hwRadiusStatAuthenIpv4Vrf
OCTET STRING,
hwRadiusStatAuthenIpv4Requests
Unsigned32,
hwRadiusStatAuthenIpv4Accepts
Unsigned32,
hwRadiusStatAuthenIpv4Rejects
Unsigned32,
hwRadiusStatAuthenIpv4Retransmissions
Unsigned32,
hwRadiusStatAuthenIpv4Challenges
Unsigned32,
hwRadiusStatAuthenIpv4MalformedResponses
Unsigned32,
hwRadiusStatAuthenIpv4BadAuthenticators
Unsigned32,
hwRadiusStatAuthenIpv4PendingRequests
Unsigned32,
hwRadiusStatAuthenIpv4Timeouts
Unsigned32,
hwRadiusStatAuthenIpv4UnknownTypes
Unsigned32,
hwRadiusStatAuthenIpv4DroppedPackets
Unsigned32,
hwRadiusStatAuthenIpv4SpeedLimitBlock
Unsigned32,
hwRadiusStatAuthenIpv4PendingLimitBlock
Unsigned32,
hwRadiusStatAuthenIpv4ServerDownBlock
Unsigned32,
hwRadiusStatAuthenIpv4NoSourceIPBlock
Unsigned32,
hwRadiusStatAuthenIpv4ServerNotReply
Unsigned32
}
hwRadiusStatAuthenIpv4ServerIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radius server IP.
"
::= { hwRadiusStatAuthenIpv4Entry 1 }
hwRadiusStatAuthenIpv4Vrf OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (1..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"VPN-instance name.
"
::= { hwRadiusStatAuthenIpv4Entry 2 }
hwRadiusStatAuthenIpv4Requests OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Request packets.
"
::= { hwRadiusStatAuthenIpv4Entry 3 }
hwRadiusStatAuthenIpv4Accepts OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Accept packets.
"
::= { hwRadiusStatAuthenIpv4Entry 4 }
hwRadiusStatAuthenIpv4Rejects OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reject packets.
"
::= { hwRadiusStatAuthenIpv4Entry 5 }
hwRadiusStatAuthenIpv4Retransmissions OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Retransmission packets.
"
::= { hwRadiusStatAuthenIpv4Entry 6 }
hwRadiusStatAuthenIpv4Challenges OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Challenge packets.
"
::= { hwRadiusStatAuthenIpv4Entry 7 }
hwRadiusStatAuthenIpv4MalformedResponses OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Malformed response packets.
"
::= { hwRadiusStatAuthenIpv4Entry 8 }
hwRadiusStatAuthenIpv4BadAuthenticators OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Bad packets.
"
::= { hwRadiusStatAuthenIpv4Entry 9 }
hwRadiusStatAuthenIpv4PendingRequests OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Pending packets.
"
::= { hwRadiusStatAuthenIpv4Entry 10 }
hwRadiusStatAuthenIpv4Timeouts OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Timeout packets.
"
::= { hwRadiusStatAuthenIpv4Entry 11 }
hwRadiusStatAuthenIpv4UnknownTypes OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unknown packets.
"
::= { hwRadiusStatAuthenIpv4Entry 12 }
hwRadiusStatAuthenIpv4DroppedPackets OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Dropped packets.
"
::= { hwRadiusStatAuthenIpv4Entry 13 }
hwRadiusStatAuthenIpv4SpeedLimitBlock OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Speed-limit block packets.
"
::= { hwRadiusStatAuthenIpv4Entry 14 }
hwRadiusStatAuthenIpv4PendingLimitBlock OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Pending-limit block packets.
"
::= { hwRadiusStatAuthenIpv4Entry 15 }
hwRadiusStatAuthenIpv4ServerDownBlock OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Server down block packets.
"
::= { hwRadiusStatAuthenIpv4Entry 16 }
hwRadiusStatAuthenIpv4NoSourceIPBlock OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"No source IP block packets.
"
::= { hwRadiusStatAuthenIpv4Entry 17 }
hwRadiusStatAuthenIpv4ServerNotReply OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Server not reply packets.
"
::= { hwRadiusStatAuthenIpv4Entry 18 }
hwRadiusStatAcctIpv4Table OBJECT-TYPE
SYNTAX SEQUENCE OF HwRadiusStatAcctIpv4Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Account packet statistics information for IPv4 radius server.
"
::= { hwRadiusGroupObject 7 }
hwRadiusStatAcctIpv4Entry OBJECT-TYPE
SYNTAX HwRadiusStatAcctIpv4Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { hwRadiusStatAcctIpv4ServerIP, hwRadiusStatAcctIpv4Vrf }
::= { hwRadiusStatAcctIpv4Table 1 }
HwRadiusStatAcctIpv4Entry ::=
SEQUENCE {
hwRadiusStatAcctIpv4ServerIP
IpAddress,
hwRadiusStatAcctIpv4Vrf
OCTET STRING,
hwRadiusStatAcctIpv4Requests
Unsigned32,
hwRadiusStatAcctIpv4Responses
Unsigned32,
hwRadiusStatAcctIpv4Retransmissions
Unsigned32,
hwRadiusStatAcctIpv4MalformedResponses
Unsigned32,
hwRadiusStatAcctIpv4BadAuthenticators
Unsigned32,
hwRadiusStatAcctIpv4PendingRequests
Unsigned32,
hwRadiusStatAcctIpv4Timeouts
Unsigned32,
hwRadiusStatAcctIpv4UnknownTypes
Unsigned32,
hwRadiusStatAcctIpv4DroppedPackets
Unsigned32,
hwRadiusStatAcctIpv4SpeedLimitBlock
Unsigned32,
hwRadiusStatAcctIpv4PendingLimitBlock
Unsigned32,
hwRadiusStatAcctIpv4ServerDownBlock
Unsigned32,
hwRadiusStatAcctIpv4NoSourceIPBlock
Unsigned32,
hwRadiusStatAcctIpv4ServerNotReply
Unsigned32
}
hwRadiusStatAcctIpv4ServerIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radius server IP.
"
::= { hwRadiusStatAcctIpv4Entry 1 }
hwRadiusStatAcctIpv4Vrf OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (1..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"VPN-instance name.
"
::= { hwRadiusStatAcctIpv4Entry 2 }
hwRadiusStatAcctIpv4Requests OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Request packets.
"
::= { hwRadiusStatAcctIpv4Entry 3 }
hwRadiusStatAcctIpv4Responses OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Response packets.
"
::= { hwRadiusStatAcctIpv4Entry 4 }
hwRadiusStatAcctIpv4Retransmissions OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Retransmission packets.
"
::= { hwRadiusStatAcctIpv4Entry 5 }
hwRadiusStatAcctIpv4MalformedResponses OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Malformed response packets.
"
::= { hwRadiusStatAcctIpv4Entry 6 }
hwRadiusStatAcctIpv4BadAuthenticators OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Bad packets.
"
::= { hwRadiusStatAcctIpv4Entry 7 }
hwRadiusStatAcctIpv4PendingRequests OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Pending packets.
"
::= { hwRadiusStatAcctIpv4Entry 8 }
hwRadiusStatAcctIpv4Timeouts OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Timeout packets.
"
::= { hwRadiusStatAcctIpv4Entry 9 }
hwRadiusStatAcctIpv4UnknownTypes OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unknown packets.
"
::= { hwRadiusStatAcctIpv4Entry 10 }
hwRadiusStatAcctIpv4DroppedPackets OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Dropped packets.
"
::= { hwRadiusStatAcctIpv4Entry 11 }
hwRadiusStatAcctIpv4SpeedLimitBlock OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Speed-limit block packets.
"
::= { hwRadiusStatAcctIpv4Entry 12 }
hwRadiusStatAcctIpv4PendingLimitBlock OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Pending-limit block packets.
"
::= { hwRadiusStatAcctIpv4Entry 13 }
hwRadiusStatAcctIpv4ServerDownBlock OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Server down block packets.
"
::= { hwRadiusStatAcctIpv4Entry 14 }
hwRadiusStatAcctIpv4NoSourceIPBlock OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"No route block packets.
"
::= { hwRadiusStatAcctIpv4Entry 15 }
hwRadiusStatAcctIpv4ServerNotReply OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"No reply packets.
"
::= { hwRadiusStatAcctIpv4Entry 16 }
hwRadiusStatAuthorIpv4Table OBJECT-TYPE
SYNTAX SEQUENCE OF HwRadiusStatAuthorIpv4Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Authorization packet statistics information for IPv4 radius server.
"
::= { hwRadiusGroupObject 8 }
hwRadiusStatAuthorIpv4Entry OBJECT-TYPE
SYNTAX HwRadiusStatAuthorIpv4Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { hwRadiusStatAuthorIpv4ServerType, hwRadiusStatAuthorIpv4ServerIP, hwRadiusStatAuthorIpv4Vrf }
::= { hwRadiusStatAuthorIpv4Table 1 }
HwRadiusStatAuthorIpv4Entry ::=
SEQUENCE {
hwRadiusStatAuthorIpv4ServerType
Integer32,
hwRadiusStatAuthorIpv4ServerIP
IpAddress,
hwRadiusStatAuthorIpv4Vrf
OCTET STRING,
hwRadiusStatAuthorIpv4Requests
Unsigned32,
hwRadiusStatAuthorIpv4Accepts
Unsigned32,
hwRadiusStatAuthorIpv4Rejects
Unsigned32,
hwRadiusStatAuthorIpv4BadAuthenticators
Unsigned32,
hwRadiusStatAuthorIpv4Retransmissions
Unsigned32,
hwRadiusStatAuthorIpv4MalformedResponses
Unsigned32,
hwRadiusStatAuthorIpv4Timeouts
Unsigned32,
hwRadiusStatAuthorIpv4UnknownTypes
Unsigned32,
hwRadiusStatAuthorIpv4DroppedPackets
Unsigned32
}
hwRadiusStatAuthorIpv4ServerType OBJECT-TYPE
SYNTAX Integer32 (1|2)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radius server type.
"
::= { hwRadiusStatAuthorIpv4Entry 1 }
hwRadiusStatAuthorIpv4ServerIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radius server IP.
"
::= { hwRadiusStatAuthorIpv4Entry 2 }
hwRadiusStatAuthorIpv4Vrf OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (1..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"VPN-instance name.
"
::= { hwRadiusStatAuthorIpv4Entry 3 }
hwRadiusStatAuthorIpv4Requests OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Request packets.
"
::= { hwRadiusStatAuthorIpv4Entry 4 }
hwRadiusStatAuthorIpv4Accepts OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Accept packets.
"
::= { hwRadiusStatAuthorIpv4Entry 5 }
hwRadiusStatAuthorIpv4Rejects OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reject packets.
"
::= { hwRadiusStatAuthorIpv4Entry 6 }
hwRadiusStatAuthorIpv4BadAuthenticators OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Bad packets.
"
::= { hwRadiusStatAuthorIpv4Entry 7 }
hwRadiusStatAuthorIpv4Retransmissions OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Retransmission packets.
"
::= { hwRadiusStatAuthorIpv4Entry 8 }
hwRadiusStatAuthorIpv4MalformedResponses OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Malformed response packets.
"
::= { hwRadiusStatAuthorIpv4Entry 9 }
hwRadiusStatAuthorIpv4Timeouts OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Timeout packets.
"
::= { hwRadiusStatAuthorIpv4Entry 10 }
hwRadiusStatAuthorIpv4UnknownTypes OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unknown packets.
"
::= { hwRadiusStatAuthorIpv4Entry 11 }
hwRadiusStatAuthorIpv4DroppedPackets OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Dropped packets.
"
::= { hwRadiusStatAuthorIpv4Entry 12 }
hwRadiusStatAuthenIpv6Table OBJECT-TYPE
SYNTAX SEQUENCE OF HwRadiusStatAuthenIpv6Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Authentication packet statistics information for IPv4 radius server.
"
::= { hwRadiusGroupObject 9 }
hwRadiusStatAuthenIpv6Entry OBJECT-TYPE
SYNTAX HwRadiusStatAuthenIpv6Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { hwRadiusStatAuthenIpv6ServerIP}
::= { hwRadiusStatAuthenIpv6Table 1 }
HwRadiusStatAuthenIpv6Entry ::=
SEQUENCE {
hwRadiusStatAuthenIpv6ServerIP
Ipv6Address,
hwRadiusStatAuthenIpv6Requests
Unsigned32,
hwRadiusStatAuthenIpv6Accepts
Unsigned32,
hwRadiusStatAuthenIpv6Rejects
Unsigned32,
hwRadiusStatAuthenIpv6Retransmissions
Unsigned32,
hwRadiusStatAuthenIpv6Challenges
Unsigned32,
hwRadiusStatAuthenIpv6MalformedResponses
Unsigned32,
hwRadiusStatAuthenIpv6BadAuthenticators
Unsigned32,
hwRadiusStatAuthenIpv6PendingRequests
Unsigned32,
hwRadiusStatAuthenIpv6Timeouts
Unsigned32,
hwRadiusStatAuthenIpv6UnknownTypes
Unsigned32,
hwRadiusStatAuthenIpv6DroppedPackets
Unsigned32,
hwRadiusStatAuthenIpv6SpeedLimitBlock
Unsigned32,
hwRadiusStatAuthenIpv6PendingLimitBlock
Unsigned32,
hwRadiusStatAuthenIpv6ServerDownBlock
Unsigned32,
hwRadiusStatAuthenIpv6NoSourceIPBlock
Unsigned32,
hwRadiusStatAuthenIpv6ServerNotReply
Unsigned32
}
hwRadiusStatAuthenIpv6ServerIP OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radius server IP.
"
::= { hwRadiusStatAuthenIpv6Entry 1 }
hwRadiusStatAuthenIpv6Requests OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Request packets.
"
::= { hwRadiusStatAuthenIpv6Entry 3 }
hwRadiusStatAuthenIpv6Accepts OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Accept packets.
"
::= { hwRadiusStatAuthenIpv6Entry 4 }
hwRadiusStatAuthenIpv6Rejects OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reject packets.
"
::= { hwRadiusStatAuthenIpv6Entry 5 }
hwRadiusStatAuthenIpv6Retransmissions OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Retransmission packets.
"
::= { hwRadiusStatAuthenIpv6Entry 6 }
hwRadiusStatAuthenIpv6Challenges OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Challenge packets.
"
::= { hwRadiusStatAuthenIpv6Entry 7 }
hwRadiusStatAuthenIpv6MalformedResponses OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Malformed response packets.
"
::= { hwRadiusStatAuthenIpv6Entry 8 }
hwRadiusStatAuthenIpv6BadAuthenticators OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Bad packets.
"
::= { hwRadiusStatAuthenIpv6Entry 9 }
hwRadiusStatAuthenIpv6PendingRequests OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Pending packets.
"
::= { hwRadiusStatAuthenIpv6Entry 10 }
hwRadiusStatAuthenIpv6Timeouts OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Timeout packets.
"
::= { hwRadiusStatAuthenIpv6Entry 11 }
hwRadiusStatAuthenIpv6UnknownTypes OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unknown packets.
"
::= { hwRadiusStatAuthenIpv6Entry 12 }
hwRadiusStatAuthenIpv6DroppedPackets OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Dropped packets.
"
::= { hwRadiusStatAuthenIpv6Entry 13 }
hwRadiusStatAuthenIpv6SpeedLimitBlock OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Speed-limit block packets.
"
::= { hwRadiusStatAuthenIpv6Entry 14 }
hwRadiusStatAuthenIpv6PendingLimitBlock OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Pending-limit block packets.
"
::= { hwRadiusStatAuthenIpv6Entry 15 }
hwRadiusStatAuthenIpv6ServerDownBlock OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Server down block packets.
"
::= { hwRadiusStatAuthenIpv6Entry 16 }
hwRadiusStatAuthenIpv6NoSourceIPBlock OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"No route block packets.
"
::= { hwRadiusStatAuthenIpv6Entry 17 }
hwRadiusStatAuthenIpv6ServerNotReply OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"No reply packets.
"
::= { hwRadiusStatAuthenIpv6Entry 18 }
hwRadiusStatAcctIpv6Table OBJECT-TYPE
SYNTAX SEQUENCE OF HwRadiusStatAcctIpv6Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Account packet statistics information for IPv4 radius server.
"
::= { hwRadiusGroupObject 10 }
hwRadiusStatAcctIpv6Entry OBJECT-TYPE
SYNTAX HwRadiusStatAcctIpv6Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { hwRadiusStatAcctIpv6ServerIP }
::= { hwRadiusStatAcctIpv6Table 1 }
HwRadiusStatAcctIpv6Entry ::=
SEQUENCE {
hwRadiusStatAcctIpv6ServerIP
Ipv6Address,
hwRadiusStatAcctIpv6Requests
Unsigned32,
hwRadiusStatAcctIpv6Responses
Unsigned32,
hwRadiusStatAcctIpv6Retransmissions
Unsigned32,
hwRadiusStatAcctIpv6MalformedResponses
Unsigned32,
hwRadiusStatAcctIpv6BadAuthenticators
Unsigned32,
hwRadiusStatAcctIpv6PendingRequests
Unsigned32,
hwRadiusStatAcctIpv6Timeouts
Unsigned32,
hwRadiusStatAcctIpv6UnknownTypes
Unsigned32,
hwRadiusStatAcctIpv6DroppedPackets
Unsigned32,
hwRadiusStatAcctIpv6SpeedLimitBlock
Unsigned32,
hwRadiusStatAAcctIpv6PendingLimitBlock
Unsigned32,
hwRadiusStatAcctIpv6ServerDownBlock
Unsigned32,
hwRadiusStatAcctIpv6NoSourceIPBlock
Unsigned32,
hwRadiusStatAcctIpv6ServerNotReply
Unsigned32
}
hwRadiusStatAcctIpv6ServerIP OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Radius server IP.
"
::= { hwRadiusStatAcctIpv6Entry 1 }
hwRadiusStatAcctIpv6Requests OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Request packets.
"
::= { hwRadiusStatAcctIpv6Entry 3 }
hwRadiusStatAcctIpv6Responses OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Response packets.
"
::= { hwRadiusStatAcctIpv6Entry 4 }
hwRadiusStatAcctIpv6Retransmissions OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Retransmission packets.
"
::= { hwRadiusStatAcctIpv6Entry 5 }
hwRadiusStatAcctIpv6MalformedResponses OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Malformed response packets.
"
::= { hwRadiusStatAcctIpv6Entry 6 }
hwRadiusStatAcctIpv6BadAuthenticators OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Bad packets.
"
::= { hwRadiusStatAcctIpv6Entry 7 }
hwRadiusStatAcctIpv6PendingRequests OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Pending packets.
"
::= { hwRadiusStatAcctIpv6Entry 8 }
hwRadiusStatAcctIpv6Timeouts OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Timeout packets.
"
::= { hwRadiusStatAcctIpv6Entry 9 }
hwRadiusStatAcctIpv6UnknownTypes OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unknown packets.
"
::= { hwRadiusStatAcctIpv6Entry 10 }
hwRadiusStatAcctIpv6DroppedPackets OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Dropped packets.
"
::= { hwRadiusStatAcctIpv6Entry 11 }
hwRadiusStatAcctIpv6SpeedLimitBlock OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Speed-limit block packets.
"
::= { hwRadiusStatAcctIpv6Entry 12 }
hwRadiusStatAAcctIpv6PendingLimitBlock OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Pending-limit block packets.
"
::= { hwRadiusStatAcctIpv6Entry 13 }
hwRadiusStatAcctIpv6ServerDownBlock OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Server down block packets.
"
::= { hwRadiusStatAcctIpv6Entry 14 }
hwRadiusStatAcctIpv6NoSourceIPBlock OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"No route block packets.
"
::= { hwRadiusStatAcctIpv6Entry 15 }
hwRadiusStatAcctIpv6ServerNotReply OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"No reply packets.
"
::= { hwRadiusStatAcctIpv6Entry 16 }
hwRadiusAttrCountTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwRadiusAttrCountEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Radius attribute count table.
"
::= { hwRadiusGroupObject 11 }
hwRadiusAttrCountEntry OBJECT-TYPE
SYNTAX HwRadiusAttrCountEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { hwAttributeName }
::= { hwRadiusAttrCountTable 1 }
HwRadiusAttrCountEntry ::=
SEQUENCE {
hwAttributeName
DisplayString,
hwAuthRequestPacketNum
Integer32,
hwAuthAcceptPacketNum
Integer32,
hwAuthRejectPacketNum
Integer32,
hwAcctRequestPacketNum
Integer32,
hwAcctResponsePacketNum
Integer32,
hwCOARequestPacketNum
Integer32,
hwCOAAcknowledgePacketNum
Integer32,
hwDMRequestPacketNum
Integer32,
hwDMAcknowledgePacketNum
Integer32
}
hwAttributeName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The attribute name.
"
::= { hwRadiusAttrCountEntry 1 }
hwAuthRequestPacketNum OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of attribute in authentication request packet.
"
::= { hwRadiusAttrCountEntry 2 }
hwAuthAcceptPacketNum OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of attribute in authentication accept packet.
"
::= { hwRadiusAttrCountEntry 3 }
hwAuthRejectPacketNum OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of attribute in authentication reject packet.
"
::= { hwRadiusAttrCountEntry 4 }
hwAcctRequestPacketNum OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of attribute in accounting request packet.
"
::= { hwRadiusAttrCountEntry 5 }
hwAcctResponsePacketNum OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of attribute in accounting response packet.
"
::= { hwRadiusAttrCountEntry 6 }
hwCOARequestPacketNum OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of attribute in COA request packet.
"
::= { hwRadiusAttrCountEntry 7 }
hwCOAAcknowledgePacketNum OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of attribute in COA acknowledge packet.
"
::= { hwRadiusAttrCountEntry 8 }
hwDMRequestPacketNum OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of attribute in DM request packet.
"
::= { hwRadiusAttrCountEntry 9 }
hwDMAcknowledgePacketNum OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of attribute in DM acknowledge packet.
"
::= { hwRadiusAttrCountEntry 10 }
hwRadiusAttrApplyTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwRadiusAttrApplyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Radius attribute apply table.
"
::= { hwRadiusGroupObject 12 }
hwRadiusAttrApplyEntry OBJECT-TYPE
SYNTAX HwRadiusAttrApplyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { hwRadiusGroupName, hwRadiusAttrApplyAttribute, hwRadiusAttrApplyAction, hwRadiusAttrApplyActionParameter }
::= { hwRadiusAttrApplyTable 1 }
HwRadiusAttrApplyEntry ::=
SEQUENCE {
hwRadiusAttrApplyAttribute
Integer32,
hwRadiusAttrApplyAction
INTEGER,
hwRadiusAttrApplyActionParameter
INTEGER,
hwRadiusAttrApplyRowStatus
RowStatus
}
hwRadiusAttrApplyAttribute OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The ID of attribute, eg. VendorID+AttributeID.
"
::= { hwRadiusAttrApplyEntry 1 }
hwRadiusAttrApplyAction OBJECT-TYPE
SYNTAX INTEGER
{
match(1)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Detail action.
"
::= { hwRadiusAttrApplyEntry 2 }
hwRadiusAttrApplyActionParameter OBJECT-TYPE
SYNTAX INTEGER
{
pooltype(1)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The parameter of attribute apply action.
"
::= { hwRadiusAttrApplyEntry 3 }
hwRadiusAttrApplyRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Row admin status,either Add or Del.
Support add and delete.
"
::= { hwRadiusAttrApplyEntry 50 }
hwRadiusAttrCheckTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwRadiusAttrCheckEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Radius attribute check table.
"
::= { hwRadiusGroupObject 13 }
hwRadiusAttrCheckEntry OBJECT-TYPE
SYNTAX HwRadiusAttrCheckEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { hwRadiusGroupName, hwRadiusAttrCheckIndex }
::= { hwRadiusAttrCheckTable 1 }
HwRadiusAttrCheckEntry ::=
SEQUENCE {
hwRadiusAttrCheckIndex
Integer32,
hwRadiusAttrCheckName
OCTET STRING,
hwRadiusAttrCheckRowStatus
RowStatus
}
hwRadiusAttrCheckIndex OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of radius check attribute."
::= { hwRadiusAttrCheckEntry 1 }
hwRadiusAttrCheckName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Check attribute name."
::= { hwRadiusAttrCheckEntry 2 }
hwRadiusAttrCheckRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"RowStatus."
::={ hwRadiusAttrCheckEntry 3 }
hwRadiusAttrDisableTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwRadiusAttrDisableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Radius attribute disable table.
"
::= { hwRadiusGroupObject 14 }
hwRadiusAttrDisableEntry OBJECT-TYPE
SYNTAX HwRadiusAttrDisableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { hwRadiusGroupName, hwRadiusAttrDisableIndex }
::= { hwRadiusAttrDisableTable 1 }
HwRadiusAttrDisableEntry ::=
SEQUENCE {
hwRadiusAttrDisableIndex
Integer32,
hwRadiusAttrDisableName
OCTET STRING,
hwRadiusAttrDisableDirection
INTEGER,
hwRadiusAttrDisableRowStatus
RowStatus
}
hwRadiusAttrDisableIndex OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of radius disable attribute."
::= { hwRadiusAttrDisableEntry 1 }
hwRadiusAttrDisableName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Disable attribute name."
::= { hwRadiusAttrDisableEntry 2 }
hwRadiusAttrDisableDirection OBJECT-TYPE
SYNTAX INTEGER{send(1),receive(2),sendreceive(3)}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Disable direction."
::={ hwRadiusAttrDisableEntry 3 }
hwRadiusAttrDisableRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"RowStatus."
::={ hwRadiusAttrDisableEntry 4 }
hwRadiusAttrTranslateTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwRadiusAttrTranslateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Radius attribute apply table.
"
::= { hwRadiusGroupObject 15 }
hwRadiusAttrTranslateEntry OBJECT-TYPE
SYNTAX HwRadiusAttrTranslateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { hwRadiusGroupName, hwRadiusAttrTranslateIndex }
::= { hwRadiusAttrTranslateTable 1 }
HwRadiusAttrTranslateEntry ::=
SEQUENCE {
hwRadiusAttrTranslateIndex
Integer32,
hwRadiusAttrTranslateSrcDescription
OCTET STRING,
hwRadiusAttrTranslateDestDescription
OCTET STRING,
hwRadiusAttrTranslateDirection
INTEGER,
hwRadiusAttrTranslatePacketType
INTEGER,
hwRadiusAttrTranslateSrcVendorId
Unsigned32,
hwRadiusAttrTranslateSrcSubAttrId
Integer32,
hwRadiusAttrTranslateDstVendorId
Unsigned32,
hwRadiusAttrTranslateDstSubAttrId
Integer32,
hwRadiusAttrTranslateRowStatus
RowStatus
}
hwRadiusAttrTranslateIndex OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of radius translate attribute."
::= { hwRadiusAttrTranslateEntry 1 }
hwRadiusAttrTranslateSrcDescription OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Source translate attribute name."
::= { hwRadiusAttrTranslateEntry 2 }
hwRadiusAttrTranslateDestDescription OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Destination translate attribute name."
::= { hwRadiusAttrTranslateEntry 3 }
hwRadiusAttrTranslateDirection OBJECT-TYPE
SYNTAX INTEGER{invalid(0),send(1),receive(2),sendreceive(3)}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Translate direction."
::={ hwRadiusAttrTranslateEntry 4}
hwRadiusAttrTranslatePacketType OBJECT-TYPE
SYNTAX INTEGER
{
invalid(0),
authrequest(1),
authaccept(2),
authrequestauthaccept(3),
acctrequst(4),
authrequestacctrequst(5),
authacceptacctrequst(6),
authrequestauthacceptacctrequst(7),
acctresponse(8),
authrequestacctresponse(9),
authacceptacctresponse(10),
authrequestauthacceptacctresponse(11),
acctrequstacctresponse(12),
authrequestacctrequstacctresponse(13),
authacceptacctrequstacctresponse(14),
authrequestauthacceptacctrequstacctresponse(15)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Translate Packet type."
::={ hwRadiusAttrTranslateEntry 5 }
hwRadiusAttrTranslateSrcVendorId OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"radius attribute translate source vendor id."
::= { hwRadiusAttrTranslateEntry 6 }
hwRadiusAttrTranslateSrcSubAttrId OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"radius attribute translate source sub id."
::= { hwRadiusAttrTranslateEntry 7 }
hwRadiusAttrTranslateDstVendorId OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"radius attribute translate destination vendor id."
::= { hwRadiusAttrTranslateEntry 8 }
hwRadiusAttrTranslateDstSubAttrId OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"radius attribute translate destination sub id."
::= { hwRadiusAttrTranslateEntry 9 }
hwRadiusAttrTranslateRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"RowStatus."
::={ hwRadiusAttrTranslateEntry 10 }
hwRadiusAttrSetTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwRadiusAttrSetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Radius attribute apply table.
"
::= { hwRadiusGroupObject 16 }
hwRadiusAttrSetEntry OBJECT-TYPE
SYNTAX HwRadiusAttrSetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { hwRadiusGroupName, hwRadiusAttrSetIndex }
::= { hwRadiusAttrSetTable 1 }
HwRadiusAttrSetEntry ::=
SEQUENCE {
hwRadiusAttrSetIndex
Integer32,
hwRadiusAttrSetName
OCTET STRING,
hwRadiusAttrSetValue
OCTET STRING,
hwRadiusSetRowStatus
RowStatus
}
hwRadiusAttrSetIndex OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of radius set attribute."
::= { hwRadiusAttrSetEntry 1 }
hwRadiusAttrSetName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set attribute name."
::= { hwRadiusAttrSetEntry 2 }
hwRadiusAttrSetValue OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..253))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Set value."
::={ hwRadiusAttrSetEntry 3 }
hwRadiusSetRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"RowStatus."
::={ hwRadiusAttrSetEntry 4 }
hwRadiusAccountTest OBJECT IDENTIFIER ::= { hwRadiusGroupObject 17 }
hwRadiusAccountTestEntry OBJECT IDENTIFIER ::= { hwRadiusAccountTest 1 }
hwRadiusAccountTestResult OBJECT-TYPE
SYNTAX INTEGER
{
busy(0),
fail(1),
success(2),
wrongnameorpassword(3),
timeout(4),
servernotexist(5),
invalid(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The result of account test."
::= { hwRadiusAccountTestEntry 1 }
hwRadiusGlobalSettingTable OBJECT IDENTIFIER ::= { hwRadiusGroupObject 18 }
hwRadiusGlobalSettingEntry OBJECT IDENTIFIER ::= { hwRadiusGlobalSettingTable 1 }
hwRadiusGlobalServerSourceIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Global Source IP address. "
::= { hwRadiusGlobalSettingEntry 1}
hwRadiusGlobalServerSourceIpv6 OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Global Source IPv6 address."
::= { hwRadiusGlobalSettingEntry 2 }
hwRadiusGlobalAttrNasIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Global nas IP address of radius attribute. "
::= { hwRadiusGlobalSettingEntry 3 }
hwRadiusGlobalAttrNasIpv6 OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Global nas IPv6 address of radius attribute."
::= { hwRadiusGlobalSettingEntry 4 }
---Radius server up/down trap
hwRadiusMIBTrap OBJECT IDENTIFIER ::= { hwBRASRadius 2 }
hwRadiusTrapObject OBJECT IDENTIFIER ::= { hwRadiusMIBTrap 1 }
hwStateChangeServerIp OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..40))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"IP address of authentication or accounting server which state is changed.
"
::= { hwRadiusTrapObject 1 }
hwStateChangeServerVrf OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (1..31))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
" VPN-instance of authentication or accounting server which state is changed.
"
::= { hwRadiusTrapObject 2 }
hwStateChangeServerPort OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
" port of authentication or accounting server which state is changed.
"
::= { hwRadiusTrapObject 3 }
hwRadiusMemoryUsage OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
" The memory usage.
"
::= { hwRadiusTrapObject 4 }
hwRadiusThreshold OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
" The threshold.
"
::= { hwRadiusTrapObject 5 }
hwRadiusCachePackets OBJECT-TYPE
SYNTAX Integer32 (0..256000)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
" The number of cached packets.
"
::= { hwRadiusTrapObject 6 }
hwRadiusMaxCachePackets OBJECT-TYPE
SYNTAX Integer32 (0..256000)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
" The max cache packets limit.
"
::= { hwRadiusTrapObject 7 }
hwRadiusTrapsDefine OBJECT IDENTIFIER ::= { hwRadiusMIBTrap 2 }
hwRadiusServerTraps OBJECT IDENTIFIER ::= { hwRadiusTrapsDefine 1 }
hwRadiusAuthServerUp NOTIFICATION-TYPE
OBJECTS { hwStateChangeServerIp,hwStateChangeServerVrf,hwStateChangeServerPort }
STATUS current
DESCRIPTION
"
1 Notice/Trap name: Radius authentication server up
2 Notice/Trap generation cause: Radius authentication server up
3 Repair suggestions:
Check radius authentication server status .
"
::= { hwRadiusServerTraps 1 }
hwRadiusAuthServerDown NOTIFICATION-TYPE
OBJECTS { hwStateChangeServerIp,hwStateChangeServerVrf,hwStateChangeServerPort}
STATUS current
DESCRIPTION
"
1 Notice/Trap name: Radius authentication server down
2 Notice/Trap generation cause: Radius authentication server down
3 Repair suggestions:
Check radius authentication server status .
"
::= { hwRadiusServerTraps 2 }
hwRadiusAcctServerUp NOTIFICATION-TYPE
OBJECTS { hwStateChangeServerIp,hwStateChangeServerVrf,hwStateChangeServerPort }
STATUS current
DESCRIPTION
"
1 Notice/Trap name: Radius accounting server up
2 Notice/Trap generation cause: Radius accounting server up
3 Repair suggestions:
Check radius accounting server status .
"
::= { hwRadiusServerTraps 3 }
hwRadiusAcctServerDown NOTIFICATION-TYPE
OBJECTS { hwStateChangeServerIp,hwStateChangeServerVrf,hwStateChangeServerPort}
STATUS current
DESCRIPTION
"
1 Notice/Trap name: Radius accounting server down
2 Notice/Trap generation cause: Radius accounting server down
3 Repair suggestions:
Check radius accounting server status .
"
::= { hwRadiusServerTraps 4 }
hwRadiusDiscardCachePacket NOTIFICATION-TYPE
OBJECTS {hwRadiusMemoryUsage,hwRadiusThreshold,hwRadiusCachePackets}
STATUS current
DESCRIPTION
"
1 Notice/Trap name: Packets buffered earliest were dropped because the memory usage reached the threshold.
2 Notice/Trap generation cause: Packets buffered earliest were dropped because the memory usage reached the threshold.
3 Repair suggestions:
Check the memory usage.
"
::= { hwRadiusServerTraps 5 }
hwRadiusCachePacketThresholdAlarm NOTIFICATION-TYPE
OBJECTS {hwRadiusMaxCachePackets,hwRadiusThreshold}
STATUS current
DESCRIPTION
"
1 Notice/Trap name: The number of cached packets reached the upper limit.
2 Notice/Trap generation cause: The number of cached packets reached the upper limit.
3 Repair suggestions:
Check the cached packets.
"
::= { hwRadiusServerTraps 6 }
hwRadiusCachePacketThresholdResume NOTIFICATION-TYPE
OBJECTS {hwRadiusMaxCachePackets,hwRadiusThreshold}
STATUS current
DESCRIPTION
"
1 Notice/Trap name: The number of cached packets fell below the lower limit.
2 Notice/Trap generation cause: The number of cached packets fell below the lower limit.
3 Repair suggestions:
Check the cached packets.
"
::= { hwRadiusServerTraps 7 }
-- ============== conformance information ==============
hwRadiusConformance OBJECT IDENTIFIER ::= { hwBRASRadius 3 }
hwRadiusCompliances OBJECT IDENTIFIER ::= { hwRadiusConformance 1 }
hwRadiusCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for systems supporting
the this module."
MODULE -- this module
MANDATORY-GROUPS {hwRadiusGroupGroup, hwRadiusServerGroup,
hwRadiusClientGroup, hwRadiusAuthorServerGroup,
hwRadiusSettingGroup, hwRadiusTrapObjectGroup, hwRadiusTrapsDefineGroup }
::= { hwRadiusCompliances 1 }
-- ============== groups ==============
hwRadiusGroups OBJECT IDENTIFIER ::= { hwRadiusConformance 2 }
hwRadiusGroupGroup OBJECT-GROUP
OBJECTS {
hwRadiusGroupName,
hwRadiusServerKey,
hwRadiusServerProtType,
hwRadiusServerRetransmit,
hwRadiusServerTimeout,
hwRadiusServerAttrTran,
hwRadiusPacketUnit,
hwRadiusDomainInclude,
hwRadiusClassASCar,
hwRadiusAlgorithm,
hwRadiusServerNasPortFmt,
hwRadiusGroupRowStatus,
hwRadiusServerSourceInterface,
hwRadiusServerNasIpAddress ,
hwRadiusServerCallingStationId,
hwRadiusServerCallingStationIdDelimiter,
hwRadiusAttributeNoExistPolicy
}
STATUS current
DESCRIPTION
"The radius group."
::= { hwRadiusGroups 1 }
hwRadiusServerGroup OBJECT-GROUP
OBJECTS {
hwRadiusServerIndex,
hwRadiusServerType,
hwRadiusServerVRF,
hwRadiusServerIP,
hwRadiusServerPort,
hwRadiusServerWeight,
hwRadiusServerSecretKey,
hwRadiusServerRowStatus,
hwRadiusServerPktSendNumber,
hwRadiusServerPktSendInterval,
hwRadiusServerSourceInterfaceEachServer,
hwRadiusServerResponses,
hwRadiusServerSecretKeyType,
hwRadiusServerDeadCount,
hwRadiusServerDeadTime,
hwRadiusServerDeadInterval,
hwRadiusServerIPv6Address,
hwRadiusServerSourceIPAddressEachServer,
hwRadiusServerSourceIPv6AddressEachServer,
hwRadiusServerSourceLoopBackEachServer,
hwRadiusServerSourceVlanifEachServer
}
STATUS current
DESCRIPTION
"The Radius Server group."
::= { hwRadiusGroups 2 }
hwRadiusClientGroup OBJECT-GROUP
OBJECTS {
hwRadiusClientIP,
hwRadiusClientVrf,
hwRadiusClientKey,
hwRadiusClientGroupName,
hwRadiusClientRowStatus
}
STATUS current
DESCRIPTION
"The Radius Client group."
::= { hwRadiusGroups 3 }
hwRadiusAuthorServerGroup OBJECT-GROUP
OBJECTS {
hwRadiusAuthorServerIP,
hwRadiusAuthorServerVrf,
hwRadiusAuthorServerKey,
hwRadiusAuthorServerGroupName,
hwRadiusAuthorServerRowStatus
}
STATUS current
DESCRIPTION
"The Radius Author Server group."
::= { hwRadiusGroups 4 }
hwRadiusSettingGroup OBJECT-GROUP
OBJECTS {
hwEnableSourcePortsExtended,
hwSourcePortsExtendedStartPort,
hwSourcePortsExtendedPortNum,
hwRadiusTotalDeadInterval,
hwRadiusTotalDeadTime,
hwRadiusResetStatAll,
hwResetRadiusAttrCount,
hwRadiusTotalDeadCount
}
STATUS current
DESCRIPTION
"The common setting of Radius server."
::= { hwRadiusGroups 5 }
hwRadiusTrapObjectGroup OBJECT-GROUP
OBJECTS {
hwStateChangeServerIp,
hwStateChangeServerVrf,
hwStateChangeServerPort
}
STATUS current
DESCRIPTION
"The Radius Trap Object group."
::= { hwRadiusGroups 6 }
hwRadiusTrapsDefineGroup NOTIFICATION-GROUP
NOTIFICATIONS {
hwRadiusAuthServerUp,
hwRadiusAuthServerDown,
hwRadiusAcctServerUp,
hwRadiusAcctServerDown
}
STATUS current
DESCRIPTION
"The Radius Traps Define group."
::= { hwRadiusGroups 7 }
-- ============== conformance information define end ==============
END
|