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
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
|
ALCATEL-IND1-AAA-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-IDENTITY, OBJECT-TYPE, IpAddress,
Integer32, Unsigned32, NOTIFICATION-TYPE
FROM SNMPv2-SMI
MacAddress, RowStatus
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
SnmpAdminString FROM SNMP-FRAMEWORK-MIB
InetAddressType, InetAddress, InetAddressPrefixLength
FROM INET-ADDRESS-MIB
softentIND1AAA
FROM ALCATEL-IND1-BASE;
alcatelIND1AAAMIB MODULE-IDENTITY
LAST-UPDATED "201311070000Z"
ORGANIZATION "Alcatel-Lucent"
CONTACT-INFO
"Please consult with Customer Service to ensure the most appropriate
version of this document is used with the products in question:
Alcatel-Lucent, Enterprise Solutions Division
(Formerly Alcatel Internetworking, Incorporated)
26801 West Agoura Road
Agoura Hills, CA 91301-5122
United States Of America
Telephone: North America +1 800 995 2696
Latin America +1 877 919 9526
Europe +31 23 556 0100
Asia +65 394 7933
All Other +1 818 878 4507
Electronic Mail: support@ind.alcatel.com
World Wide Web: http://alcatel-lucent.com/wps/portal/enterprise
File Transfer Protocol: ftp://ftp.ind.alcatel.com/pub/products/mibs"
DESCRIPTION
"This module describes an authoritative enterprise-specific Simple
Network Management Protocol (SNMP) Management Information Base (MIB):
For the Birds Of Prey Product Line
Authentication, Authorization, and Accounting (AAA) Subsystem.
The right to make changes in specification and other information
contained in this document without prior notice is reserved.
No liability shall be assumed for any incidental, indirect, special, or
consequential damages whatsoever arising from or related to this
document or the information contained herein.
Vendors, end-users, and other interested parties are granted
non-exclusive license to use this specification in connection with
management of the products for which it is intended to be used.
Copyright (C) 1995-2007 Alcatel-Lucent
ALL RIGHTS RESERVED WORLDWIDE"
REVISION "201005130000Z"
DESCRIPTION
"Fixed the Notifications to use MIB Module OID.0 as Notifications root."
REVISION "200704030000Z"
DESCRIPTION
"The latest version of this MIB Module."
::= { softentIND1AAA 1 }
alcatelIND1AAAMIBObjects OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Branch For Authentication, Authorization, and Accounting (AAA)
Subsystem Managed Objects."
::= { alcatelIND1AAAMIB 1 }
alcatelIND1AAAMIBConformance OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Branch For Authentication, Authorization, and Accounting (AAA)
Subsystem Conformance Information."
::= { alcatelIND1AAAMIB 2 }
alcatelIND1AAAMIBGroups OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Branch For Authentication, Authorization, and Accounting (AAA)
Subsystem Units Of Conformance."
::= { alcatelIND1AAAMIBConformance 1 }
alcatelIND1AAAMIBCompliances OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Branch For Authentication, Authorization, and Accounting (AAA)
Subsystem Compliance Statements."
::= { alcatelIND1AAAMIBConformance 2 }
-- Overview of the AAA MIB
--
-- this MIB provides configuration of the AAA services including the
-- servers and the local user database
--
-- AAA server MIB
aaaServerMIB OBJECT IDENTIFIER ::= { alcatelIND1AAAMIBObjects 1 }
--
-- Server configuration table
--
aaaServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF AaaServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table shows current configuration for each AAA server."
::= { aaaServerMIB 1 }
aaaServerEntry OBJECT-TYPE
SYNTAX AaaServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An AAA server configuration identified by its protocol
and its index. An entry is created/removed when a server
is defined or undefined with IOS configuration commands
via CLI or by issuing appropriate sets to this table
using snmp."
INDEX { aaasName }
::= { aaaServerTable 1 }
AaaServerEntry ::= SEQUENCE
{
aaasName SnmpAdminString,
aaasProtocol INTEGER,
aaasHostName SnmpAdminString,
aaasIpAddress IpAddress,
aaasHostName2 SnmpAdminString,
aaasIpAddress2 IpAddress,
aaasRetries Integer32,
aaasTimout Integer32,
aaasRadKey SnmpAdminString,
aaasRadAuthPort Integer32,
aaasRadAcctPort Integer32,
aaasLdapPort Integer32,
aaasLdapDn SnmpAdminString,
aaasLdapPasswd SnmpAdminString,
aaasLdapSearchBase SnmpAdminString,
aaasLdapServType INTEGER,
aaasLdapEnableSsl INTEGER,
aaasRowStatus RowStatus,
aaasTacacsKey SnmpAdminString,
aaasTacacsPort Integer32,
aaasVrfName SnmpAdminString,
aaasRadKeyHash SnmpAdminString,
aaasLdapPasswdHash SnmpAdminString,
aaasTacacsKeyHash SnmpAdminString
}
aaasName OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 32 ) )
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Name of the server.
This name is given by the operator to refer the server."
::= { aaaServerEntry 1}
aaasProtocol OBJECT-TYPE
SYNTAX INTEGER
{
radius(1),
ldap(2),
ace(3),
tacacs(4)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Protocol used with the server:
radius(1) - RADIUS
ldap(2) - LDAP
ace(3) - ACE
tacacs(4) - TACACS+"
::= { aaaServerEntry 2}
aaasHostName OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 64 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"DNS name of the server host."
::= { aaaServerEntry 3}
aaasIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"IP address of the server host."
::= { aaaServerEntry 4}
aaasHostName2 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 64 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"DNS name of the backup server host."
::= { aaaServerEntry 5}
aaasIpAddress2 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"IP address of the backup server host."
::= { aaaServerEntry 6}
aaasRetries OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 32 )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" Number of retries the switch makes to the server to
authenticate a user before trying the next backup server.
The default value is 3."
DEFVAL { 3 }
::= { aaaServerEntry 7}
aaasTimout OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 30 )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Time-out for server replies to authentication requests.
The default value is 2."
DEFVAL { 2 }
::= { aaaServerEntry 8}
aaasRadKey OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 64 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The shared secret is a string of characters known to the switch
and to the RADIUS server, but it is not sent out over the network.
The secret can be any text string and must be configured here as
well as on the server. The secret is stored encrypted using a two
way algorithm."
::= { aaaServerEntry 9}
aaasRadAuthPort OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 65535 )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"For RADIUS server only.
Port number for authentication request;
the host is not used for authentication if set to 0.
The default value is 1645."
DEFVAL { 1645 }
::= { aaaServerEntry 10}
aaasRadAcctPort OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 65535 )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"For RADIUS server only.
Port number for accounting request;
the host is not used for authentication if set to 0.
The default value is 1646."
DEFVAL { 1646 }
::= { aaaServerEntry 11}
aaasLdapPort OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 65535 )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"For LDAP server only.
Port number for LDAP server host."
DEFVAL { 0 }
::= { aaaServerEntry 12}
aaasLdapDn OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 255 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"For LDAP server only.
the super user dn, i.e., the administrative distinguished name
recognized by the LDAP-enabled directory servers
(e.g., cn=manager)"
::= { aaaServerEntry 13}
aaasLdapPasswd OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 32 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"For LDAP server only.
the super user password, i.e., the administrative password
recognized by LDAP-enabled directory servers (e.g., secret).
The secret is stored encrypted using a two way algorithm."
::= { aaaServerEntry 14}
aaasLdapSearchBase OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 64 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"For LDAP server only.
Search base recognized by LDAP-enabled
directory servers (e.g.,o=company, c=US)."
::= { aaaServerEntry 15}
aaasLdapServType OBJECT-TYPE
SYNTAX INTEGER
{
ns(0),
generic(1),
netscape(2),
novell(3),
sun(4),
microsoft(5)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"For LDAP server only.
Directory server type used in LDAP Authentication:
ns(0) - non significant value
generic(1) - Generic Schema
netscape(2) - Netscape Directory Server
novell(3) - Novell NDS
sun(4) - Sun Directory Services
microsoft(5) - Microsoft Active Directory"
DEFVAL { netscape }
::= { aaaServerEntry 16}
aaasLdapEnableSsl OBJECT-TYPE
SYNTAX INTEGER
{
ns(0),
true(1),
false(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Only for LDAP server.
Specify if the connection between the swtich and the LDAP server
use a SSL session."
DEFVAL { false }
::= { aaaServerEntry 17}
aaasRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this table entry."
DEFVAL { notInService }
::= { aaaServerEntry 18}
aaasTacacsKey OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 64 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The shared secret is a string of characters known to the switch
and to the TACACS+ server, but it is not sent out over the network.
The secret can be any text string and must be configured here as
well as on the server. The secret is stored encrypted using a two
way algorithm."
::= { aaaServerEntry 19}
aaasTacacsPort OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 65535 )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"For TACACS+ server only.
Port number for LDAP server host."
DEFVAL { 49 }
::= { aaaServerEntry 20}
aaasVrfName OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 32 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of the VRF that the server is on.
This VRF name is valid only when the server type is RADIUS.
(aaasProtocol = 1 (Radius)."
::= { aaaServerEntry 21}
aaasRadKeyHash OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 256 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The encrypted version of the aaasRadKey attribute."
::= { aaaServerEntry 22}
aaasLdapPasswdHash OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 256 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The encrypted version of the aaasLdapPasswd attribute."
::= { aaaServerEntry 23}
aaasTacacsKeyHash OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 256 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The encrypted version of the aaasTacacsKey attribute."
::= { aaaServerEntry 24}
-- AAA authentication accounting MIB
aaaAuthAcctMIB OBJECT IDENTIFIER ::= { alcatelIND1AAAMIBObjects 2 }
--
-- Authenticated switch access configuration table
--
aaaAuthSATable OBJECT-TYPE
SYNTAX SEQUENCE OF AaaAuthSAEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table allow to display and modify the configuration of the
authentication servers for the switch accesses."
::= { aaaAuthAcctMIB 1 }
aaaAuthSAEntry OBJECT-TYPE
SYNTAX AaaAuthSAEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A switch access authentication entry is specified by the type
of access."
INDEX { aaatsInterface}
::= { aaaAuthSATable 1 }
AaaAuthSAEntry ::= SEQUENCE
{
aaatsInterface INTEGER,
aaatsName1 SnmpAdminString,
aaatsName2 SnmpAdminString,
aaatsName3 SnmpAdminString,
aaatsName4 SnmpAdminString,
aaatsRowStatus RowStatus,
aaatsCertificate INTEGER
}
aaatsInterface OBJECT-TYPE
SYNTAX INTEGER
{
default(1),
console(2),
telnet(3),
ftp(4),
http(5),
snmp(6),
ssh(7)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Type of connection that must be authenticated
default(1) -define the default authentication method for console,
telnet, ftp, snmp , http and ssh. If the operator
interface is not especially configured the default value
is applied to this interface."
::= { aaaAuthSAEntry 1}
aaatsName1 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 32 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of the server.
Special value 'local' correspond to the local database.
Other name correspond to an index value of the aaaServerTable
snmp entry can only use ldap server and local database."
::= { aaaAuthSAEntry 2}
aaatsName2 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 32 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of a server used if the precedent is not accessible.
Special value 'local' correspond to the local database.
Other name correspond to an index value of the aaaServerTable
snmp entry can only use ldap server and local database."
DEFVAL { "" }
::= { aaaAuthSAEntry 3}
aaatsName3 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 32 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of a server used if the precedent is not accessible.
Special value 'local' correspond to the local database.
Other name correspond to an index value of the aaaServerTable
snmp entry can only use ldap server and local database."
DEFVAL { "" }
::= { aaaAuthSAEntry 4}
aaatsName4 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 32 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of a server used if the precedent is not accessible.
Special value 'local' correspond to the local database.
Other name correspond to an index value of the aaaServerTable
snmp entry can only use ldap server and local database."
DEFVAL { "" }
::= { aaaAuthSAEntry 5}
aaatsRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this table entry."
DEFVAL { notInService }
::= { aaaAuthSAEntry 7}
aaatsCertificate OBJECT-TYPE
SYNTAX INTEGER
{
noCertificate(0),
certificateOnly(1),
certificateWithPassword(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"use of x509 user certificate during the HTTPs session establisment.
noCertificate(0)- no user certificate is required,
certificateOnly(1) - the DN from the certifiicate is used to access to the authorization
data of the user
certificateWithPassword(2) - the user must execute a log-in procedure with user
name and password after his certificate validation"
DEFVAL { noCertificate }
::= { aaaAuthSAEntry 8}
--
-- Accounting configuration table for switch accesses
--
aaaAcctSATable OBJECT-TYPE
SYNTAX SEQUENCE OF AaaAcctSAEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table shows current configuration for Switch access accounting."
::= { aaaAuthAcctMIB 2 }
aaaAcctSAEntry OBJECT-TYPE
SYNTAX AaaAcctSAEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Accounting configuration for switch access."
INDEX { aaacsInterface }
::= { aaaAcctSATable 1 }
AaaAcctSAEntry ::= SEQUENCE
{
aaacsInterface Integer32,
aaacsName1 SnmpAdminString,
aaacsName2 SnmpAdminString,
aaacsName3 SnmpAdminString,
aaacsName4 SnmpAdminString,
aaacsRowStatus RowStatus
}
aaacsInterface OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 1 )
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"For now, accounting for console, telnet, ftp, http, snmp, ssh are stored
in the same set of servers, the index is always (1)."
::= { aaaAcctSAEntry 1}
aaacsName1 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 32 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of the server.
Special value 'local' correspond to the local log.
Other name correspond to an index value of the aaaServerTable
An Ace server can not be used for accounting."
::= { aaaAcctSAEntry 2}
aaacsName2 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 32 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of a server used if the precedent is not accessible.
Special value 'local' correspond to the local log.
Other name correspond to an index value of the aaaServerTable
An Ace server can not be used for accounting."
DEFVAL { "" }
::= { aaaAcctSAEntry 3}
aaacsName3 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 32 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of a server used if the precedent is not accessible.
Special value 'local' correspond to the local log.
Other name correspond to an index value of the aaaServerTable
An Ace server can not be used for accounting."
DEFVAL { "" }
::= { aaaAcctSAEntry 4}
aaacsName4 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 32 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of a server used if the precedent is not accessible.
Special value 'local' correspond to the local log.
Other name correspond to an index value of the aaaServerTable
An Ace server can not be used for accounting."
DEFVAL { "" }
::= { aaaAcctSAEntry 5}
aaacsRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this table entry."
DEFVAL { notInService }
::= { aaaAcctSAEntry 6}
--
-- Accounting configuration table for commands
--
aaaAcctCmdTable OBJECT-TYPE
SYNTAX SEQUENCE OF AaaAcctCmdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table stores the commands that will be logged during an accounting session.
This feature is valid only for Tacacs+ accounting"
::= { aaaAuthAcctMIB 3 }
aaaAcctCmdEntry OBJECT-TYPE
SYNTAX AaaAcctCmdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Tacacs+ Accounting configuration for executed commands."
INDEX { aaacmdInterface }
::= { aaaAcctCmdTable 1 }
AaaAcctCmdEntry ::= SEQUENCE
{
aaacmdInterface Integer32,
aaacmdSrvName1 SnmpAdminString,
aaacmdSrvName2 SnmpAdminString,
aaacmdSrvName3 SnmpAdminString,
aaacmdSrvName4 SnmpAdminString,
aaacmdRowStatus RowStatus
}
aaacmdInterface OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 1 )
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"For now, accounting for console, telnet, ftp, http, snmp, ssh are stored
in the same set of servers, the index is always (1)."
::= { aaaAcctCmdEntry 1}
aaacmdSrvName1 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 32 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of the Tacacs+ server.
Other name correspond to an index value of the aaaServerTable"
::= { aaaAcctCmdEntry 2}
aaacmdSrvName2 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 32 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of the Tacacs+ server used if the precedent is not accessible.
Other name correspond to an index value of the aaaServerTable"
DEFVAL { "" }
::= { aaaAcctCmdEntry 3}
aaacmdSrvName3 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 32 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of the Tacacs+ server used if the precedent is not accessible.
Other name correspond to an index value of the aaaServerTable"
DEFVAL { "" }
::= { aaaAcctCmdEntry 4}
aaacmdSrvName4 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 32 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of the Tacacs+ server used if the precedent is not accessible.
Other name correspond to an index value of the aaaServerTable"
DEFVAL { "" }
::= { aaaAcctCmdEntry 5}
aaacmdRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this table entry."
DEFVAL { notInService }
::= { aaaAcctCmdEntry 6}
--
-- Authenticated Device configuration table
--
aaaAuthDATable OBJECT-TYPE
SYNTAX SEQUENCE OF AaaAuthDAEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table shows current configuration for MAC/Onex/Captive Portal authentication."
::= { aaaAuthAcctMIB 4 }
aaaAuthDAEntry OBJECT-TYPE
SYNTAX AaaAuthDAEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"configuration for MAC/Onex/Captive Portal authentication."
INDEX { aaadaInterface }
::= { aaaAuthDATable 1 }
AaaAuthDAEntry ::= SEQUENCE
{
aaadaInterface Integer32,
aaadaName1 SnmpAdminString,
aaadaName2 SnmpAdminString,
aaadaName3 SnmpAdminString,
aaadaName4 SnmpAdminString,
aaadaRowStatus RowStatus
}
aaadaInterface OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 3 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"one for mac , two for 1x, three for captive portal authentication"
::= { aaaAuthDAEntry 1}
aaadaName1 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 32 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of the server.
It corresponds to an index value of the aaaServerTable
Only RADIUS server can be used in front hand."
::= { aaaAuthDAEntry 2}
aaadaName2 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 32 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of the server.
It corresponds to an index value of the aaaServerTable
Only RADIUS server can be used in front hand."
DEFVAL { "" }
::= { aaaAuthDAEntry 3}
aaadaName3 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 32 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of the server.
It corresponds to an index value of the aaaServerTable
Only RADIUS server can be used in front hand."
DEFVAL { "" }
::= { aaaAuthDAEntry 4}
aaadaName4 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 32 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of the server.
It corresponds to an index value of the aaaServerTable
Only RADIUS server can be used in front hand."
DEFVAL { "" }
::= { aaaAuthDAEntry 5}
aaadaRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this table entry."
DEFVAL { notInService }
::= { aaaAuthDAEntry 6}
aaaAcctDATable OBJECT-TYPE
SYNTAX SEQUENCE OF AaaAcctDAEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table shows current configuration for device access accounting."
::= { aaaAuthAcctMIB 5 }
aaaAcctDAEntry OBJECT-TYPE
SYNTAX AaaAcctDAEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Accounting configuration for device access."
INDEX { aaacdInterface }
::= { aaaAcctDATable 1 }
AaaAcctDAEntry ::= SEQUENCE
{
aaacdInterface Integer32,
aaacdName1 SnmpAdminString,
aaacdName2 SnmpAdminString,
aaacdName3 SnmpAdminString,
aaacdName4 SnmpAdminString,
aaacdRowStatus RowStatus,
aaacdSyslogIPAddrType InetAddressType,
aaacdSyslogIPAddr InetAddress,
aaacdSyslogUdpPort Unsigned32,
aaacdCallngStationId INTEGER
}
aaacdInterface OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 3 )
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"accounting for mac ,onex & captive portal "
::= { aaaAcctDAEntry 1}
aaacdName1 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 32 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of the server.
Special value 'local' correspond to the local log.
Other name correspond to an index value of the aaaServerTable
for accounting."
::= { aaaAcctDAEntry 2}
aaacdName2 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 32 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of a server used if the precedent is not accessible.
Special value 'local' correspond to the local log.
Other name correspond to an index value of the aaaServerTable
for accounting."
DEFVAL { "" }
::= { aaaAcctDAEntry 3}
aaacdName3 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 32 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of a server used if the precedent is not accessible.
Special value 'local' correspond to the local log.
Other name correspond to an index value of the aaaServerTable
for accounting."
DEFVAL { "" }
::= { aaaAcctDAEntry 4}
aaacdName4 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 32 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of a server used if the precedent is not accessible.
Special value 'local' correspond to the local log.
Other name correspond to an index value of the aaaServerTable
for accounting."
DEFVAL { "" }
::= { aaaAcctDAEntry 5}
aaacdRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this table entry."
DEFVAL { notInService }
::= { aaaAcctDAEntry 6 }
aaacdSyslogIPAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Accounting Syslog IpAddress type"
::= { aaaAcctDAEntry 7 }
aaacdSyslogIPAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Accounting Syslog IpAddress "
::= { aaaAcctDAEntry 8 }
aaacdSyslogUdpPort OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Accounting Syslog Udp port "
DEFVAL { 514 }
::= { aaaAcctDAEntry 9 }
aaacdCallngStationId OBJECT-TYPE
SYNTAX INTEGER
{
mac(1),
ip(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Raduis Calling Station ID "
::= { aaaAcctDAEntry 10 }
alaAaaAuthConfig OBJECT IDENTIFIER ::= { aaaAuthAcctMIB 6 }
--
-- Global Objects for Onex/MAC/Captive Portal authentication/accounting
---
alaAaaOnexReAuthStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Enable/Disable Reauthentication for user authenticated using Onex "
DEFVAL { disable }
::= { alaAaaAuthConfig 1 }
alaAaaOnexReAuthIntrvl OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Reauthentication Interval for user authenticated using Onex "
DEFVAL { 3600 }
::= { alaAaaAuthConfig 2 }
alaAaaOnexReAuthTrustRadStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Reauthentication Trust Radius status for user authenticated using Onex "
DEFVAL { disable }
::= { alaAaaAuthConfig 3 }
alaAaaOnexIntrmIntrvl OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Accounting Interim Interval "
DEFVAL { 600 }
::= { alaAaaAuthConfig 4 }
alaAaaOnexIntmIntvlTrstRadSts OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Using Onex ,Interim Interval Trust Radius Status "
DEFVAL { disable }
::= { alaAaaAuthConfig 5 }
alaAaaMacIntrmIntrvl OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Using Mac, Accounting Interim Interval "
DEFVAL { 600 }
::= { alaAaaAuthConfig 6 }
alaAaaMacIntmIntvlTrstRadStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Using Mac ,Interim Interval Trust Radius Status "
DEFVAL { disable }
::= { alaAaaAuthConfig 7 }
alaAaaMacSessTimeoutStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Using Mac,Interim Session Timeout Status "
DEFVAL { disable }
::= { alaAaaAuthConfig 8 }
alaAaaMacSessTimeoutIntrvl OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Using Mac,Session Timeout Status Interval "
DEFVAL { 43200 }
::= { alaAaaAuthConfig 9 }
alaAaaMacSesTimeoutTrstRadStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Session Timeout Radius Status for Mac based authenticated user "
DEFVAL { disable }
::= { alaAaaAuthConfig 10 }
alaAaaMacInActLogoutStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Session Timeout Trust Radius Status for Captive Portal method based authenticated user "
DEFVAL { disable }
::= { alaAaaAuthConfig 11 }
alaAaaMacInActLogoutIntrvl OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"InActivity logout Interval for MAC based authenticated user "
DEFVAL { 600 }
::= { alaAaaAuthConfig 12 }
alaAaaCpIntrmIntrvl OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Using Captive Portal, Accounting Interim Interval "
DEFVAL { 600 }
::= { alaAaaAuthConfig 13 }
alaAaaCpIntmIntvlTrstRadStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Using Captive Portal ,Interim Interval Trust Radius Status "
DEFVAL { disable }
::= { alaAaaAuthConfig 14 }
alaAaaCpSessTimeoutStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Session Timeout Status for Captive Portal method based authenticated user "
DEFVAL { disable }
::= { alaAaaAuthConfig 15 }
alaAaaCpSessTimeoutIntrvl OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Session Timeout Interval for Captive Portal method based authenticated user "
DEFVAL { 43200 }
::= { alaAaaAuthConfig 16 }
alaAaaCpSessTmotTrstRadStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Session Timeout Trust Radius Status for Captive Portal method based authenticated user "
DEFVAL { disable }
::= { alaAaaAuthConfig 17 }
alaAaaCpInActLogoutStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"InActivity logout Status for Captive Portal based authenticated user "
DEFVAL { disable }
::= { alaAaaAuthConfig 18 }
alaAaaCpInActLogoutIntrvl OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"InActivity logout Interval for Captive Portal based authenticated user "
DEFVAL { 600 }
::= { alaAaaAuthConfig 19 }
alaAaaTacacsServerCmdAuthorization OBJECT-TYPE
SYNTAX INTEGER{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Getting command based authorization from TACACS+ server"
::= { alaAaaAuthConfig 20 }
--
-- user local database configuration table
--
aaaUserMIB OBJECT IDENTIFIER ::= { alcatelIND1AAAMIBObjects 3 }
aaaUserTable OBJECT-TYPE
SYNTAX SEQUENCE OF AaaUserEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table shows current configuration for the local user database."
::= { aaaUserMIB 1 }
aaaUserEntry OBJECT-TYPE
SYNTAX AaaUserEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An user configuration identified by its user name."
INDEX { aaauUserName }
::= { aaaUserTable 1 }
AaaUserEntry ::= SEQUENCE
{
aaauUserName SnmpAdminString,
aaauPassword SnmpAdminString,
aaauReadRight1 Unsigned32,
aaauReadRight2 Unsigned32,
aaauWriteRight1 Unsigned32,
aaauWriteRight2 Unsigned32,
aaauSnmpLevel INTEGER,
aaauSnmpAuthKey OCTET STRING,
aaauRowStatus RowStatus,
aaauOldPassword SnmpAdminString,
aaauPasswordExpirationDate SnmpAdminString,
aaauPasswordExpirationInMinute Integer32,
aaauPasswordAllowModifyDate SnmpAdminString,
aaauPasswordLockoutEnable INTEGER,
aaauBadAtempts Integer32,
aaauReadRight3 Unsigned32,
aaauReadRight4 Unsigned32,
aaauWriteRight3 Unsigned32,
aaauWriteRight4 Unsigned32,
aaauSnmpPrivPassword OCTET STRING
}
aaauUserName OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 63 ) )
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Name of the user."
::= { aaaUserEntry 1}
aaauPassword OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 47 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Password of the user. For get response the password in encoded in a
one way method. This makes the password readable by noone."
::= { aaaUserEntry 2}
aaauReadRight1 OBJECT-TYPE
SYNTAX Unsigned32 ( 0 .. 4294967295 )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the families that the user can execute with read right.
Each bit of the 32-bit integer mask represents a command's family
number. When the family bit is set, the user is allowed to run
commands of this family.First part of the bitmask.If the value is
not specified, the value configured for the 'default' user is taken"
::= { aaaUserEntry 3}
aaauReadRight2 OBJECT-TYPE
SYNTAX Unsigned32 ( 0 .. 4294967295 )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the families that the user can execute with read right.
Each bit of the 32-bit integer mask represents a command's family
number. When the family bit is set, the user is allowed to run
commands of this family.Second part of the bitmask.If the value is
not specified, the value configured for the 'default' user is taken"
::= { aaaUserEntry 4}
aaauWriteRight1 OBJECT-TYPE
SYNTAX Unsigned32 ( 0 .. 4294967295 )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the families that the user can execute with write right.
Each bit of the 32-bit integer mask represents a command's family
number. When the family bit is set, the user is allowed to run commands of
this family. First part of the bitmask.If the value is
not specified, the value configured for the 'default' user is taken"
::= { aaaUserEntry 5}
aaauWriteRight2 OBJECT-TYPE
SYNTAX Unsigned32 ( 0 .. 4294967295 )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the families that the user can execute with write right.
Each bit of the 32-bit integer mask represents a command's family
number. When the family bit is set, the user is allowed to run commands of
this family. Second part of the bitmask.If the value is
not specified, the value configured for the 'default' user is taken"
::= { aaaUserEntry 6}
aaauSnmpLevel OBJECT-TYPE
SYNTAX INTEGER
{
no(1),
noauth(2),
sha(3),
md5(4),
shaDes(5),
md5Des(6),
shaAes(7),
sha224(8),
sha256(9)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies if the user is authorized to use SNMP and if yes its security level.
no(1) - Not authorized to use SNMP.
noauth(2) - SNMPv1,SNMPv2c or SNMPv3 without authentication.
sha(3) - SNMPv3 with SHA authentication and no encryption.
md5(4) - SNMPv3 with MD5 authentication and no encryption.
sha-des(5) - SNMPv3 with SHA authentication and DES encryption.
md5-des(6) - SNMPv3 with MD5 authentication and DES encryption.
sha-aes(7) - SNMPv3 with SHA authentication and AES encryption.
sha224(8) - SNMPv3 with SHA224 authentication and no encryption.
sha256(9) - SNMPv3 with SHA256 authentication and no encryption.
If the value is not specified, the value configured for the 'default' user
is taken"
::= { aaaUserEntry 7}
aaauSnmpAuthKey OBJECT-TYPE
SYNTAX OCTET STRING ( SIZE( 0 .. 255 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Authentication key of the user. The key is encoded in a two way method.
The encryption key is deducted from this key."
::= { aaaUserEntry 8}
aaauRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this table entry."
DEFVAL { notInService }
::= { aaaUserEntry 9}
aaauOldPassword OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 47 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Internal use"
::= { aaaUserEntry 10}
aaauPasswordExpirationDate OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 16 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The local time of when the password would be expired.
This date will be reset once the value of
aaaAsaDefaultPasswordExpirationInDays is updated.
Only the following format is valid:
mm/dd/yyyy hh:mm
where
mm - month (1-12)
dd - day (1-31)
yyyy - year (2000-2050)
hh - hour (1-24)
mm - minute (1-59)
Password will not be expired if set to empty string"
::= { aaaUserEntry 11}
aaauPasswordExpirationInMinute OBJECT-TYPE
SYNTAX Integer32 ( -1 .. 216000 )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Number of minutes from now till the password expiration time.
Setting this object will update aaauPasswordExpirationDate.
If -1, password will not be expired.
If 0, password has been expired."
::= { aaaUserEntry 12}
aaauPasswordAllowModifyDate OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 16 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The local time of when the password can be start to be modified.
This date will be reset once the value of
aaauPasswordAllowModifyDate is updated.
Only the following format is valid:
mm/dd/yyyy hh:mm
where
mm - month (1-12)
dd - day (1-31)
yyyy - year (2000-2050)
hh - hour (1-24)
mm - minute (1-59)
Password will not be expired if set to empty string"
::= { aaaUserEntry 13}
aaauPasswordLockoutEnable OBJECT-TYPE
SYNTAX INTEGER {lockout(1),unlock(2),expired(3)}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicate whether this account is locked out."
DEFVAL { unlock }
::= { aaaUserEntry 14}
aaauBadAtempts OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 999 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number bad password attempts in the observation window."
DEFVAL { 0 }
::= { aaaUserEntry 15}
aaauReadRight3 OBJECT-TYPE
SYNTAX Unsigned32 ( 0 .. 4294967295 )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the families that the user can execute with read right.
Each bit of the 32-bit integer mask represents a command's family
number. When the family bit is set, the user is allowed to run
commands of this family.First part of the bitmask.If the value is
not specified, the value configured for the 'default' user is taken"
::= { aaaUserEntry 16}
aaauReadRight4 OBJECT-TYPE
SYNTAX Unsigned32 ( 0 .. 4294967295 )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the families that the user can execute with read right.
Each bit of the 32-bit integer mask represents a command's family
number. When the family bit is set, the user is allowed to run
commands of this family.Second part of the bitmask.If the value is
not specified, the value configured for the 'default' user is taken"
::= { aaaUserEntry 17}
aaauWriteRight3 OBJECT-TYPE
SYNTAX Unsigned32 ( 0 .. 4294967295 )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the families that the user can execute with write right.
Each bit of the 32-bit integer mask represents a command's family
number. When the family bit is set, the user is allowed to run commands of
this family. First part of the bitmask.If the value is
not specified, the value configured for the 'default' user is taken"
::= { aaaUserEntry 18}
aaauWriteRight4 OBJECT-TYPE
SYNTAX Unsigned32 ( 0 .. 4294967295 )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the families that the user can execute with write right.
Each bit of the 32-bit integer mask represents a command's family
number. When the family bit is set, the user is allowed to run commands of
this family. Second part of the bitmask.If the value is
not specified, the value configured for the 'default' user is taken"
::= { aaaUserEntry 19}
aaauSnmpPrivPassword OBJECT-TYPE
SYNTAX OCTET STRING ( SIZE( 8 .. 30 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Authentication key of the user. The key is encoded in a two way method.
The encryption key is deducted from this key."
::= { aaaUserEntry 20}
-- ASA specific configuration MIB
aaaAsaConfig OBJECT IDENTIFIER ::= { alcatelIND1AAAMIBObjects 4 }
--
-- ASA configuration group
--
aaaAsaPasswordSizeMin OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 31 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Minimum number of digits of the passwords
( nominator aaauPassword)."
DEFVAL { 0 }
::= { aaaAsaConfig 1}
aaaAsaDefaultPasswordExpirationInDays OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 150 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Default password expiration time in days to be applied to all users.
Updating this object will reset aaauPasswordExpirationDate.
Password expiration will not be enforced if set to 0."
DEFVAL { 0 }
::= { aaaAsaConfig 2}
aaaAsaPasswordContainUserName OBJECT-TYPE
SYNTAX INTEGER {enable(1),disable(2)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicate whether check password contains username or not."
DEFVAL { disable }
::= { aaaAsaConfig 3}
aaaAsaPasswordMinUpperCase OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 7 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Minimum number of English uppercase characters required for password. 0 is disable"
DEFVAL { 0 }
::= { aaaAsaConfig 4}
aaaAsaPasswordMinLowerCase OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 7 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Minimum number of English lowercase characters required for password 0 is disable."
DEFVAL { 0 }
::= { aaaAsaConfig 5}
aaaAsaPasswordMinDigit OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 7 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Minimum number of base-10 digits required for password. 0 is disable"
DEFVAL { 0 }
::= { aaaAsaConfig 6}
aaaAsaPasswordMinNonAlphan OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 7 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Minimum number of non-alphanumeric required for password. 0 is disable"
DEFVAL { 0 }
::= { aaaAsaConfig 7}
aaaAsaPasswordHistory OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 24 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Password history feature will prevent users from repeatedly using the same password. 0 is disable"
DEFVAL { 4 }
::= { aaaAsaConfig 8}
aaaAsaPasswordMinAge OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 150 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The password can't be modified in these days. 0 is disable"
DEFVAL { 0 }
::= { aaaAsaConfig 9}
aaaAsaLockoutWindow OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 99999 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The window of time in which the system increments the bad logon count.(minutes) 0 is disable"
DEFVAL { 0 }
::= { aaaAsaConfig 10}
aaaAsaLockoutDuration OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 99999 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The amount of time that an account is locked due to the aaauLockoutThreshold being exceeded.(minutes) 0 is disable"
DEFVAL { 0 }
::= { aaaAsaConfig 11}
aaaAsaLockoutThreshold OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 999 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of invalid logon attempts that are permitted before the account is locked out. 0 is disable"
DEFVAL { 0 }
::= { aaaAsaConfig 12}
aaaAsaAccessPolicyAdminConsoleOnly OBJECT-TYPE
SYNTAX INTEGER {enable(1),disable(2)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable AdminUser console only restriction"
DEFVAL { disable }
::= { aaaAsaConfig 13}
aaaAsaAccessMode OBJECT-TYPE
SYNTAX INTEGER { default (1),enhanced(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set access mode to enhanced or default. 0 is default 1 is enhanced"
DEFVAL { default }
::= { aaaAsaConfig 14}
aaaAsaAccessIpLockoutThreshold OBJECT-TYPE
SYNTAX INTEGER(0..999)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When aaaAsaAccessMode is enhanced, This object indicates the value of the threshold for failed login
attempts from an IP address after which the IP address will be banned from switch access.
when aaaAsaAccessMode, this is set to 0, disable"
DEFVAL { 6 }
::= {aaaAsaConfig 15}
aaaAsaAccessManagementIpStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" When aaaAsaAccessMode is enhanced, When enabled , session allowed only for
pre-configured/allowed management station defined in aaaSwitchAccessMgmtStationTable.
If disabled, any station can try to establish session is authenticated successfully,
when disabled aaaSwitchAccessMgmtStationTable will be destroyed.
When aaaAsaAccessMode is default, aaaAsaAccessManagementIpStatus will be disable"
DEFVAL { disable }
::= {aaaAsaConfig 16}
alaAaaClientAttr OBJECT IDENTIFIER ::= { alcatelIND1AAAMIBObjects 5 }
--
-- Even in Client Attributes ,we may have different categories (like radius , tacas)so creating one more node
--
alaAaaRadClientGlobalAttr OBJECT IDENTIFIER ::= { alaAaaClientAttr 1 }
alaAaaRadNasPortId OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE(0 ..31 ) )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius Client Attribute NAS Port Identifier"
::= { alaAaaRadClientGlobalAttr 1 }
alaAaaRadNasIdentifier OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE(0 ..31 ) )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius Client Attribute NAS Identifier"
::= { alaAaaRadClientGlobalAttr 2 }
alaAaaRadUserNameDelim OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE(0 ..31 ) )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius Client Attribute user name delimiter"
::= { alaAaaRadClientGlobalAttr 3 }
alaAaaRadPasswordDelim OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE(0 ..31 ) )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius Client Attribute user password delimiter"
::= { alaAaaRadClientGlobalAttr 4 }
alaAaaRadCallnStnIdDelim OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE(0 ..31 ) )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius Client attribute Calling Station delimiter"
::= { alaAaaRadClientGlobalAttr 5 }
alaAaaRadCalldStnIdDelim OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE(0 ..31 ) )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius Client attribute Called Station delimiter"
::= { alaAaaRadClientGlobalAttr 6 }
alaAaaRadUserNameCase OBJECT-TYPE
SYNTAX INTEGER
{
lowerCase(1),
upperCase(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius client attribute UserName case"
DEFVAL { upperCase }
::= { alaAaaRadClientGlobalAttr 7 }
alaAaaRadPasswordCase OBJECT-TYPE
SYNTAX INTEGER
{
lowerCase(1),
upperCase(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius client attribute Password case"
DEFVAL { upperCase }
::= { alaAaaRadClientGlobalAttr 8 }
alaAaaRadCallingStationIdCase OBJECT-TYPE
SYNTAX INTEGER
{
lowerCase(1),
upperCase(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius client attribute CallingStationId case"
DEFVAL { upperCase }
::= { alaAaaRadClientGlobalAttr 9 }
alaAaaRadCalledStationIdCase OBJECT-TYPE
SYNTAX INTEGER
{
lowerCase(1),
upperCase(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Radius client attribute CalledStationId case"
DEFVAL { upperCase }
::= { alaAaaRadClientGlobalAttr 10 }
alaAaaProfileObjects OBJECT IDENTIFIER ::= { alcatelIND1AAAMIBObjects 6 }
--
-- Even in Profiles ,we may have different categories so creating one more node
--
alaAaaProfileConfig OBJECT IDENTIFIER ::= { alaAaaProfileObjects 1 }
-- Profile table
-- AG AAA Profile will be created with this table
alaAaaProfTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlaAaaProfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table contain AAA profiles details for Onex/MAC/Captive Portal "
::= { alaAaaProfileConfig 1 }
alaAaaProfEntry OBJECT-TYPE
SYNTAX AlaAaaProfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry defines AAA profile for Onex/MAC"
INDEX { alaAaaProfName }
::= { alaAaaProfTable 1 }
AlaAaaProfEntry ::= SEQUENCE
{
alaAaaProfName SnmpAdminString,
alaAaaProfOnexReAuthSts INTEGER,
alaAaaProfOnexReAuthIntrvl Integer32,
alaAaaProfOnexReAuthTrstRadSts INTEGER,
alaAaaProfOnexIntrmIntrvl Integer32,
alaAaaProfOnexIntmItvlTstRadSts INTEGER,
alaAaaProfMacIntrmIntrvl Integer32,
alaAaaProfMacIntmItvlTrstRadSts INTEGER,
alaAaaProfMacSessTimeoutSts INTEGER,
alaAaaProfMacSessTimeoutIntrvl Integer32,
alaAaaProfMacSessTmoutTrstRadSts INTEGER,
alaAaaProfMacInActLogoutSts INTEGER,
alaAaaProfMacInActLogoutIntrvl Integer32,
alaAaaProfCpSessTimeoutSts INTEGER,
alaAaaProfCpSessTimeoutIntrvl Integer32,
alaAaaProfCpSessTmotTrstRadSts INTEGER,
alaAaaProfCpInActLogoutSts INTEGER,
alaAaaProfCpInActLogoutIntrvl Integer32,
alaAaaProfCpIntrmIntrvl Integer32,
alaAaaProfCpItrmIntlTrstRadSts INTEGER,
alaAaaProfRadNasPortId SnmpAdminString,
alaAaaProfRadNasIdentifier SnmpAdminString,
alaAaaProfRadUserNameDelim SnmpAdminString,
alaAaaProfRadPasswrdDelim SnmpAdminString,
alaAaaProfRadCallnStnIdDelim SnmpAdminString,
alaAaaProfRadCalldStnIdDelim SnmpAdminString,
alaAaaProfRadUserNameCase INTEGER,
alaAaaProfRadPasswordCase INTEGER,
alaAaaProfRadCallnStnIdCase INTEGER,
alaAaaProfRadCalldStnIdCase INTEGER,
alaAaaProfRowStatus RowStatus
}
alaAaaProfName OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 1 .. 32 ) )
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" AAA profile name for Onex/MAC/Captive Portal authenticated sessions "
::= { alaAaaProfEntry 1 }
alaAaaProfOnexReAuthSts OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" AAA profile Re-auth Status for Onex authenticated sessions "
DEFVAL { disable }
::= { alaAaaProfEntry 2 }
alaAaaProfOnexReAuthIntrvl OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" AAA profile Re-auth Interval for Onex authenticated sessions "
DEFVAL { 3600 }
::= { alaAaaProfEntry 3 }
alaAaaProfOnexReAuthTrstRadSts OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" AAA profile Re-auth Trust Radius Status for Onex authenticated sessions "
DEFVAL { disable }
::= { alaAaaProfEntry 4 }
alaAaaProfOnexIntrmIntrvl OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" AAA profile Interium Interval for Onex authenticated sessions "
DEFVAL { 600 }
::= { alaAaaProfEntry 5 }
alaAaaProfOnexIntmItvlTstRadSts OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" AAA profile Interium Interval Trust Radius Status for Onex authenticated sessions "
DEFVAL { disable }
::= { alaAaaProfEntry 6 }
alaAaaProfMacIntrmIntrvl OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" AAA profile Interium Interval for MAC authenticated sessions "
DEFVAL { 600 }
::= { alaAaaProfEntry 7 }
alaAaaProfMacIntmItvlTrstRadSts OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" AAA profile Interium Interval Trust Radius Status for MAC authenticated sessions "
DEFVAL { disable }
::= { alaAaaProfEntry 8 }
alaAaaProfMacSessTimeoutSts OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" AAA profile Session Timeout Status for MAC authenticated sessions "
DEFVAL { disable }
::= { alaAaaProfEntry 9 }
alaAaaProfMacSessTimeoutIntrvl OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" AAA profile Session Timeout Interval for MAC authenticated sessions "
DEFVAL { 43200 }
::= { alaAaaProfEntry 10 }
alaAaaProfMacSessTmoutTrstRadSts OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" AAA profile Session Timeout Trust Radius Status for MAC authenticated sessions "
DEFVAL { disable }
::= { alaAaaProfEntry 11 }
alaAaaProfMacInActLogoutSts OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" AAA profile InActivity Logout Status for MAC authenticated sessions "
DEFVAL { disable }
::= { alaAaaProfEntry 12 }
alaAaaProfMacInActLogoutIntrvl OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" AAA profile InActivity Logout Interval for MAC authenticated sessions "
DEFVAL { 600 }
::= { alaAaaProfEntry 13 }
alaAaaProfCpSessTimeoutSts OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"AAA profile Captive Portal Session Timeout Status. "
DEFVAL { disable }
::= { alaAaaProfEntry 14 }
alaAaaProfCpSessTimeoutIntrvl OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"AAA profile Captive Portal Session Timeout Interval. "
DEFVAL { 432000 }
::= { alaAaaProfEntry 15 }
alaAaaProfCpSessTmotTrstRadSts OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"AAA profile Captive Portal Session Timeout Trust radius Status "
DEFVAL { disable }
::= { alaAaaProfEntry 16 }
alaAaaProfCpInActLogoutSts OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"AAA profile Captive Portal Inactivity Logout Status."
DEFVAL { disable }
::= { alaAaaProfEntry 17 }
alaAaaProfCpInActLogoutIntrvl OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"AAA profile Captive Portal Inactivity Logout Interval."
DEFVAL { 600 }
::= { alaAaaProfEntry 18 }
alaAaaProfCpIntrmIntrvl OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"AAA profile Captive Portal Interim Interval."
DEFVAL { 43200 }
::= { alaAaaProfEntry 19 }
alaAaaProfCpItrmIntlTrstRadSts OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"AAA profile Captive Portal Interim Interval Trust Radius Status."
DEFVAL { disable }
::= { alaAaaProfEntry 20 }
alaAaaProfRadNasPortId OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE(0 ..31 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Radius Client Attribute NAS Port Identifier"
::= { alaAaaProfEntry 21 }
alaAaaProfRadNasIdentifier OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE(0 ..31 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Radius Client Attribute NAS Identifier"
::= { alaAaaProfEntry 22 }
alaAaaProfRadUserNameDelim OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE(0 ..31 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Radius Client Attribute user name delimiter"
::= { alaAaaProfEntry 23 }
alaAaaProfRadPasswrdDelim OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE(0 ..31 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Radius Client Attribute Password delimiter"
::= { alaAaaProfEntry 24 }
alaAaaProfRadCallnStnIdDelim OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE(0 ..31 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Radius Client attribute Calling Station delimiter"
::= { alaAaaProfEntry 25 }
alaAaaProfRadCalldStnIdDelim OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE(0 ..31 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Radius Client attribute Called Station delimiter"
::= { alaAaaProfEntry 26 }
alaAaaProfRadUserNameCase OBJECT-TYPE
SYNTAX INTEGER
{
lowerCase(1),
upperCase(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Radius client Attribute UserName case"
DEFVAL { upperCase }
::= { alaAaaProfEntry 27 }
alaAaaProfRadPasswordCase OBJECT-TYPE
SYNTAX INTEGER
{
lowerCase(1),
upperCase(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Radius client attribute Password case"
DEFVAL { upperCase }
::= { alaAaaProfEntry 28 }
alaAaaProfRadCallnStnIdCase OBJECT-TYPE
SYNTAX INTEGER
{
lowerCase(1),
upperCase(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Radius client attribute CallingStationId case"
DEFVAL { upperCase }
::= { alaAaaProfEntry 29 }
alaAaaProfRadCalldStnIdCase OBJECT-TYPE
SYNTAX INTEGER
{
lowerCase(1),
upperCase(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Radius client attribute CalledStationId case"
DEFVAL { upperCase }
::= { alaAaaProfEntry 30 }
alaAaaProfRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Row status of table ."
DEFVAL { notInService }
::= { alaAaaProfEntry 31 }
--
-- Profile based Authorization table
--
alaAaaProfAuthTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlaAaaProfAuthEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table shows aaa profiles for configuring authentication server for MAC/Onex/Captive Portal"
::= { alaAaaProfileConfig 2 }
alaAaaProfAuthEntry OBJECT-TYPE
SYNTAX AlaAaaProfAuthEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"configuration for MAC/Onex authentication."
INDEX { alaAaaProfName, alaAaaProfAuthInterface}
::= { alaAaaProfAuthTable 1 }
AlaAaaProfAuthEntry ::= SEQUENCE
{
alaAaaProfAuthInterface INTEGER,
alaAaaProfAuthSrvName1 SnmpAdminString,
alaAaaProfAuthSrvName2 SnmpAdminString,
alaAaaProfAuthSrvName3 SnmpAdminString,
alaAaaProfAuthSrvName4 SnmpAdminString,
alaAaaProfAuthRowStatus RowStatus
}
alaAaaProfAuthInterface OBJECT-TYPE
SYNTAX INTEGER
{
mac(1),
dot1x(2),
captivePortal(3)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"one for mac, two for 1x,threee for Captive Portal"
::= { alaAaaProfAuthEntry 1}
alaAaaProfAuthSrvName1 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 31 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" Radius authenticated server"
::= { alaAaaProfAuthEntry 2}
alaAaaProfAuthSrvName2 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 31 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" Radius authenticated server"
::= { alaAaaProfAuthEntry 3}
alaAaaProfAuthSrvName3 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 31 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" Radius authenticated server"
::= { alaAaaProfAuthEntry 4}
alaAaaProfAuthSrvName4 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 31 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" Radius authenticated server"
::= { alaAaaProfAuthEntry 5}
alaAaaProfAuthRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this table entry."
DEFVAL { notInService }
::= { alaAaaProfAuthEntry 6 }
--
-- Profile based Accounting table
--
alaAaaProfAcctTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlaAaaProfAcctEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" Profile Table for configuring radius accounting server for MAC/Onex authentication."
::= { alaAaaProfileConfig 3 }
alaAaaProfAcctEntry OBJECT-TYPE
SYNTAX AlaAaaProfAcctEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"configuration for MAC/Onex/Captive Portal accounting."
INDEX { alaAaaProfName, alaAaaProfAcctInterface}
::= { alaAaaProfAcctTable 1 }
AlaAaaProfAcctEntry ::= SEQUENCE
{
alaAaaProfAcctInterface INTEGER,
alaAaaProfAcctSrvName1 SnmpAdminString,
alaAaaProfAcctSrvName2 SnmpAdminString,
alaAaaProfAcctSrvName3 SnmpAdminString,
alaAaaProfAcctSrvName4 SnmpAdminString,
alaAaaProfAcctSyslogIPAddrType InetAddressType,
alaAaaProfAcctSyslogIPAddr InetAddress,
alaAaaProfAcctSyslogUdpPort Unsigned32,
alaAaaProfAcctCalingStationId INTEGER,
alaAaaProfAcctRowStatus RowStatus
}
alaAaaProfAcctInterface OBJECT-TYPE
SYNTAX INTEGER
{
mac(1),
dot1x(2),
captivePortal(3)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"one for mac, two for 1x, three for Captive Portal"
::= { alaAaaProfAcctEntry 1 }
alaAaaProfAcctSrvName1 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 31 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Radius accounting Server for Onex/MAC/Captive Portal accounting sessions."
::= { alaAaaProfAcctEntry 2 }
alaAaaProfAcctSrvName2 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 31 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Radius accounting Server for Onex/MAC/Captive Portal accounting sessions."
::= { alaAaaProfAcctEntry 3 }
alaAaaProfAcctSrvName3 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 31 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Radius accounting Server for Onex/MAC/Captive Portal accounting sessions."
::= { alaAaaProfAcctEntry 4 }
alaAaaProfAcctSrvName4 OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 0 .. 31 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Radius accounting Server for Onex/MAC/Captive Portal accounting sessions."
::= { alaAaaProfAcctEntry 5 }
alaAaaProfAcctSyslogIPAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Accounting Syslog IpAddress type"
::= { alaAaaProfAcctEntry 6 }
alaAaaProfAcctSyslogIPAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Accounting Syslog IpAddress "
::= { alaAaaProfAcctEntry 7 }
alaAaaProfAcctSyslogUdpPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Accounting Syslog Udp port "
DEFVAL { 514 }
::= { alaAaaProfAcctEntry 8 }
alaAaaProfAcctCalingStationId OBJECT-TYPE
SYNTAX INTEGER
{
mac(1),
ip(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Raduis Calling Station ID "
::= { alaAaaProfAcctEntry 9 }
alaAaaProfAcctRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this table entry."
DEFVAL { notInService }
::= { alaAaaProfAcctEntry 10 }
-- START: AAA SWITCH ACCESS CONFIG-RELATED MIB---------------------
aaaSwitchAccessConfig OBJECT IDENTIFIER ::= { alcatelIND1AAAMIBObjects 7 }
-- SwitchAccess config MIB --
aaaSwitchAccessMgmtStationTable OBJECT-TYPE
SYNTAX SEQUENCE OF AaaSwitchAccessMgmtStationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to configure SwitchAccess management station's Ip address."
::= {aaaSwitchAccessConfig 1 }
aaaSwitchAccessMgmtStationEntry OBJECT-TYPE
SYNTAX AaaSwitchAccessMgmtStationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"SwitchAccessManagementStation configuration."
INDEX { aaaSwitchAccessMgmtStationIpType,
aaaSwitchAccessMgmtStationIpAddress,
aaaSwitchAccessMgmtStationIpPrefixLength
}
::= { aaaSwitchAccessMgmtStationTable 1 }
AaaSwitchAccessMgmtStationEntry ::= SEQUENCE
{
aaaSwitchAccessMgmtStationIpType InetAddressType,
aaaSwitchAccessMgmtStationIpAddress InetAddress,
aaaSwitchAccessMgmtStationIpPrefixLength InetAddressPrefixLength,
aaaSwitchAccessMgmtStationRowStatus RowStatus
}
aaaSwitchAccessMgmtStationIpType OBJECT-TYPE
SYNTAX InetAddressType { unknown(0), ipv4(1) }
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Ip Address Type for the SwitchAccess management station"
::= { aaaSwitchAccessMgmtStationEntry 1 }
aaaSwitchAccessMgmtStationIpAddress OBJECT-TYPE
SYNTAX InetAddress (SIZE (4 | 16))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Ip Address for the SwitchAccess management station"
::= { aaaSwitchAccessMgmtStationEntry 2 }
aaaSwitchAccessMgmtStationIpPrefixLength OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The prefix length that, when combined
with aaaSwitchAccessMgmtStationIpAddress , gives the prefix for this
entry. The InetAddressType is given by the
aaaSwitchAccessMgmtStationIpType object.
Currntly release supports only IPV4."
::= { aaaSwitchAccessMgmtStationEntry 3 }
aaaSwitchAccessMgmtStationRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Rowstatus of the AaaSwitchAccessMgmtStationEntry."
::= { aaaSwitchAccessMgmtStationEntry 4 }
--
-- Banned IP list, this table will be populated by software
--
aaaSwitchAccessBannedIpTable OBJECT-TYPE
SYNTAX SEQUENCE OF AaaSwitchAccessBannedIpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is populated by software for Banned Ip address."
::= {aaaSwitchAccessConfig 2}
aaaSwitchAccessBannedIpEntry OBJECT-TYPE
SYNTAX AaaSwitchAccessBannedIpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"SwitchAccessManagementStation configuration."
INDEX {
aaaSwitchAccessBannedIpType,
aaaSwitchAccessBannedIpAddress
}
::= { aaaSwitchAccessBannedIpTable 1 }
AaaSwitchAccessBannedIpEntry ::= SEQUENCE
{
aaaSwitchAccessBannedIpType InetAddressType,
aaaSwitchAccessBannedIpAddress InetAddress,
aaaSwitchAccessBannedIpRowStatus RowStatus
}
aaaSwitchAccessBannedIpType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IP address type of banned IP"
::= { aaaSwitchAccessBannedIpEntry 1 }
aaaSwitchAccessBannedIpAddress OBJECT-TYPE
SYNTAX InetAddress (SIZE (4|16))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IP address of banned IP"
::= { aaaSwitchAccessBannedIpEntry 2 }
aaaSwitchAccessBannedIpRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Rowstatus of the AaaSwitchAccessBannedIpEntry, Since this table
is populated by switch, only destroy action is allowed."
::= { aaaSwitchAccessBannedIpEntry 3 }
--
-- Switch Access Priv mask based on session type
--
aaaSwitchAccessPrivMaskTable OBJECT-TYPE
SYNTAX SEQUENCE OF AaaSwitchAccessPrivMaskEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to define the user privilege based on access type along with users existing privilege level."
::= { aaaSwitchAccessConfig 3}
aaaSwitchAccessPrivMaskEntry OBJECT-TYPE
SYNTAX AaaSwitchAccessPrivMaskEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Priv mask configuration identified by the access type"
INDEX { aaaSwitchAccessType }
::= { aaaSwitchAccessPrivMaskTable 1 }
AaaSwitchAccessPrivMaskEntry ::= SEQUENCE
{
aaaSwitchAccessType INTEGER,
aaaSwitchAccessReadRight1 Unsigned32,
aaaSwitchAccessReadRight2 Unsigned32,
aaaSwitchAccessReadRight3 Unsigned32,
aaaSwitchAccessReadRight4 Unsigned32,
aaaSwitchAccessWriteRight1 Unsigned32,
aaaSwitchAccessWriteRight2 Unsigned32,
aaaSwitchAccessWriteRight3 Unsigned32,
aaaSwitchAccessWriteRight4 Unsigned32
}
aaaSwitchAccessType OBJECT-TYPE
SYNTAX INTEGER
{
console(1),
telnet(2),
ssh(3),
http(4),
https(5)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Type of connection for which privilege mask should be applied for.
If no specific privilege is configured, by default all the mode shall have
all the privilege for the user."
::= { aaaSwitchAccessPrivMaskEntry 1}
aaaSwitchAccessReadRight1 OBJECT-TYPE
SYNTAX Unsigned32 ( 0 .. 4294967295 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the families through the access type can execute with read right.
Each bit of the 32-bit integer mask represents a command's family
number. When the family bit is set, through the access type the user is allowed to run
commands of this family.First part of the bitmask.If the value is
not specified, the value configured for the 'default'."
::= { aaaSwitchAccessPrivMaskEntry 2}
aaaSwitchAccessReadRight2 OBJECT-TYPE
SYNTAX Unsigned32 ( 0 .. 4294967295 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the families through the access type can execute with read right.
Each bit of the 32-bit integer mask represents a command's family
number. When the family bit is set, through the access type the user is allowed to run
commands of this family.First part of the bitmask.If the value is
not specified, the value configured for the 'default'."
::= { aaaSwitchAccessPrivMaskEntry 3}
aaaSwitchAccessReadRight3 OBJECT-TYPE
SYNTAX Unsigned32 ( 0 .. 4294967295 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the families through the access type can execute with read right.
Each bit of the 32-bit integer mask represents a command's family
number. When the family bit is set, through the access type the user is allowed to run
commands of this family.First part of the bitmask.If the value is
not specified, the value configured for the 'default'."
::= { aaaSwitchAccessPrivMaskEntry 4}
aaaSwitchAccessReadRight4 OBJECT-TYPE
SYNTAX Unsigned32 ( 0 .. 4294967295 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the families through the access type can execute with read right.
Each bit of the 32-bit integer mask represents a command's family
number. When the family bit is set, through the access type the user is allowed to run
commands of this family.First part of the bitmask.If the value is
not specified, the value configured for the 'default'."
::= { aaaSwitchAccessPrivMaskEntry 5}
aaaSwitchAccessWriteRight1 OBJECT-TYPE
SYNTAX Unsigned32 ( 0 .. 4294967295 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the families through the access type can execute with read right.
Each bit of the 32-bit integer mask represents a command's family
number. When the family bit is set, through the access type the user is allowed to run
commands of this family.First part of the bitmask.If the value is
not specified, the value configured for the 'default'."
::= { aaaSwitchAccessPrivMaskEntry 6}
aaaSwitchAccessWriteRight2 OBJECT-TYPE
SYNTAX Unsigned32 ( 0 .. 4294967295 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the families through the access type can execute with read right.
Each bit of the 32-bit integer mask represents a command's family
number. When the family bit is set, through the access type the user is allowed to run
commands of this family.First part of the bitmask.If the value is
not specified, the value configured for the 'default'."
::= { aaaSwitchAccessPrivMaskEntry 7}
aaaSwitchAccessWriteRight3 OBJECT-TYPE
SYNTAX Unsigned32 ( 0 .. 4294967295 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the families through the access type can execute with read right.
Each bit of the 32-bit integer mask represents a command's family
number. When the family bit is set, through the access type the user is allowed to run
commands of this family.First part of the bitmask.If the value is
not specified, the value configured for the 'default'."
::= { aaaSwitchAccessPrivMaskEntry 8}
aaaSwitchAccessWriteRight4 OBJECT-TYPE
SYNTAX Unsigned32 ( 0 .. 4294967295 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the families through the access type can execute with read right.
Each bit of the 32-bit integer mask represents a command's family
number. When the family bit is set, through the access type the user is allowed to run
commands of this family.First part of the bitmask.If the value is
not specified, the value configured for the 'default'."
::= { aaaSwitchAccessPrivMaskEntry 9}
-- END: AAA SWITCH ACCESS CONFIG-RELATED MIB---------------------
--
-- User profile save
--
alaAaaUserProfileSave OBJECT-TYPE
SYNTAX INTEGER {
userProfile (1),
globalProfile (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used for saving the profiles to a file.
userProfile (1) : when set through CLI user profile file is created at /flash/switch/.profiles location and
synced accross Chassis/VC.
globalProfile (2): when set through CLI GlobalProfile.txt is generated and synced accross VC/Chassiss."
::= { alaAaaProfileConfig 4 }
alaAaaCommonCriteriaConfig OBJECT IDENTIFIER ::= { alcatelIND1AAAMIBObjects 8 }
alaAaaCommonCriteriaMode OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Enable/Disable Common Criteria mode."
DEFVAL { disable }
::= { alaAaaCommonCriteriaConfig 1 }
--
-- START: AAA TLS CONFIG-RELATED MIB---------------------
--
alaAaaTlsConfig OBJECT IDENTIFIER ::= { alcatelIND1AAAMIBObjects 9 }
alaAaaTlsBaseConfig OBJECT IDENTIFIER ::= { alaAaaTlsConfig 1 }
alaAaaTlsCaFileName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Name of the CA bundle file (in PEM format) stored in /flash/switch directory."
::= { alaAaaTlsBaseConfig 1 }
alaAaaTlsCrlFileName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Name of the CRL file (in PEM format) stored in /flash/switch directory."
::= { alaAaaTlsBaseConfig 2 }
alaAaaTlsKeyFileName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Name of the rsa key file stored in /flash/switch directory."
::= { alaAaaTlsBaseConfig 3 }
alaAaaTlsSelfSignedCert OBJECT IDENTIFIER ::= { alaAaaTlsConfig 2 }
alaAaaTlsSelfSignedCertFileName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Name of the self-signed certificate file stored in /flash/switch directory."
::= { alaAaaTlsSelfSignedCert 1 }
alaAaaTlsSelfSignedCertKeyFileName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Name of the key file file stored in /flash/switch directory."
::= { alaAaaTlsSelfSignedCert 2 }
alaAaaTlsSelfSignedCertValidPeriod OBJECT-TYPE
SYNTAX Integer32 (0..3650)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The valid period in days of certificate."
::= { alaAaaTlsSelfSignedCert 3 }
alaAaaTlsSelfSignedCertCommonName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The certificate common name."
::= { alaAaaTlsSelfSignedCert 4 }
alaAaaTlsSelfSignedCertOrgName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The certificate organization name ."
::= { alaAaaTlsSelfSignedCert 5 }
alaAaaTlsSelfSignedCertOrgUnit OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The certificate organization unit."
::= { alaAaaTlsSelfSignedCert 6 }
alaAaaTlsSelfSignedCertLocality OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Locality of the certificate organization."
::= { alaAaaTlsSelfSignedCert 7 }
alaAaaTlsSelfSignedCertState OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The state of certificate organization."
::= { alaAaaTlsSelfSignedCert 8 }
alaAaaTlsSelfSignedCertCountry OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (2))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The country of certificate organization."
::= { alaAaaTlsSelfSignedCert 9 }
alaAaaTlsSelfSignedCertAction OBJECT-TYPE
SYNTAX INTEGER
{
create (1),
delete (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Create/delete self-signed certificate stored in /flash/switch directory."
::= { alaAaaTlsSelfSignedCert 10 }
alaAaaTlsCsr OBJECT IDENTIFIER ::= { alaAaaTlsConfig 3 }
alaAaaTlsCsrFileName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The domain name of csr file stored in /flash/switch directory."
::= { alaAaaTlsCsr 1 }
alaAaaTlsCsrKeyFileName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Name of key file stored in /flash/switch directory."
::= { alaAaaTlsCsr 2 }
alaAaaTlsCsrCommonName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The csr common name."
::= { alaAaaTlsCsr 3 }
alaAaaTlsCsrOrgName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The csr organization name ."
::= { alaAaaTlsCsr 4 }
alaAaaTlsCsrOrgUnit OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The csr organization unit."
::= { alaAaaTlsCsr 5 }
alaAaaTlsCsrLocality OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Locality of the certificate organization."
::= { alaAaaTlsCsr 6 }
alaAaaTlsCsrState OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The state of certificate organization."
::= { alaAaaTlsCsr 7 }
alaAaaTlsCsrCountry OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (2))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The country of certificate organization."
::= { alaAaaTlsCsr 8 }
alaAaaTlsValidate OBJECT IDENTIFIER ::= { alaAaaTlsConfig 4 }
alaAaaTlsValidateCa OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Name of the CA certificate (in PEM format) used to validate."
::= { alaAaaTlsValidate 1 }
alaAaaTlsValidateCert OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Name of the certificate (in PEM format) needed to validate."
::= { alaAaaTlsValidate 2 }
--
-- END: AAA TLS CONFIG-RELATED MIB---------------------
--
--
-- Compliance Statements
--
alcatelIND1AAAMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Compliance statement for
Authentication, Authorization, and Accounting (AAA) Subsystem."
MODULE -- this module
MANDATORY-GROUPS
{
aaaServerMIBGroup,
aaaAuthAcctGroup,
aaaUserMIBGroup,
alaAaaClientAttrGroup,
alaAaaProfileObjectsGroup,
aaaSwitchAccessMIBGroup,
alaAaaCommonCriteriaGroup,
alaAaaTlsBaseConfigGroup,
alaAaaTlsSelfSignedCertGroup,
alaAaaTlsCsrGroup
}
::= { alcatelIND1AAAMIBCompliances 1 }
--
-- Units Of Conformance
--
aaaServerMIBGroup OBJECT-GROUP
OBJECTS
{
aaasProtocol, -- Server configuration table
aaasHostName,
aaasIpAddress,
aaasHostName2,
aaasIpAddress2,
aaasRetries,
aaasTimout,
aaasRadKey,
aaasRadAuthPort,
aaasRadAcctPort,
aaasLdapPort,
aaasLdapDn,
aaasLdapPasswd,
aaasLdapSearchBase,
aaasLdapServType,
aaasLdapEnableSsl,
aaasRowStatus,
aaasTacacsKey,
aaasTacacsPort,
aaasVrfName,
aaasRadKeyHash,
aaasLdapPasswdHash,
aaasTacacsKeyHash,
aaaAsaAccessMode,
aaaAsaAccessIpLockoutThreshold,
aaaAsaAccessManagementIpStatus
}
STATUS current
DESCRIPTION
"Collection of objects for management of AAA Server."
::= { alcatelIND1AAAMIBGroups 1 }
aaaAuthAcctGroup OBJECT-GROUP
OBJECTS
{
-- Authenticated switch access configuration table
aaatsName1,
aaatsName2,
aaatsName3,
aaatsName4,
aaatsRowStatus,
aaatsCertificate,
-- Accounting configuration table for switch accesses
aaacsName1,
aaacsName2,
aaacsName3,
aaacsName4,
aaacsRowStatus,
aaacmdSrvName1,
aaacmdSrvName2,
aaacmdSrvName3,
aaacmdSrvName4,
aaacmdRowStatus,
-- Device Authentication
aaadaInterface,
aaadaName1,
aaadaName2,
aaadaName3,
aaadaName4,
aaadaRowStatus,
-- Configuration Device Accounting
aaacdName1,
aaacdName2,
aaacdName3,
aaacdName4,
aaacdRowStatus,
aaacdSyslogIPAddrType,
aaacdSyslogIPAddr,
aaacdSyslogUdpPort,
aaacdCallngStationId,
-- Auth Config
alaAaaOnexReAuthStatus,
alaAaaOnexReAuthIntrvl,
alaAaaOnexReAuthTrustRadStatus,
alaAaaOnexIntrmIntrvl,
alaAaaOnexIntmIntvlTrstRadSts,
alaAaaMacIntrmIntrvl,
alaAaaMacIntmIntvlTrstRadStatus,
alaAaaMacSessTimeoutStatus,
alaAaaMacSessTimeoutIntrvl,
alaAaaMacSesTimeoutTrstRadStatus,
alaAaaMacInActLogoutStatus,
alaAaaMacInActLogoutIntrvl,
alaAaaCpSessTimeoutStatus,
alaAaaCpSessTimeoutIntrvl,
alaAaaCpSessTmotTrstRadStatus,
alaAaaCpIntrmIntrvl,
alaAaaCpIntmIntvlTrstRadStatus,
alaAaaCpInActLogoutStatus,
alaAaaCpInActLogoutIntrvl,
alaAaaTacacsServerCmdAuthorization
}
STATUS current
DESCRIPTION
"Collection of objects for management of AAA Authentication Accounting."
::= { alcatelIND1AAAMIBGroups 2 }
aaaUserMIBGroup OBJECT-GROUP
OBJECTS
{
-- User local database configuration table
aaauPassword,
aaauReadRight1,
aaauReadRight2,
aaauWriteRight1,
aaauWriteRight2,
aaauSnmpLevel,
aaauSnmpAuthKey,
aaauRowStatus,
aaauOldPassword,
aaauPasswordExpirationDate,
aaauPasswordExpirationInMinute,
aaauPasswordAllowModifyDate,
aaauPasswordLockoutEnable ,
aaauBadAtempts,
aaauReadRight3,
aaauReadRight4,
aaauWriteRight3,
aaauWriteRight4,
aaaAsaPasswordSizeMin, -- ASA specific configuration MIB
aaaAsaDefaultPasswordExpirationInDays,
aaaAsaPasswordContainUserName,
aaaAsaPasswordMinUpperCase,
aaaAsaPasswordMinLowerCase,
aaaAsaPasswordMinDigit,
aaaAsaPasswordMinNonAlphan,
aaaAsaPasswordHistory,
aaaAsaPasswordMinAge,
aaaAsaLockoutWindow,
aaaAsaLockoutDuration,
aaaAsaLockoutThreshold,
aaaAsaAccessPolicyAdminConsoleOnly,
aaauSnmpPrivPassword
}
STATUS current
DESCRIPTION
"Collection of objects for management of AAA User Local Database."
::= { alcatelIND1AAAMIBGroups 3 }
alaAaaClientAttrGroup OBJECT-GROUP
OBJECTS
{
alaAaaRadNasPortId,
alaAaaRadNasIdentifier,
alaAaaRadUserNameDelim,
alaAaaRadPasswordDelim,
alaAaaRadCallnStnIdDelim,
alaAaaRadCalldStnIdDelim,
alaAaaRadUserNameCase,
alaAaaRadPasswordCase,
alaAaaRadCallingStationIdCase,
alaAaaRadCalledStationIdCase
}
STATUS current
DESCRIPTION
"Collection of object for AAA client attributes"
::= { alcatelIND1AAAMIBGroups 4 }
alaAaaProfileObjectsGroup OBJECT-GROUP
OBJECTS
{
-- AAA Onex/MAC/Captive Portal Profile Table
alaAaaProfOnexReAuthSts,
alaAaaProfOnexReAuthIntrvl,
alaAaaProfOnexReAuthTrstRadSts,
alaAaaProfOnexIntrmIntrvl,
alaAaaProfOnexIntmItvlTstRadSts,
alaAaaProfMacIntrmIntrvl,
alaAaaProfMacIntmItvlTrstRadSts,
alaAaaProfMacSessTimeoutSts,
alaAaaProfMacSessTimeoutIntrvl,
alaAaaProfMacSessTmoutTrstRadSts,
alaAaaProfMacInActLogoutSts,
alaAaaProfMacInActLogoutIntrvl,
alaAaaProfCpSessTimeoutSts,
alaAaaProfCpSessTimeoutIntrvl,
alaAaaProfCpSessTmotTrstRadSts,
alaAaaProfCpInActLogoutSts,
alaAaaProfCpInActLogoutIntrvl,
alaAaaProfCpIntrmIntrvl,
alaAaaProfCpItrmIntlTrstRadSts,
alaAaaProfRadNasPortId,
alaAaaProfRadNasIdentifier,
alaAaaProfRadUserNameDelim,
alaAaaProfRadPasswrdDelim,
alaAaaProfRadCallnStnIdDelim,
alaAaaProfRadCalldStnIdDelim,
alaAaaProfRadUserNameCase,
alaAaaProfRadPasswordCase,
alaAaaProfRadCallnStnIdCase,
alaAaaProfRadCalldStnIdCase,
alaAaaProfRowStatus,
---Profile based authenticated table objects for Onex/MAC/Captive Portal
alaAaaProfAuthSrvName1,
alaAaaProfAuthSrvName2,
alaAaaProfAuthSrvName3,
alaAaaProfAuthSrvName4,
alaAaaProfAuthRowStatus,
---Profile based accounting table objects for Onex/MAC/Captive Portal
alaAaaProfAcctSrvName1,
alaAaaProfAcctSrvName2,
alaAaaProfAcctSrvName3,
alaAaaProfAcctSrvName4,
alaAaaProfAcctSyslogIPAddrType,
alaAaaProfAcctSyslogIPAddr,
alaAaaProfAcctSyslogUdpPort,
alaAaaProfAcctCalingStationId,
alaAaaProfAcctRowStatus,
---User Profile save object
alaAaaUserProfileSave
}
STATUS current
DESCRIPTION
"Collection of AAA profile objects"
::= { alcatelIND1AAAMIBGroups 5 }
aaaSwitchAccessMIBGroup OBJECT-GROUP
OBJECTS
{
aaaSwitchAccessMgmtStationRowStatus,
aaaSwitchAccessBannedIpRowStatus,
aaaSwitchAccessReadRight1,
aaaSwitchAccessReadRight2,
aaaSwitchAccessReadRight3,
aaaSwitchAccessReadRight4,
aaaSwitchAccessWriteRight1,
aaaSwitchAccessWriteRight2,
aaaSwitchAccessWriteRight3,
aaaSwitchAccessWriteRight4
}
STATUS current
DESCRIPTION
"Collection of objects for management of AAA Switch Access."
::= { alcatelIND1AAAMIBGroups 6 }
alaAaaCommonCriteriaGroup OBJECT-GROUP
OBJECTS
{
alaAaaCommonCriteriaMode
}
STATUS current
DESCRIPTION
"Collection of objects for common criteria."
::= { alcatelIND1AAAMIBGroups 7 }
alaAaaTlsBaseConfigGroup OBJECT-GROUP
OBJECTS
{
alaAaaTlsCaFileName,
alaAaaTlsCrlFileName,
alaAaaTlsKeyFileName
}
STATUS current
DESCRIPTION
"Collection of objects for management of AAA TLS base configuration."
::= { alcatelIND1AAAMIBGroups 8 }
alaAaaTlsSelfSignedCertGroup OBJECT-GROUP
OBJECTS
{
alaAaaTlsSelfSignedCertFileName,
alaAaaTlsSelfSignedCertKeyFileName,
alaAaaTlsSelfSignedCertValidPeriod,
alaAaaTlsSelfSignedCertCommonName,
alaAaaTlsSelfSignedCertOrgName,
alaAaaTlsSelfSignedCertOrgUnit,
alaAaaTlsSelfSignedCertLocality,
alaAaaTlsSelfSignedCertState,
alaAaaTlsSelfSignedCertCountry,
alaAaaTlsSelfSignedCertAction
}
STATUS current
DESCRIPTION
"Collection of objects for management of AAA TLS self-signed certificate."
::= { alcatelIND1AAAMIBGroups 9 }
alaAaaTlsCsrGroup OBJECT-GROUP
OBJECTS
{
alaAaaTlsCsrFileName,
alaAaaTlsCsrKeyFileName,
alaAaaTlsCsrCommonName,
alaAaaTlsCsrOrgName,
alaAaaTlsCsrOrgUnit,
alaAaaTlsCsrLocality,
alaAaaTlsCsrState,
alaAaaTlsCsrCountry
}
STATUS current
DESCRIPTION
"Collection of objects for management of AAA TLS CSR."
::= { alcatelIND1AAAMIBGroups 10 }
alaAaaTlsValidateGroup OBJECT-GROUP
OBJECTS
{
alaAaaTlsValidateCa,
alaAaaTlsValidateCert
}
STATUS current
DESCRIPTION
"Collection of objects for certificate validation."
::= { alcatelIND1AAAMIBGroups 11 }
END
|