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
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
|
ALCATEL-IND1-PORT-MIB DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE, Counter64,
NOTIFICATION-TYPE, MODULE-IDENTITY,
TimeTicks, Integer32, Unsigned32 FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP,
NOTIFICATION-GROUP FROM SNMPv2-CONF
DisplayString, MacAddress, DateAndTime, TEXTUAL-CONVENTION, RowStatus
FROM SNMPv2-TC
SnmpAdminString FROM SNMP-FRAMEWORK-MIB
ifIndex, ifInErrors, ifOutErrors, ifEntry,
InterfaceIndex FROM IF-MIB
softentIND1Port FROM ALCATEL-IND1-BASE
alclnkaggAggIndex FROM ALCATEL-IND1-LAG-MIB;
alcatelIND1PortMIB MODULE-IDENTITY
LAST-UPDATED "201311220000Z"
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):
This group contains the configuration information data
for the Ethernet and Fiber Channel Switching Module.
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-2013 Alcatel-Lucent
ALL RIGHTS RESERVED WORLDWIDE"
REVISION "201311220000Z"
DESCRIPTION
"Add support for Fiber Channel interface statistics"
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."
::= { softentIND1Port 1}
CableState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"an enumerated value used to indicate the status of a cable
pair"
SYNTAX INTEGER {
ok(1),
open(2),
short(3),
openShort(4),
crossTalk(5),
unknown(6)
}
alcatelIND1PortNotifications OBJECT IDENTIFIER ::= { alcatelIND1PortMIB 0 }
alcatelIND1PortMIBObjects OBJECT IDENTIFIER ::= { alcatelIND1PortMIB 1 }
alcatelIND1PortMIBConformance OBJECT IDENTIFIER ::= { alcatelIND1PortMIB 2 }
--
-- alcatelIND1PortMIBObjects
--
esmConfTrap OBJECT IDENTIFIER ::= { alcatelIND1PortMIBObjects 1 }
physicalPort OBJECT IDENTIFIER ::= { alcatelIND1PortMIBObjects 2 }
ddmConfiguration OBJECT IDENTIFIER ::= { alcatelIND1PortMIBObjects 4 }
portViolations OBJECT IDENTIFIER ::= { alcatelIND1PortMIBObjects 5 }
csmConfTrap OBJECT IDENTIFIER ::= { alcatelIND1PortMIBObjects 6 }
interfaceCounters OBJECT IDENTIFIER ::= { alcatelIND1PortMIBObjects 7 }
esmStormTrap OBJECT IDENTIFIER ::= { alcatelIND1PortMIBObjects 8 }
linkAggPort OBJECT IDENTIFIER ::= { alcatelIND1PortMIBObjects 9 }
-- Ethernet Driver object related to Trap *********************
esmDrvTrapDrops OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Partitioned port (separated due to errors)."
::= { esmConfTrap 1 }
-- Dying Gasp Trap Object
alaDyingGaspChassisId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object specifies the chassis id of the chassis whose NI is going down."
::= { csmConfTrap 1 }
alaDyingGaspPowerSupplyType OBJECT-TYPE
SYNTAX INTEGER {
primary (1),
backup (2),
saps (3),
all (4)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object specifies the type of the power supply."
::= { csmConfTrap 2 }
alaDyingGaspTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object specifies the time of power failure."
::= { csmConfTrap 3 }
-- Ethernet Storm Violation
esmStormViolationThresholdNotificationType OBJECT-TYPE
SYNTAX INTEGER {
clearViolation(1),
highAlarm(2),
lowAlarm(3)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This type defines the trap genrated by storm control feature for high or low threshold."
::= { esmStormTrap 1 }
esmStormViolationThresholdTrafficType OBJECT-TYPE
SYNTAX INTEGER {
broadcast(1),
multicast(2),
uunicast(3)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This type defines the traffic for which the trap genrated by storm control feature for high or low threshold."
::= { esmStormTrap 2 }
-- Ethernet Driver Tables *****************************
-- EsmConf group. This group contains the configuration
-- information data for the Ethernet Switching Module.
-- Implementation of this group is mandantory.
--
-- Note that this MIB can NOT be used for row creation (this
-- would imply that you could override the actual physical
-- characteristics of the physical card!).
esmConfTable OBJECT-TYPE
SYNTAX SEQUENCE OF EsmConfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of ESM Physical Port instances."
::= { physicalPort 1 }
esmConfEntry OBJECT-TYPE
SYNTAX EsmConfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A ESM Physical Port entry."
INDEX { ifIndex }
::= { esmConfTable 1 }
EsmConfEntry ::= SEQUENCE {
esmPortSlot
Integer32,
esmPortIF
Integer32,
esmPortAutoSpeed
INTEGER,
esmPortAutoDuplexMode
INTEGER,
esmPortCfgSpeed
INTEGER,
esmPortCfgDuplexMode
INTEGER,
esmPortAdminStatus
INTEGER,
esmPortLinkUpDownTrapEnable
INTEGER,
esmPortCfgMaxFrameSize
Integer32,
esmPortAlias
SnmpAdminString,
esmPortCfgPause
INTEGER,
esmPortCfgAutoNegotiation
INTEGER,
esmPortCfgCrossover
INTEGER,
esmPortCfgHybridActiveType
INTEGER,
esmPortCfgHybridMode
INTEGER,
esmPortOperationalHybridType
INTEGER,
esmPortBcastRateLimitEnable
INTEGER,
esmPortBcastRateLimitType
INTEGER,
esmPortBcastRateLimit
Integer32,
esmPortMcastRateLimitEnable
INTEGER,
esmPortMcastRateLimitType
INTEGER,
esmPortMcastRateLimit
Integer32,
esmPortUucastRateLimitEnable
INTEGER,
esmPortUucastRateLimitType
INTEGER,
esmPortUucastRateLimit
Integer32,
esmPortIngressRateLimitEnable
INTEGER,
esmPortIngressRateLimit
Integer32,
esmPortIngressRateLimitBurst
Integer32,
esmPortEPPEnable
INTEGER,
esmPortEEEEnable
INTEGER,
esmPortIsFiberChannelCapable
INTEGER,
esmPortBcastThresholdAction
INTEGER,
esmPortMcastThresholdAction
INTEGER,
esmPortUucastThresholdAction
INTEGER,
esmPortMinBcastRateLimit
Integer32,
esmPortMinMcastRateLimit
Integer32,
esmPortMinUucastRateLimit
Integer32,
esmPortBcastStormState
INTEGER,
esmPortMcastStormState
INTEGER,
esmPortUucastStormState
INTEGER
}
esmPortSlot OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The physical Slot number for this Ethernet Port.
Slot number has been added to be used by the private Trap."
::= { esmConfEntry 1 }
esmPortIF OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The on-board interface number for this Ethernet Port.
Port Number has been added to be used by the private Trap."
::= { esmConfEntry 2 }
esmPortAutoSpeed OBJECT-TYPE
SYNTAX INTEGER {
speed100(1),
speed10(2),
speedAuto(3),
unknown(4),
speed1000(5),
speed10000(6),
speed40000(7),
speed20000(11),
speed21000(12),
speed2000(13),
speed4000(14),
speed8000(15)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The automatically detected port line speed
of this ESM port."
::= { esmConfEntry 3 }
esmPortAutoDuplexMode OBJECT-TYPE
SYNTAX INTEGER {
fullDuplex(1),
halfDuplex(2),
autoDuplex(3),
unknown(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The automatically detected port duplex mode
of this ESM port.
Note: GigaEthernet supports only Full duplex mode.
Default value for 10/100 = Half duplex mode."
::= { esmConfEntry 4 }
esmPortCfgSpeed OBJECT-TYPE
SYNTAX INTEGER {
speed100(1),
speed10(2),
speedAuto(3),
speed1000(5),
speed10000(6),
speed40000(7),
speedMax100(8),
speedMax1000(9),
speed2000(13),
speed4000(14),
speed8000(15),
speedMax4000(16),
speedMax8000(17)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configured port line speed of this ESM port."
::= { esmConfEntry 5 }
esmPortCfgDuplexMode OBJECT-TYPE
SYNTAX INTEGER {
fullDuplex(1),
halfDuplex(2),
autoDuplex(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configured port duplex mode of this ESM port.
Note: GigaEthernet support only full-duplex."
::= { esmConfEntry 6 }
esmPortAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The desired state of the interface. The testing(3) state
indicates that no operational packets can be passed. When a
managed system initializes, all interfaces start with
ifAdminStatus in the down(2) state. As a result of either
explicit management action or per configuration information
retained by the managed system, ifAdminStatus is then
changed to either the up(1) or testing(3) states (or remains
in the down(2) state)."
::= { esmConfEntry 7 }
esmPortLinkUpDownTrapEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether linkUp/linkDown traps should be generated
for this interface.
By default, this object should have the value enable(1) for
interfaces which do not operate on 'top' of any other
interface (as defined in the ifStackTable), and disable(2)
otherwise."
::= { esmConfEntry 8 }
esmPortCfgMaxFrameSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configure the value of the maximum frame
size allow.
For 10Mbps the range is upto 1518 bytes.
For ports with speed > 10Mbps the value can extend upto 9216 bytes."
::= { esmConfEntry 11 }
esmPortAlias OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is an 'alias' name for the interface as
specified by a network manager, and provides a non-volatile
'handle' for the interface.
On the first instantiation of an interface, the value of
ifAlias associated with that interface is the zero-length
string. As and when a value is written into an instance of
ifAlias through a network management set operation, then the
agent must retain the supplied value in the ifAlias instance
associated with the same interface for as long as that
interface remains instantiated, including across all re-
initializations/reboots of the network management system,
including those which result in a change of the interface's
ifIndex value.
An example of the value which a network manager might store
in this object for a WAN interface is the (Telco's) circuit
number/identifier of the interface.
Some agents may support write-access only for interfaces
having particular values of ifType. An agent which supports
write access to this object is required to keep the value in
non-volatile storage, but it may limit the length of new
values depending on how much storage is already occupied by
the current values for other interfaces."
::= { esmConfEntry 12 }
esmPortCfgPause OBJECT-TYPE
SYNTAX INTEGER {
disabled(1),
enabledXmit(2),
enabledRcv(3),
enabledXmitAndRcv(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This object is used to configure the default
administrative PAUSE mode for this interface.
This object represents the
administratively-configured PAUSE mode for this
interface. If auto-negotiation is not enabled
or is not implemented for the active MAU
attached to this interface, the value of this
object determines the operational PAUSE mode
of the interface whenever it is operating in
full-duplex mode. In this case, a set to this
object will force the interface into the
specified mode.
If auto-negotiation is implemented and enabled
for the MAU attached to this interface, the
PAUSE mode for this interface is determined by
auto-negotiation, and the value of this object
denotes the mode to which the interface will
automatically revert if/when auto-negotiation is
later disabled. For more information on what
pause values will be autonegotiated based on
settings on this object, please refer to the
truth table in the users manual.
Note that the value of this object is ignored
when the interface is not operating in
full-duplex mode."
::= { esmConfEntry 13 }
esmPortCfgAutoNegotiation OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Allow the user to enable or disable the port auto negotiation."
DEFVAL { disable }
::= { esmConfEntry 15 }
esmPortCfgCrossover OBJECT-TYPE
SYNTAX INTEGER {
mdi(1),
mdix(2),
auto(3),
notapplicable(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Allow the user to configure port crossover.
This object is applicable only to copper ports.
For fiber ports notapplicable is returned as a status."
DEFVAL { auto }
::= { esmConfEntry 16 }
esmPortCfgHybridActiveType OBJECT-TYPE
SYNTAX INTEGER {
notapplicable(0),
fiber(1),
copper(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is only applicable to hybrid ports .
It indicates configured active media type.(the operational media
type may be different if esmPortCfgHybridMode is configured to be
preferredFiber or preferredCopper)
For non hybrid ports notapplicable is returned as a status."
::= { esmConfEntry 18 }
esmPortCfgHybridMode OBJECT-TYPE
SYNTAX INTEGER {
notapplicable(0),
preferredCopper(1),
forcedCopper(2),
preferredFiber(3),
forcedFiber(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is only applicable to hybrid ports.
This allows the user the user to configure the media type
with which the port should come up.
The user can configure the port to come as copper only
or fiber only or either fiber/copper
(with preference to one of them)."
DEFVAL { preferredFiber }
::= { esmConfEntry 19 }
esmPortOperationalHybridType OBJECT-TYPE
SYNTAX INTEGER {
none(0),
fiber(1),
copper(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is only applicable to hybrid ports .
It indicates the actual media type that has link up and is or will be
passing traffic. If link is not present the object will return none(0) value."
::= { esmConfEntry 20 }
esmPortBcastRateLimitEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/disable per port broadcast traffic rate limit. When 'enable' value from
esmPortBcastRateLimit object will be applicable to the ingressing broadcast traffic if
the speed is greater than the limit else the default limit for the speed will be
applied. When it is 'disable' no limit is applied to incoming broadcast traffic which
is limited by the port speed."
DEFVAL { enable }
::= { esmConfEntry 21 }
esmPortBcastRateLimitType OBJECT-TYPE
SYNTAX INTEGER {
mbps(1),
percentage(2),
pps(3),
default(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The unit applicable to the value in esmPortBcastRateLimit object."
DEFVAL { mbps }
::= { esmConfEntry 22 }
esmPortBcastRateLimit OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the maximum broadcast traffic that can flow
through the port. The actual value depends on the port speed
if the configured values is greater than the current port speed.
It is mandatory to set esmPortBcastRateLimitType object along with
esmPortBcastRateLimit object to set the broadcast rate limit."
::= { esmConfEntry 23 }
esmPortMcastRateLimitEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/disable per port multicast traffic rate limit. When 'enable' value from
esmPortMcastRateLimit object will be applicable to the ingressing multicast traffic if
the speed is greater than the limit else the default limit for the speed will be
applied. When it is 'disable' no limit is applied to incoming multicast traffic which
is limited by the port speed."
DEFVAL { enable }
::= { esmConfEntry 24 }
esmPortMcastRateLimitType OBJECT-TYPE
SYNTAX INTEGER {
mbps(1),
percentage(2),
pps(3),
default(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The unit applicable to the value in esmPortMcastRateLimit object."
DEFVAL { mbps }
::= { esmConfEntry 25 }
esmPortMcastRateLimit OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the maximum multicast traffic that can flow
through the port. The actual value depends on the port speed
if the configured values is greater than the current port speed.
It is mandatory to set esmPortMcastRateLimitType object along with
esmPortMcastRateLimit object to set the multicast rate limit."
::= { esmConfEntry 26 }
esmPortUucastRateLimitEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/disable per port unknown unicast traffic rate limit. When 'enable' value from
esmPortUucastRateLimit object will be applicable to the ingressing unknown unicast traffic if
the speed is greater than the limit else the default limit for the speed will be
applied. When it is 'disable' no limit is applied to incoming unknown unicast traffic which
is limited by the port speed."
DEFVAL { enable }
::= { esmConfEntry 27 }
esmPortUucastRateLimitType OBJECT-TYPE
SYNTAX INTEGER {
mbps(1),
percentage(2),
pps(3),
default(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The unit applicable to the value in esmPortUucastRate object."
DEFVAL { mbps }
::= { esmConfEntry 28 }
esmPortUucastRateLimit OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the maximum unknown unicast traffic that can flow
through the port. The actual value depends on the port speed
if the configured values is greater than the current port speed.
It is mandatory to set esmPortUucastRateLimitType object along with
esmPortUucastRateLimit object to set the unknown unicast rate limit."
::= { esmConfEntry 29 }
esmPortIngressRateLimitEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/disable per port ingress traffic rate limit. When 'enable' value from
esmPortIngressRate object will be applicable to the ingressing traffic (BC, MC, UUC) if
the speed is greater than the limit else the default limit for the speed will be
applied. When it is 'disable' no limit is applied to incoming traffic which
is limited by the port speed."
DEFVAL { enable }
::= { esmConfEntry 30 }
esmPortIngressRateLimit OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the maximum ingress traffic that can flow
through the port. The actual value depends on the port speed
if the configured value is greater than the current port speed."
::= { esmConfEntry 31 }
esmPortIngressRateLimitBurst OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of ingress traffic burst size in Mbits."
::= { esmConfEntry 32 }
esmPortEPPEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"use for port diagnostics"
DEFVAL { disable }
::= { esmConfEntry 33 }
esmPortEEEEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"10Gbase-T Energy Efficent Ethernet port parameter."
DEFVAL { disable }
::= { esmConfEntry 34 }
esmPortIsFiberChannelCapable OBJECT-TYPE
SYNTAX INTEGER {
yes(1),
no(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The port can be configured as Fiber Channel interface (yes) or can
not be configured as Fiber Channel interface."
DEFVAL { no }
::= { esmConfEntry 35 }
esmPortBcastThresholdAction OBJECT-TYPE
SYNTAX INTEGER {
default(1),
trap(2),
shutdown(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The port can be configured to send trap/shutdown if
the threshold limit is crossed for Bcast Frames"
DEFVAL { default }
::= { esmConfEntry 36 }
esmPortMcastThresholdAction OBJECT-TYPE
SYNTAX INTEGER {
default(1),
trap(2),
shutdown(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The port can be configured to send trap/shutdown if
the threshold limit is crossed for Mcast Frames"
DEFVAL { default }
::= { esmConfEntry 37 }
esmPortUucastThresholdAction OBJECT-TYPE
SYNTAX INTEGER {
default(1),
trap(2),
shutdown(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The port can be configured to send trap/shutdown if
the threshold limit is crossed Unknown Unicast Frames"
DEFVAL { default }
::= { esmConfEntry 38 }
esmPortMinBcastRateLimit OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of low threshold for bcast."
::= { esmConfEntry 39 }
esmPortMinMcastRateLimit OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of low threshold for mcast."
::= { esmConfEntry 40 }
esmPortMinUucastRateLimit OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of low threshold for uucast."
::= { esmConfEntry 41 }
esmPortBcastStormState OBJECT-TYPE
SYNTAX INTEGER {
normal(1),
storm(2),
trap(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of the port for broadcast Storm Control."
DEFVAL { normal }
::= { esmConfEntry 42 }
esmPortMcastStormState OBJECT-TYPE
SYNTAX INTEGER {
normal(1),
storm(2),
trap(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of the port for multi-cast Storm Control."
DEFVAL { normal }
::= { esmConfEntry 43 }
esmPortUucastStormState OBJECT-TYPE
SYNTAX INTEGER {
normal(1),
storm(2),
trap(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of the port for uucast Storm Control."
DEFVAL { normal }
::= { esmConfEntry 44 }
-- The Ethernet Statistics Group
--
-- The ethernet statistics group contains statistics
-- measured by the probe for each monitored interface on
-- this device. These statistics take the form of free
-- running counters that start from zero when a valid entry
-- is created.
--
-- This group currently has statistics defined only for
-- Ethernet interfaces. Each alcetherStatsEntry contains
-- statistics for one Ethernet interface. The probe must
-- create one alcetherStats entry for each monitored Ethernet
-- interface on the device.
alcetherStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlcetherStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of Ethernet statistics entries."
::= { physicalPort 2 }
alcetherStatsEntry OBJECT-TYPE
SYNTAX AlcetherStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A collection of statistics kept for a particular
Ethernet interface. As an example, an instance of the
etherStatsPkts object might be named alcetherStatsPkts.1"
INDEX { ifIndex }
::= { alcetherStatsTable 1 }
AlcetherStatsEntry ::= SEQUENCE {
alcetherClearStats INTEGER,
alcetherLastClearStats TimeTicks,
alcetherStatsCRCAlignErrors Counter64,
alcetherStatsRxUndersizePkts Counter64,
alcetherStatsTxUndersizePkts Counter64,
alcetherStatsTxOversizePkts Counter64,
alcetherStatsRxJabbers Counter64,
alcetherStatsRxCollisions Counter64,
alcetherStatsTxCollisions Counter64,
alcetherStatsPkts64Octets Counter64,
alcetherStatsPkts65to127Octets Counter64,
alcetherStatsPkts128to255Octets Counter64,
alcetherStatsPkts256to511Octets Counter64,
alcetherStatsPkts512to1023Octets Counter64,
alcetherStatsPkts1024to1518Octets Counter64,
gigaEtherStatsPkts1519to4095Octets Counter64,
gigaEtherStatsPkts4096to9215Octets Counter64,
alcetherStatsPkts1519to2047Octets Counter64,
alcetherStatsPkts2048to4095Octets Counter64,
alcetherStatsPkts4096Octets Counter64,
alcetherStatsRxGiantPkts Counter64,
alcetherStatsRxDribbleNibblePkts Counter64,
alcetherStatsRxLongEventPkts Counter64,
alcetherStatsRxVlanTagPkts Counter64,
alcetherStatsRxControlPkts Counter64,
alcetherStatsRxLenChkErrPkts Counter64,
alcetherStatsRxCodeErrPkts Counter64,
alcetherStatsRxDvEventPkts Counter64,
alcetherStatsRxPrevPktDropped Counter64,
alcetherStatsTx64Octets Counter64,
alcetherStatsTx65to127Octets Counter64,
alcetherStatsTx128to255Octets Counter64,
alcetherStatsTx256to511Octets Counter64,
alcetherStatsTx512to1023Octets Counter64,
alcetherStatsTx1024to1518Octets Counter64,
alcetherStatsTx1519to2047Octets Counter64,
alcetherStatsTx2048to4095Octets Counter64,
alcetherStatsTx4096Octets Counter64,
alcetherStatsTxRetryCount Counter64,
alcetherStatsTxVlanTagPkts Counter64,
alcetherStatsTxControlPkts Counter64,
alcetherStatsTxLatePkts Counter64,
alcetherStatsTxTotalBytesOnWire Counter64,
alcetherStatsTxLenChkErrPkts Counter64,
alcetherStatsTxExcDeferPkts Counter64
}
alcetherClearStats OBJECT-TYPE
SYNTAX INTEGER
{ default(0),
reset(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Used to Clear all Statistics counters.
By default, this object contains zero value."
::= { alcetherStatsEntry 1 }
alcetherLastClearStats OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of SysUpTime at the time of all
the statistics counters are cleared.
By default, this object contains a zero value."
::= { alcetherStatsEntry 2 }
alcetherStatsCRCAlignErrors OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received that
had a length (excluding framing bits, but
including FCS octets) of between 64 and 1518
octets, inclusive, but but had either a bad
Frame Check Sequence (FCS) with an integral
number of octets (FCS Error) or a bad FCS with
a non-integral number of octets (Alignment Error)."
::= { alcetherStatsEntry 3 }
alcetherStatsRxUndersizePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received that were
less than 64 octets long (excluding framing bits,
but including FCS octets) and were otherwise well
formed."
::= { alcetherStatsEntry 4 }
alcetherStatsTxUndersizePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets transmitted that were
less than 64 octets long (excluding framing bits,
but including FCS octets) and were otherwise well
formed."
::= { alcetherStatsEntry 5 }
alcetherStatsTxOversizePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets transmitted that were
longer than 1518 octets long (excluding framing bits,
but including FCS octets) and were otherwise well
formed."
::= { alcetherStatsEntry 6 }
alcetherStatsRxJabbers OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received that were
longer than 1518 octets (excluding framing bits,
but including FCS octets), and had either a bad
Frame Check Sequence (FCS) with an integral number
of octets (FCS Error) or a bad FCS with a
non-integral number of octets (Alignment Error).
Note that this definition of jabber is different
than the definition in IEEE-802.3 section 8.2.1.5
(10BASE5) and section 10.3.1.4 (10BASE2). These
documents define jabber as the condition where any
packet exceeds 20 ms. The allowed range to detect
jabber is between 20 ms and 150 ms."
::= { alcetherStatsEntry 7 }
alcetherStatsRxCollisions OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The best estimate of the total number of collisions
on this Ethernet segment (in reception).
Only for Ethernet Interfaces.
The value returned will depend on the location of
the RMON probe. Section 8.2.1.3 (10BASE-5) and
section 10.3.1.3 (10BASE-2) of IEEE standard 802.3
states that a station must detect a collision, in
the receive mode, if three or more stations are
transmitting simultaneously. A repeater port must
detect a collision when two or more stations are
transmitting simultaneously. Thus a probe placed on
a repeater port could record more collisions than a
probe connected to a station on the same segment
would.
Probe location plays a much smaller role when
considering 10BASE-T. 14.2.1.4 (10BASE-T) of IEEE
standard 802.3 defines a collision as the
simultaneous presence of signals on the DO and RD
circuits (transmitting and receiving at the same
time). A 10BASE-T station can only detect
collisions when it is transmitting. Thus probes
placed on a station and a repeater, should report
the same number of collisions.
Note also that an RMON probe inside a repeater
should ideally report collisions between the
repeater and one or more other hosts (transmit
collisions as defined by IEEE 802.3k) plus receiver
collisions observed on any coax segments to which
the repeater is connected."
::= { alcetherStatsEntry 8 }
alcetherStatsTxCollisions OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The best estimate of the total number of collisions
on this Ethernet segment (in transmition).
Only for Ethernet Interfaces.
The value returned will depend on the location of
the RMON probe. Section 8.2.1.3 (10BASE-5) and
section 10.3.1.3 (10BASE-2) of IEEE standard 802.3
states that a station must detect a collision, in
the receive mode, if three or more stations are
transmitting simultaneously. A repeater port must
detect a collision when two or more stations are
transmitting simultaneously. Thus a probe placed on
a repeater port could record more collisions than a
probe connected to a station on the same segment
would.
Probe location plays a much smaller role when
considering 10BASE-T. 14.2.1.4 (10BASE-T) of IEEE
standard 802.3 defines a collision as the
simultaneous presence of signals on the DO and RD
circuits (transmitting and receiving at the same
time). A 10BASE-T station can only detect
collisions when it is transmitting. Thus probes
placed on a station and a repeater, should report
the same number of collisions.
Note also that an RMON probe inside a repeater
should ideally report collisions between the
repeater and one or more other hosts (transmit
collisions as defined by IEEE 802.3k) plus receiver
collisions observed on any coax segments to which
the repeater is connected."
::= { alcetherStatsEntry 9 }
alcetherStatsPkts64Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets (including bad
packets) received that were 64 octets in length
(excluding framing bits but including FCS octets)."
::= { alcetherStatsEntry 10 }
alcetherStatsPkts65to127Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets (including bad
packets) received that were between
65 and 127 octets in length inclusive
(excluding framing bits but including FCS octets)."
::= { alcetherStatsEntry 11 }
alcetherStatsPkts128to255Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets (including bad
packets) received that were between
128 and 255 octets in length inclusive
(excluding framing bits but including FCS octets)."
::= { alcetherStatsEntry 12 }
alcetherStatsPkts256to511Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets (including bad
packets) received that were between
256 and 511 octets in length inclusive
(excluding framing bits but including FCS octets)."
::= { alcetherStatsEntry 13 }
alcetherStatsPkts512to1023Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets (including bad
packets) received that were between
512 and 1023 octets in length inclusive
(excluding framing bits but including FCS octets)."
::= { alcetherStatsEntry 14 }
alcetherStatsPkts1024to1518Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets (including bad
packets) received that were between
1024 and 1518 octets in length inclusive
(excluding framing bits but including FCS octets).
For both Ethernet and GigaEthernet."
::= { alcetherStatsEntry 15 }
gigaEtherStatsPkts1519to4095Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets (including bad
packets) received that were between
1519 and 4095 octets in length inclusive
(excluding framing bits but including FCS octets).
Only for GigaEthernet interfaces"
::= { alcetherStatsEntry 16 }
gigaEtherStatsPkts4096to9215Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets (including bad
packets) received that were between
4096 and 9215 octets in length inclusive
(excluding framing bits but including FCS octets).
Only for GigaEthernet interfaces"
::= { alcetherStatsEntry 17 }
alcetherStatsPkts1519to2047Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames(including error packets) received
that were between 1519 and 2047 bytes in length inclusive
(excluding framing bits but including FCS bytes).
"
::= { alcetherStatsEntry 18 }
alcetherStatsPkts2048to4095Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames(including error packets) received
that were between 2048 and 4095 bytes in length inclusive
(excluding framing bits but including FCS bytes).
"
::= { alcetherStatsEntry 19 }
alcetherStatsPkts4096Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames(including error packets) received
that were greater than or equal to 4096 bytes in length inclusive
(excluding framing bits but including FCS bytes).
"
::= { alcetherStatsEntry 20 }
alcetherStatsRxGiantPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames that are greater than the specified
Max length value, with a valid CRC, dropped because too long.
"
::= { alcetherStatsEntry 21 }
alcetherStatsRxDribbleNibblePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames for which a dribble nibble has been
received and CRC is correct.
"
::= { alcetherStatsEntry 22 }
alcetherStatsRxLongEventPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames for which the Carrier sense exceeds
50000 bit times for 10 Mbits/sec or 80000 bit times for
100 Mbits/sec."
::= { alcetherStatsEntry 23 }
alcetherStatsRxVlanTagPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames for which Type/Length field
contains the VLAN protocol identifier (0x8100). "
::= { alcetherStatsEntry 24 }
alcetherStatsRxControlPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames that were recognized as control frames."
::= { alcetherStatsEntry 25 }
alcetherStatsRxLenChkErrPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames for which the frame length field value
in the Type/Length field does not match the actual data bytes
length and is NOT a type field."
::= { alcetherStatsEntry 26 }
alcetherStatsRxCodeErrPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames for which one or more nibbles were
signaled as errors during reception of the frame."
::= { alcetherStatsEntry 27 }
alcetherStatsRxDvEventPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames for which a RX_DV event (packet not
too long enough to be valid packet) has been seen before the
correct frame."
::= { alcetherStatsEntry 28 }
alcetherStatsRxPrevPktDropped OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames for which a packet has been dropped
(because of too small IFG) before the correct frame."
::= { alcetherStatsEntry 29 }
alcetherStatsTx64Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of transmitted frames of 64 bytes."
::= { alcetherStatsEntry 30 }
alcetherStatsTx65to127Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of transmitted frames that were between
65 and 127 bytes in length inclusive (excluding framing bits
but including FCS bytes)."
::= { alcetherStatsEntry 31 }
alcetherStatsTx128to255Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of transmitted frames that were between
128 and 255 bytes in length inclusive (excluding framing bits
but including FCS bytes)."
::= { alcetherStatsEntry 32 }
alcetherStatsTx256to511Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of transmitted frames that were between
256 and 511 bytes in length inclusive (excluding framing bits
but including FCS bytes)."
::= { alcetherStatsEntry 33 }
alcetherStatsTx512to1023Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of transmitted frames that were between
512 and 1023 bytes in length inclusive (excluding framing bits
but including FCS bytes)."
::= { alcetherStatsEntry 34 }
alcetherStatsTx1024to1518Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of transmitted frames that were between
1024 and 1518 bytes in length inclusive (excluding framing bits
but including FCS bytes)."
::= { alcetherStatsEntry 35 }
alcetherStatsTx1519to2047Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of transmitted frames that were between
1519 and 2047 bytes in length inclusive (excluding framing bits
but including FCS bytes)."
::= { alcetherStatsEntry 36 }
alcetherStatsTx2048to4095Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of transmitted frames that were between
2048 and 4095 bytes in length inclusive (excluding framing bits
but including FCS bytes)."
::= { alcetherStatsEntry 37 }
alcetherStatsTx4096Octets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of transmitted frames that were greater than
or equal to 4096 bytes in length and less than Max frame length
(excluding framing bits but including FCS bytes)."
::= { alcetherStatsEntry 38 }
alcetherStatsTxRetryCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of collisions that the frames faced during
transmission attempts."
::= { alcetherStatsEntry 39 }
alcetherStatsTxVlanTagPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of transmitted frames for which Type/Length field contains the
VLAN protocol identifier (0x8100)."
::= { alcetherStatsEntry 40 }
alcetherStatsTxControlPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of transmitted frames that were recognised as control frames."
::= { alcetherStatsEntry 41 }
alcetherStatsTxLatePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of late collisions that occured beyond the collision window."
::= { alcetherStatsEntry 42 }
alcetherStatsTxTotalBytesOnWire OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of bytes transmitted on wire, including all bytes from collided
attempts."
::= { alcetherStatsEntry 43 }
alcetherStatsTxLenChkErrPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of transmitted frames for which the frame length field value
in the Type/Length field does not match the actual data bytes length and
is NOT a Type field."
::= { alcetherStatsEntry 44 }
alcetherStatsTxExcDeferPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames that were deferred in excess of 6071 nibble-times
in 100 Mbps, 24287 bit-times in 10 Mbps mode. These frames are dropped.(This
stat is only in case of Half duplex and excessive defer bit reset)."
::= { alcetherStatsEntry 45 }
-- Link Aggregation Statistics *****************************
-- The Link Aggregation Statistics Group
--
-- The link aggregation statistics group contains statistics
-- measured by the probe for each monitored Link Aggregation (lag)
-- on this device. These statistics take the form of free
-- running counters that start from zero when a valid entry
-- is created.
--
-- This group currently has statistics defined only for
-- lag interfaces. Each alcLagStatsEntry contains
-- statistics for one link aggregation interface. The probe must
-- create one alcLagStats entry for each monitored link aggregation
-- interface on the device.
alcLagStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlcLagStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of Link Aggregation statistics entries."
::= { linkAggPort 1 }
alcLagStatsEntry OBJECT-TYPE
SYNTAX AlcLagStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A collection of statistics kept for a particular
Link Aggregation interface. alclnkaggAggIndex is defined
in alclnkaggAggTable; it is of SYNTAX InterfaceIndex
(aka ifIndex) starting at value 40000001 for link agg 1.
Index values received outside of the range for link aggregation
interfaces will return an error."
INDEX { alclnkaggAggIndex }
::= { alcLagStatsTable 1 }
AlcLagStatsEntry ::= SEQUENCE {
alcLagClearStats INTEGER
}
alcLagClearStats OBJECT-TYPE
SYNTAX INTEGER
{
none(0),
reset(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Used to Clear all Link Aggregation Statistics counters. New stats collection starts immediately.
No meaningful read on this object."
DEFVAL { none }
::= { alcLagStatsEntry 1 }
-- Ethernet Driver Tables *****************************
-- EsmHybridConf table contains the configuration
-- information about the configured inactive media for the
-- hybrid port only.
-- Implementation of this group is mandantory.
--
-- Note that entries in this MIB Table can NOT be created by the user, only modified
esmHybridConfTable OBJECT-TYPE
SYNTAX SEQUENCE OF EsmHybridConfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of inactive hybrid port instances."
::= { physicalPort 3 }
esmHybridConfEntry OBJECT-TYPE
SYNTAX EsmHybridConfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A ESM Physical Port entry."
INDEX { ifIndex }
::= { esmHybridConfTable 1 }
EsmHybridConfEntry ::= SEQUENCE {
esmHybridPortCfgSpeed
INTEGER,
esmHybridPortCfgDuplexMode
INTEGER,
esmHybridPortCfgAutoNegotiation
INTEGER,
esmHybridPortCfgCrossover
INTEGER,
esmHybridPortCfgFlow
INTEGER,
esmHybridPortCfgInactiveType
INTEGER
}
esmHybridPortCfgSpeed OBJECT-TYPE
SYNTAX INTEGER {
speed100(1),
speed10(2),
speedAuto(3),
speed1000(5),
speed10000(6),
speedMax100(8),
speedMax1000(9)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configured port line speed of this ESM port."
::= { esmHybridConfEntry 1 }
esmHybridPortCfgDuplexMode OBJECT-TYPE
SYNTAX INTEGER {
fullDuplex(1),
halfDuplex(2),
autoDuplex(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configured port duplex mode of this ESM port.
Note: GigaEthernet support only full-duplex."
::= { esmHybridConfEntry 2 }
esmHybridPortCfgAutoNegotiation OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Allow the user to enable or disable the port auto negotiation."
DEFVAL { disable }
::= { esmHybridConfEntry 3 }
esmHybridPortCfgCrossover OBJECT-TYPE
SYNTAX INTEGER {
mdi(1),
mdix(2),
auto(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Allow the user to configure port crossover."
DEFVAL { auto }
::= { esmHybridConfEntry 4 }
esmHybridPortCfgFlow OBJECT-TYPE
SYNTAX INTEGER {
disable(1),
enabledXmit(2),
enabledRcv(3),
enabledXmitAndRcv(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used for flow control of hybrid ports. It is similar to the dot3PauseAdminMode
object in dot3PauseTable. It is used to configure pause for fiber media."
DEFVAL { disable }
::= { esmHybridConfEntry 5 }
esmHybridPortCfgInactiveType OBJECT-TYPE
SYNTAX INTEGER {
fiber(1),
copper(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is only applicable to hybrid ports .
It indicates the configured inactive media type."
::= { esmHybridConfEntry 6 }
-- Digital Diagnostics Monitoring (DDM) **************************
ddmConfig OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object enables/disables DDM software feature in the system."
DEFVAL { disable }
::= { ddmConfiguration 1 }
ddmTrapConfig OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This objects enables/disables traps for DDM warning/alarm threshold violations."
DEFVAL { disable }
::= { ddmConfiguration 2 }
ddmNotificationType OBJECT-TYPE
SYNTAX INTEGER
{
clearViolation(1),
highAlarm(2),
highWarning(3),
lowWarning(4),
lowAlarm(5)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object defines the trap type for monitored DDM parameters."
::= { ddmConfiguration 3 }
ddmInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF DdmEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"The ddmInfoTable has an entry for each SFP/XFP in the
system that supports Digital Diagnostic Monitoring (DDM). The table is
indexed by ifIndex. Each row in this table is dynamically added
and removed internally by the system based on the presence or absence
of DDM capable SFP/XFP components."
::= { physicalPort 5 }
ddmInfoEntry OBJECT-TYPE
SYNTAX DdmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row represents a particular SFP/XFP that supports Digital
Diagnostic Monitoring.
Entries are created and deleted internally by the system."
INDEX { ifIndex }
::= { ddmInfoTable 1}
DdmEntry ::= SEQUENCE
{
ddmTemperature Integer32,
ddmTempLowWarning Integer32,
ddmTempLowAlarm Integer32,
ddmTempHiWarning Integer32,
ddmTempHiAlarm Integer32,
ddmSupplyVoltage Integer32,
ddmSupplyVoltageLowWarning Integer32,
ddmSupplyVoltageLowAlarm Integer32,
ddmSupplyVoltageHiWarning Integer32,
ddmSupplyVoltageHiAlarm Integer32,
ddmTxBiasCurrent Integer32,
ddmTxBiasCurrentLowWarning Integer32,
ddmTxBiasCurrentLowAlarm Integer32,
ddmTxBiasCurrentHiWarning Integer32,
ddmTxBiasCurrentHiAlarm Integer32,
ddmTxOutputPower Integer32,
ddmTxOutputPowerLowWarning Integer32,
ddmTxOutputPowerLowAlarm Integer32,
ddmTxOutputPowerHiWarning Integer32,
ddmTxOutputPowerHiAlarm Integer32,
ddmRxOpticalPower Integer32,
ddmRxOpticalPowerLowWarning Integer32,
ddmRxOpticalPowerLowAlarm Integer32,
ddmRxOpticalPowerHiWarning Integer32,
ddmRxOpticalPowerHiAlarm Integer32
}
ddmTemperature OBJECT-TYPE
SYNTAX Integer32 (-200000 | -150000..150000)
UNITS "thousandth of a degree celcius"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTemperature indicates the current temperature
of the SFP/XFP in 1000s of degrees Celsius.
A value of -200000 indicates this object is not applicable."
::= { ddmInfoEntry 1 }
ddmTempLowWarning OBJECT-TYPE
SYNTAX Integer32 (-200000 | -150000..150000)
UNITS "thousandth of a degree celcius"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTempLowWarning indicates the temperature
of the SFP/XFP in 1000s of degrees Celsius that triggers a low-warning.
A value of -200000 indicates this object is not applicable."
::= { ddmInfoEntry 2 }
ddmTempLowAlarm OBJECT-TYPE
SYNTAX Integer32 (-200000 | -150000..150000)
UNITS "thousandth of a degree celcius"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTempLowAlarm indicates the temperature
of the SFP/XFP in 1000s of degrees Celsius that triggers a low-alarm.
A value of -200000 indicates this object is not applicable."
::= { ddmInfoEntry 3 }
ddmTempHiWarning OBJECT-TYPE
SYNTAX Integer32 (-200000 | -150000..150000)
UNITS "thousandth of a degree celcius"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTempHiWarning indicates the temperature
of the SFP/XFP in 1000s of degrees Celsius that triggers a hi-warning.
A value of -200000 indicates this object is not applicable."
::= { ddmInfoEntry 4 }
ddmTempHiAlarm OBJECT-TYPE
SYNTAX Integer32 (-200000 | -150000..150000)
UNITS "thousandth of a degree celcius"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTempHiAlarm indicates the temperature
of the SFP/XFP in 1000s of degrees Celsius that triggers a hi-alarm.
A value of -200000 indicates this object is not applicable."
::= { ddmInfoEntry 5 }
ddmSupplyVoltage OBJECT-TYPE
SYNTAX Integer32 (-200000 | 0..10000)
UNITS "thousandth of a volt"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmSupplyVoltage indicates the current supply
voltage of the SFP/XFP in 1000s of Volts (V).
A value of -200000 indicates this object is not applicable."
::= { ddmInfoEntry 6 }
ddmSupplyVoltageLowWarning OBJECT-TYPE
SYNTAX Integer32 (-200000 | 0..10000)
UNITS "thousandth of a volt"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmSupplyVoltageLowWarning indicates the supply
voltage of the SFP/XFP in 1000s of Volts (V) that triggers a low-warning.
A value of -200000 indicates this object is not applicable."
::= { ddmInfoEntry 7 }
ddmSupplyVoltageLowAlarm OBJECT-TYPE
SYNTAX Integer32 (-200000 | 0..10000)
UNITS "thousandth of a volt"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmSupplyVoltageLowAlarm indicates the supply
voltage of the SFP/XFP in 1000s of Volts (V) that triggers a low-alarm.
A value of -200000 indicates this object is not applicable."
::= { ddmInfoEntry 8 }
ddmSupplyVoltageHiWarning OBJECT-TYPE
SYNTAX Integer32 (-200000 | 0..10000)
UNITS "thousandth of a volt"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmSupplyVoltageHiWarning indicates the supply
voltage of the SFP/XFP in 1000s of Volts (V) that triggers a hi-warning.
A value of -200000 indicates this object is not applicable."
::= { ddmInfoEntry 9 }
ddmSupplyVoltageHiAlarm OBJECT-TYPE
SYNTAX Integer32 (-200000 | 0..10000)
UNITS "thousandth of a volt"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmSupplyVoltageHiAlarm indicates the supply
voltage of the SFP/XFP in 1000s of Volts (V) that triggers a hi-alarm.
A value of -200000 indicates this object is not applicable."
::= { ddmInfoEntry 10 }
ddmTxBiasCurrent OBJECT-TYPE
SYNTAX Integer32 (-200000 | 0..10000)
UNITS "thousandth of a milli-Ampere"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTxBiasCurrent indicates the current Transmit
Bias Current of the SFP/XFP in 1000s of milli-Amperes (mA).
A value of -200000 indicates this object is not applicable."
::= { ddmInfoEntry 11 }
ddmTxBiasCurrentLowWarning OBJECT-TYPE
SYNTAX Integer32 (-200000 | 0..10000)
UNITS "thousandth of a milli-Ampere"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTxBiasCurrentLowWarning indicates the Transmit
Bias Current of the SFP/XFP in 1000s of milli-Amperes (mA) that triggers a
low-warning.
A value of -200000 indicates this object is not applicable."
::= { ddmInfoEntry 12 }
ddmTxBiasCurrentLowAlarm OBJECT-TYPE
SYNTAX Integer32 (-200000 | 0..10000)
UNITS "thousandth of a milli-Ampere"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTxBiasCurrentLowAlarm indicates the Transmit
Bias Current of the SFP/XFP in 1000s of milli-Amperes (mA) that triggers a
low-alarm.
A value of -200000 indicates this object is not applicable."
::= { ddmInfoEntry 13 }
ddmTxBiasCurrentHiWarning OBJECT-TYPE
SYNTAX Integer32 (-200000 | 0..10000)
UNITS "thousandth of a milli-Ampere"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTxBiasCurrentHiWarning indicates the Transmit
Bias Current of the SFP/XFP in 1000s milli-Amperes (mA) that triggers a
hi-warning.
A value of -200000 indicates this object is not applicable."
::= { ddmInfoEntry 14 }
ddmTxBiasCurrentHiAlarm OBJECT-TYPE
SYNTAX Integer32 (-200000 | 0..10000)
UNITS "thousandth of a milli-Ampere"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTxBiasCurrentHiAlarm indicates the Transmit
Bias Current of the SFP/XFP in 1000s milli-Amperes (mA) that triggers a
hi-alarm.
A value of -200000 indicates this object is not applicable."
::= { ddmInfoEntry 15 }
ddmTxOutputPower OBJECT-TYPE
SYNTAX Integer32 (-200000 | -40000..10000)
UNITS "thousandth of a dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTxOutputPower indicates the current Output
Power of the SFP/XFP in 1000s of dBm.
A value of -200000 indicates this object is not applicable."
::= { ddmInfoEntry 16 }
ddmTxOutputPowerLowWarning OBJECT-TYPE
SYNTAX Integer32 (-200000 | -40000..10000)
UNITS "thousandth of a dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTxOutputPowerLowWarning indicates the Output Power
of the SFP/XFP in 1000s of dBm that triggers a low-warning.
A value of -200000 indicates this object is not applicable."
::= { ddmInfoEntry 17 }
ddmTxOutputPowerLowAlarm OBJECT-TYPE
SYNTAX Integer32 (-200000 | -40000..10000)
UNITS "thousandth of a dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTxOutputPowerLowAlarm indicates the Output Power
of the SFP/XFP in 1000s of dBm that triggers a low-alarm.
A value of -200000 indicates this object is not applicable."
::= { ddmInfoEntry 18 }
ddmTxOutputPowerHiWarning OBJECT-TYPE
SYNTAX Integer32 (-200000 | -40000..10000)
UNITS "thousandth of a dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTxOutputPowerHiWarning indicates the Output Power
of the SFP/XFP in 1000s of dBm that triggers a hi-alarm.
A value of -200000 indicates this object is not applicable."
::= { ddmInfoEntry 19 }
ddmTxOutputPowerHiAlarm OBJECT-TYPE
SYNTAX Integer32 (-200000 | -40000..10000)
UNITS "thousandth of a dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTxOutputPowerHiAlarm indicates the Output Power
of the SFP/XFP in 1000s of dBm that triggers a hi-alarm.
A value of -200000 indicates this object is not applicable."
::= { ddmInfoEntry 20 }
ddmRxOpticalPower OBJECT-TYPE
SYNTAX Integer32 (-200000 | -40000..10000)
UNITS "thousandth of a dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmRxOpticalPower indicates the current Received
Optical Power of the SFP/XFP in 1000s of dBm.
A value of -200000 indicates this object is not applicable."
::= { ddmInfoEntry 21 }
ddmRxOpticalPowerLowWarning OBJECT-TYPE
SYNTAX Integer32 (-200000 | -40000..10000)
UNITS "thousandth of a dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmRxOpticalPowerLowWarning indicates the Received
Optical Power of the SFP/XFP in 1000s of dBm that triggers a
low-warning.
A value of -200000 indicates this object is not applicable."
::= { ddmInfoEntry 22 }
ddmRxOpticalPowerLowAlarm OBJECT-TYPE
SYNTAX Integer32 (-200000 | -40000..10000)
UNITS "thousandth of a dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmRxOpticalPowerLowAlarm indicates the Received
Optical Power of the SFP/XFP in 1000s of dBm that triggers a
low-alarm.
A value of -200000 indicates this object is not applicable."
::= { ddmInfoEntry 23 }
ddmRxOpticalPowerHiWarning OBJECT-TYPE
SYNTAX Integer32 (-200000 | -40000..10000)
UNITS "thousandth of a dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmRxOpticalPowerHiWarning indicates the Received
Optical Power of the SFP/XFP in 1000s of dBm that triggers a
hi-warning.
A value of -200000 indicates this object is not applicable."
::= { ddmInfoEntry 24 }
ddmRxOpticalPowerHiAlarm OBJECT-TYPE
SYNTAX Integer32 (-200000 | -40000..10000)
UNITS "thousandth of a dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmRxOpticalPowerHiAlarm indicates the Received
Optical Power of the SFP/XFP in 1000s of dBm that triggers a
hi-alarm.
A value of -200000 indicates this object is not applicable."
::= { ddmInfoEntry 25 }
ddmPortInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF DdmPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ddmPortInfoTable has an entry for each SFP/XFP in the
system that supports Digital Diagnostic Monitoring (DDM). The table is
indexed by ifIndex and port channel. Each row in this table is
dynamically added
and removed internally by the system based on the presence or absence
of DDM capable SFP/XFP components."
::= { physicalPort 6 }
ddmPortInfoEntry OBJECT-TYPE
SYNTAX DdmPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row represents a particular SFP/XFP that supports Digital
Diagnostic Monitoring.
Entries are created and deleted internally by the system."
INDEX { ifIndex,
ddmPortChannel }
::= { ddmPortInfoTable 1}
DdmPortEntry ::= SEQUENCE
{
ddmPortChannel Integer32,
ddmPortTemperature Integer32,
ddmPortTempLowWarning Integer32,
ddmPortTempLowAlarm Integer32,
ddmPortTempHiWarning Integer32,
ddmPortTempHiAlarm Integer32,
ddmPortSupplyVoltage Integer32,
ddmPortSupplyVoltageLowWarning Integer32,
ddmPortSupplyVoltageLowAlarm Integer32,
ddmPortSupplyVoltageHiWarning Integer32,
ddmPortSupplyVoltageHiAlarm Integer32,
ddmPortTxBiasCurrent Integer32,
ddmPortTxBiasCurrentLowWarning Integer32,
ddmPortTxBiasCurrentLowAlarm Integer32,
ddmPortTxBiasCurrentHiWarning Integer32,
ddmPortTxBiasCurrentHiAlarm Integer32,
ddmPortTxOutputPower Integer32,
ddmPortTxOutputPowerLowWarning Integer32,
ddmPortTxOutputPowerLowAlarm Integer32,
ddmPortTxOutputPowerHiWarning Integer32,
ddmPortTxOutputPowerHiAlarm Integer32,
ddmPortRxOpticalPower Integer32,
ddmPortRxOpticalPowerLowWarning Integer32,
ddmPortRxOpticalPowerLowAlarm Integer32,
ddmPortRxOpticalPowerHiWarning Integer32,
ddmPortRxOpticalPowerHiAlarm Integer32
}
ddmPortChannel OBJECT-TYPE
SYNTAX Integer32 (1..4)
UNITS "QSFP/SFP channel number"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The channel number of the data that is being read. In the case
of a QSFP there will be 4 10 gigabyte channels, for SFP/XFP there
will only be one."
::= { ddmPortInfoEntry 1 }
ddmPortTemperature OBJECT-TYPE
SYNTAX Integer32 (-200000 | -150000..150000)
UNITS "thousandth of a degree celcius"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTemperature indicates the current temperature
of the SFP/XFP in 1000s of degrees Celsius.
A value of -200000 indicates this object is not applicable."
::= { ddmPortInfoEntry 2 }
ddmPortTempLowWarning OBJECT-TYPE
SYNTAX Integer32 (-200000 | -150000..150000)
UNITS "thousandth of a degree celcius"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTempLowWarning indicates the temperature
of the SFP/XFP in 1000s of degrees Celsius that triggers a low-warning.
A value of -200000 indicates this object is not applicable."
::= { ddmPortInfoEntry 3 }
ddmPortTempLowAlarm OBJECT-TYPE
SYNTAX Integer32 (-200000 | -150000..150000)
UNITS "thousandth of a degree celcius"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTempLowAlarm indicates the temperature
of the SFP/XFP in 1000s of degrees Celsius that triggers a low-alarm.
A value of -200000 indicates this object is not applicable."
::= { ddmPortInfoEntry 4 }
ddmPortTempHiWarning OBJECT-TYPE
SYNTAX Integer32 (-200000 | -150000..150000)
UNITS "thousandth of a degree celcius"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTempHiWarning indicates the temperature
of the SFP/XFP in 1000s of degrees Celsius that triggers a hi-warning.
A value of -200000 indicates this object is not applicable."
::= { ddmPortInfoEntry 5 }
ddmPortTempHiAlarm OBJECT-TYPE
SYNTAX Integer32 (-200000 | -150000..150000)
UNITS "thousandth of a degree celcius"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTempHiAlarm indicates the temperature
of the SFP/XFP in 1000s of degrees Celsius that triggers a hi-alarm.
A value of -200000 indicates this object is not applicable."
::= { ddmPortInfoEntry 6 }
ddmPortSupplyVoltage OBJECT-TYPE
SYNTAX Integer32 (-200000 | 0..10000)
UNITS "thousandth of a volt"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmSupplyVoltage indicates the current supply
voltage of the SFP/XFP in 1000s of Volts (V).
A value of -200000 indicates this object is not applicable."
::= { ddmPortInfoEntry 7 }
ddmPortSupplyVoltageLowWarning OBJECT-TYPE
SYNTAX Integer32 (-200000 | 0..10000)
UNITS "thousandth of a volt"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmSupplyVoltageLowWarning indicates the supply
voltage of the SFP/XFP in 1000s of Volts (V) that triggers a low-warning.
A value of -200000 indicates this object is not applicable."
::= { ddmPortInfoEntry 8 }
ddmPortSupplyVoltageLowAlarm OBJECT-TYPE
SYNTAX Integer32 (-200000 | 0..10000)
UNITS "thousandth of a volt"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmSupplyVoltageLowAlarm indicates the supply
voltage of the SFP/XFP in 1000s of Volts (V) that triggers a low-alarm.
A value of -200000 indicates this object is not applicable."
::= { ddmPortInfoEntry 9 }
ddmPortSupplyVoltageHiWarning OBJECT-TYPE
SYNTAX Integer32 (-200000 | 0..10000)
UNITS "thousandth of a volt"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmSupplyVoltageHiWarning indicates the supply
voltage of the SFP/XFP in 1000s of Volts (V) that triggers a hi-warning.
A value of -200000 indicates this object is not applicable."
::= { ddmPortInfoEntry 10 }
ddmPortSupplyVoltageHiAlarm OBJECT-TYPE
SYNTAX Integer32 (-200000 | 0..10000)
UNITS "thousandth of a volt"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmSupplyVoltageHiAlarm indicates the supply
voltage of the SFP/XFP in 1000s of Volts (V) that triggers a hi-alarm.
A value of -200000 indicates this object is not applicable."
::= { ddmPortInfoEntry 11 }
ddmPortTxBiasCurrent OBJECT-TYPE
SYNTAX Integer32 (-200000 | 0..10000)
UNITS "thousandth of a milli-Ampere"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTxBiasCurrent indicates the current Transmit
Bias Current of the SFP/XFP in 1000s of milli-Amperes (mA).
A value of -200000 indicates this object is not applicable."
::= { ddmPortInfoEntry 12 }
ddmPortTxBiasCurrentLowWarning OBJECT-TYPE
SYNTAX Integer32 (-200000 | 0..10000)
UNITS "thousandth of a milli-Ampere"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTxBiasCurrentLowWarning indicates the Transmit
Bias Current of the SFP/XFP in 1000s of milli-Amperes (mA) that triggers a
low-warning.
A value of -200000 indicates this object is not applicable."
::= { ddmPortInfoEntry 13 }
ddmPortTxBiasCurrentLowAlarm OBJECT-TYPE
SYNTAX Integer32 (-200000 | 0..10000)
UNITS "thousandth of a milli-Ampere"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTxBiasCurrentLowAlarm indicates the Transmit
Bias Current of the SFP/XFP in 1000s of milli-Amperes (mA) that triggers a
low-alarm.
A value of -200000 indicates this object is not applicable."
::= { ddmPortInfoEntry 14 }
ddmPortTxBiasCurrentHiWarning OBJECT-TYPE
SYNTAX Integer32 (-200000 | 0..10000)
UNITS "thousandth of a milli-Ampere"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTxBiasCurrentHiWarning indicates the Transmit
Bias Current of the SFP/XFP in 1000s milli-Amperes (mA) that triggers a
hi-warning.
A value of -200000 indicates this object is not applicable."
::= { ddmPortInfoEntry 15 }
ddmPortTxBiasCurrentHiAlarm OBJECT-TYPE
SYNTAX Integer32 (-200000 | 0..10000)
UNITS "thousandth of a milli-Ampere"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTxBiasCurrentHiAlarm indicates the Transmit
Bias Current of the SFP/XFP in 1000s milli-Amperes (mA) that triggers a
hi-alarm.
A value of -200000 indicates this object is not applicable."
::= { ddmPortInfoEntry 16 }
ddmPortTxOutputPower OBJECT-TYPE
SYNTAX Integer32 (-200000 | -40000..10000)
UNITS "thousandth of a dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTxOutputPower indicates the current Output
Power of the SFP/XFP in 1000s of dBm.
A value of -200000 indicates this object is not applicable."
::= { ddmPortInfoEntry 17 }
ddmPortTxOutputPowerLowWarning OBJECT-TYPE
SYNTAX Integer32 (-200000 | -40000..10000)
UNITS "thousandth of a dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTxOutputPowerLowWarning indicates the Output Power
of the SFP/XFP in 1000s of dBm that triggers a low-warning.
A value of -200000 indicates this object is not applicable."
::= { ddmPortInfoEntry 18 }
ddmPortTxOutputPowerLowAlarm OBJECT-TYPE
SYNTAX Integer32 (-200000 | -40000..10000)
UNITS "thousandth of a dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTxOutputPowerLowAlarm indicates the Output Power
of the SFP/XFP in 1000s of dBm that triggers a low-alarm.
A value of -200000 indicates this object is not applicable."
::= { ddmPortInfoEntry 19 }
ddmPortTxOutputPowerHiWarning OBJECT-TYPE
SYNTAX Integer32 (-200000 | -40000..10000)
UNITS "thousandth of a dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTxOutputPowerHiWarning indicates the Output Power
of the SFP/XFP in 1000s of dBm that triggers a hi-alarm.
A value of -200000 indicates this object is not applicable."
::= { ddmPortInfoEntry 20 }
ddmPortTxOutputPowerHiAlarm OBJECT-TYPE
SYNTAX Integer32 (-200000 | -40000..10000)
UNITS "thousandth of a dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmTxOutputPowerHiAlarm indicates the Output Power
of the SFP/XFP in 1000s of dBm that triggers a hi-alarm.
A value of -200000 indicates this object is not applicable."
::= { ddmPortInfoEntry 21 }
ddmPortRxOpticalPower OBJECT-TYPE
SYNTAX Integer32 (-200000 | -40000..10000)
UNITS "thousandth of a dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmRxOpticalPower indicates the current Received
Optical Power of the SFP/XFP in 1000s of dBm.
A value of -200000 indicates this object is not applicable."
::= { ddmPortInfoEntry 22 }
ddmPortRxOpticalPowerLowWarning OBJECT-TYPE
SYNTAX Integer32 (-200000 | -40000..10000)
UNITS "thousandth of a dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmRxOpticalPowerLowWarning indicates the Received
Optical Power of the SFP/XFP in 1000s of dBm that triggers a
low-warning.
A value of -200000 indicates this object is not applicable."
::= { ddmPortInfoEntry 23 }
ddmPortRxOpticalPowerLowAlarm OBJECT-TYPE
SYNTAX Integer32 (-200000 | -40000..10000)
UNITS "thousandth of a dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmRxOpticalPowerLowAlarm indicates the Received
Optical Power of the SFP/XFP in 1000s of dBm that triggers a
low-alarm.
A value of -200000 indicates this object is not applicable."
::= { ddmPortInfoEntry 24 }
ddmPortRxOpticalPowerHiWarning OBJECT-TYPE
SYNTAX Integer32 (-200000 | -40000..10000)
UNITS "thousandth of a dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmRxOpticalPowerHiWarning indicates the Received
Optical Power of the SFP/XFP in 1000s of dBm that triggers a
hi-warning.
A value of -200000 indicates this object is not applicable."
::= { ddmPortInfoEntry 25 }
ddmPortRxOpticalPowerHiAlarm OBJECT-TYPE
SYNTAX Integer32 (-200000 | -40000..10000)
UNITS "thousandth of a dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of ddmRxOpticalPowerHiAlarm indicates the Received
Optical Power of the SFP/XFP in 1000s of dBm that triggers a
hi-alarm.
A value of -200000 indicates this object is not applicable."
::= { ddmPortInfoEntry 26 }
-- The Fiber Channel Statistics Group
--
-- The fiber channel statistics group contains statistics
-- measured by the probe for each monitored interface on
-- this device. These statistics take the form of free
-- running counters that start from zero when a valid entry
-- is created.
--
-- This group currently has statistics defined only for
-- Fiber Channel interfaces. Each alcfcStatsEntry contains
-- statistics for one Fiber Channel interface. The probe must
-- create one alcfcStats entry for each monitored Fiber Channel
-- interface on the device.
alcfcStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlcfcStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of Fiber Channel statistics entries."
::= { physicalPort 7 }
alcfcStatsEntry OBJECT-TYPE
SYNTAX AlcfcStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A collection of statistics kept for a particular
Fiber Channel interface. As an example, an instance of the
fcStatsPkts object might be named alcfcStatsPkts.1"
INDEX { ifIndex }
::= { alcfcStatsTable 1 }
AlcfcStatsEntry ::= SEQUENCE {
alcfcClearStats INTEGER,
alcfcLastClearStats TimeTicks,
alcfcStatsRxUndersizePkts Counter64,
alcfcStatsTxBBCreditZeros Counter64,
alcfcStatsRxBBCreditZeros Counter64,
alcfcStatsLinkFailures Counter64,
alcfcStatsLossofSynchs Counter64,
alcfcStatsLossofSignals Counter64,
alcfcStatsPrimSeqProtocolErrors Counter64,
alcfcStatsInvalidTxWords Counter64,
alcfcStatsInvalidCRCs Counter64,
alcfcStatsInvalidOrderedSets Counter64,
alcfcStatsFrameTooLongs Counter64,
alcfcStatsDelimiterErrors Counter64,
alcfcStatsEncodingDisparityErrors Counter64,
alcfcStatsOtherErrors Counter64
}
alcfcClearStats OBJECT-TYPE
SYNTAX INTEGER
{ default(0),
reset(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Used to Clear all Statistics counters.
By default, this object contains zero value."
::= { alcfcStatsEntry 1 }
alcfcLastClearStats OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of SysUpTime at the time of all
the statistics counters are cleared.
By default, this object contains a zero value."
::= { alcfcStatsEntry 2 }
alcfcStatsRxUndersizePkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received that were
less than 36 octets long (excluding framing bits,
but including FCS octets) and were otherwise well
formed."
::= { alcfcStatsEntry 3 }
alcfcStatsTxBBCreditZeros OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of transitions in/out of the buffer-to-buffer
credit zero state."
::= { alcfcStatsEntry 6 }
alcfcStatsRxBBCreditZeros OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times RX BBCredit drops to zero."
::= { alcfcStatsEntry 7 }
alcfcStatsLinkFailures OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of link failures."
::= { alcfcStatsEntry 8 }
alcfcStatsLossofSynchs OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of loss of word-sync detected."
::= { alcfcStatsEntry 9 }
alcfcStatsLossofSignals OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of loss of signals detected."
::= { alcfcStatsEntry 10 }
alcfcStatsPrimSeqProtocolErrors OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of primitive sequence protocol errors detected."
::= { alcfcStatsEntry 11 }
alcfcStatsInvalidTxWords OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of invalid transmission words. This includes
invalid ordered sets and invalid data words."
::= { alcfcStatsEntry 12 }
alcfcStatsInvalidCRCs OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of frames received with an invalid CRC."
::= { alcfcStatsEntry 13 }
alcfcStatsInvalidOrderedSets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of invalid ordered sets received at this port."
::= { alcfcStatsEntry 14 }
alcfcStatsFrameTooLongs OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of frames received at this port for which the
frame length was greater than what was agreed to in
FLOGI/PLOGI."
::= { alcfcStatsEntry 15 }
alcfcStatsDelimiterErrors OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of invalid delimiters received"
::= { alcfcStatsEntry 16 }
alcfcStatsEncodingDisparityErrors OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of detected running disparity at 10b/8b level."
::= { alcfcStatsEntry 17 }
alcfcStatsOtherErrors OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of errors detected but not counted by any other
error counter. This only includes RX frames drops due to zero
RX BBCredits"
::= { alcfcStatsEntry 18 }
-- Ethernet Driver Trap *********************
esmDrvTrapDropsLink NOTIFICATION-TYPE
OBJECTS {
esmPortSlot,
esmPortIF,
ifInErrors,
ifOutErrors,
esmDrvTrapDrops
}
STATUS current
DESCRIPTION
"When the Ethernet code drops the link because of
excessive errors, a Trap is sent."
::= { alcatelIND1PortNotifications 1 }
-- DDM TRAPS ****************************
ddmTemperatureThresholdViolated NOTIFICATION-TYPE
OBJECTS {
ifIndex,
ddmNotificationType,
ddmTemperature
}
STATUS current
DESCRIPTION
"This object notifies management station if an SFP/XFP/SFP+ temperature has crossed any
threshold or reverted from previous threshold violation for a port represented by ifIndex.
It also provides the current realtime value of SFP/XFP/SFP+ temperature."
::= { alcatelIND1PortNotifications 2 }
ddmVoltageThresholdViolated NOTIFICATION-TYPE
OBJECTS {
ifIndex,
ddmNotificationType,
ddmSupplyVoltage
}
STATUS current
DESCRIPTION
"This object notifies management station if an SFP/XFP/SFP+ supply voltage has crossed any
threshold or reverted from previous threshold violation for a port represented by ifIndex.
It also provides the current realtime value of SFP/XFP/SFP+ supply voltage."
::= { alcatelIND1PortNotifications 3 }
ddmCurrentThresholdViolated NOTIFICATION-TYPE
OBJECTS {
ifIndex,
ddmNotificationType,
ddmTxBiasCurrent
}
STATUS current
DESCRIPTION
"This object notifies management station if an SFP/XFP/SFP+ Tx bias current has crossed any
threshold or reverted from previous threshold violation for a port represented by ifIndex.
It also provides the current realtime value of SFP/XFP/SFP+ Tx bias current."
::= { alcatelIND1PortNotifications 4 }
ddmTxPowerThresholdViolated NOTIFICATION-TYPE
OBJECTS {
ifIndex,
ddmNotificationType,
ddmTxOutputPower
}
STATUS current
DESCRIPTION
"This object notifies management station if an SFP/XFP/SFP+ Tx output power has crossed any
threshold or reverted from previous threshold violation for a port represented by ifIndex.
It also provides the current realtime value of SFP/XFP/SFP+ Tx output power."
::= { alcatelIND1PortNotifications 5 }
ddmRxPowerThresholdViolated NOTIFICATION-TYPE
OBJECTS {
ifIndex,
ddmNotificationType,
ddmRxOpticalPower
}
STATUS current
DESCRIPTION
"This object notifies management station if an SFP/XFP/SFP+ Rx optical power has crossed any
threshold or reverted from previous threshold violation for a port represented by ifIndex.
It also provides the current realtime value of SFP/XFP/SFP+ Rx optical power."
::= { alcatelIND1PortNotifications 6 }
--
-- The Port Violation Table shows if the table has any violations set
--
portViolationTable OBJECT-TYPE
SYNTAX SEQUENCE OF PortViolationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the port Violations per port."
::= { portViolations 1 }
portViolationEntry OBJECT-TYPE
SYNTAX PortViolationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Port Violation Entry. The entries in this table are indexed
by 3 units,
1. ifIndex of the port for which the violation is set
2. source of the violation, the feature or module
3. reason for the violation (sub reason under each source)."
INDEX { portViolationIfIndex, portViolationSource, portViolationReason }
::= { portViolationTable 1 }
PortViolationEntry ::= SEQUENCE {
portViolationIfIndex InterfaceIndex,
portViolationSource INTEGER,
portViolationReason INTEGER,
portViolationAction INTEGER,
portViolationTimer TimeTicks,
portViolationTimerAction INTEGER,
portViolationClearPort INTEGER,
portViolationCfgRecoveryMax Integer32,
portViolationCfgRetryTime Integer32,
portViolationRetryRemain Integer32
}
portViolationIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IfIndex of the port that has a violation."
::= { portViolationEntry 1 }
portViolationSource OBJECT-TYPE
SYNTAX INTEGER {
ag (1),
qos (2),
netsec (3),
udld (4),
nisup (5),
oam (6),
lfp(8),
lm(9),
lbd(10),
spb(11),
storm(12),
stormuucast(13),
lldp(14)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the source of the port violation.
The source is the feature or module that has
caused the violation. The list is given below
1. Initiated by Access Guardian
2. Initiated by QOS Policy
3. Initiated by Net Sec
4. Initiated by UDLD
5. Initiated by NI supervison (Fabric Stability).
6. initiated by OAM
8. initiated by LFP
9. initiated by Link Monitor
10. initiated by LBD
11. initiated by SPB
12. initiated by ESM
13. initiated by ESM
14. initiated by LLDP
When there is no value the value of this will be 0"
::= { portViolationEntry 2 }
portViolationReason OBJECT-TYPE
SYNTAX INTEGER {
pvSLLpsShutDown(1),
pvSLLpsRestrict(2),
pvQosPolicy(3),
pvQosSpoofed(4),
pvQosBpdu(5),
pvQosBgp(6),
pvQosOspf(7),
pvQosRip(8),
pvQosVrrp(9),
pvQosDhcp(10),
pvQosPim(11),
pvQosIsis(12),
pvQosDnsReply(13),
pvUdld(14),
pvOamRfp(15),
pvAgLpsDiscard(16),
pvLfpShutDown(17),
pvLmThreshold(18),
pvLbd(19),
pvQosDvmrp(20),
pvSpbRfp(21),
pvEsmStorm(22),
pvEsmStormUucast(23),
pvLldpShutDown(24),
pvRemoteLbd(25)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Reason for the port violation. This will be application
specific. The Reason indicate the violation for the 1st Violation
that happened on this port."
::= { portViolationEntry 3 }
portViolationAction OBJECT-TYPE
SYNTAX INTEGER {
portDown (1),
portAdminDown(2),
portTimerDown (3),
portTimerAdminDown (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The action determines on violation, what action will
taken. Either the port would be shutdown or Admin Down
or wait for the timer to expire and the timerAction
will determine what needs to be done. "
::= { portViolationEntry 4 }
portViolationTimer OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If any timer is associated with the violation
This is Zero if no timer is associated."
::= { portViolationEntry 5 }
portViolationTimerAction OBJECT-TYPE
SYNTAX INTEGER {
portNoTimerAction(0),
portDownAfterTimer (1),
portUpAfterTimer(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Timer related action.
If set to portDownAfterTimer, no operation will be performed on
the port and the port will be shutdown after timer expiry.
If set to portUpAfterTimer the port will be shutdown immediately
and after the timer expiry the port will brought up.."
::= { portViolationEntry 6 }
portViolationClearPort OBJECT-TYPE
SYNTAX INTEGER {
inactive(0),
set(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When this MIB object is set all violation on the
given port will be cleared. The Indices portViolationSource and
portViolationReason should be set to 0"
::= { portViolationEntry 7 }
portViolationCfgRecoveryMax OBJECT-TYPE
SYNTAX Integer32 (-1..50)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum attempts for auto-recovery as configured for the ifindex in alaPvrRecoveryMax.
Value 0 means auto recovery is disabled for this port.
Value -1 means auto recovery will retry infinitely.
"
::= { portViolationEntry 8 }
portViolationCfgRetryTime OBJECT-TYPE
SYNTAX Integer32 (30..600)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time (in seconds) between auto-recovery attempts as configured for the ifindex in alaPvrRetryTime.
"
::= { portViolationEntry 9 }
portViolationRetryRemain OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of remaining auto-recovery attempts.
Value -1 means there are infinite retries remaining.
"
::= { portViolationEntry 10 }
alaLinkMonConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlaLinkMonConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of Link Monitoring Configuration Parameters"
::= { portViolations 2 }
alaLinkMonConfigEntry OBJECT-TYPE
SYNTAX AlaLinkMonConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A collection of Link Monitoring configurations kept for a particular
Ethernet interface."
INDEX { ifIndex }
::= { alaLinkMonConfigTable 1 }
AlaLinkMonConfigEntry ::= SEQUENCE {
alaLinkMonStatus INTEGER,
alaLinkMonTimeWindow Integer32,
alaLinkMonLinkFlapThreshold Integer32,
alaLinkMonLinkErrorThreshold Integer32,
alaLinkMonWaitToRestoreTimer Integer32,
alaLinkMonWaitToShutdownTimer Integer32
}
alaLinkMonStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Allows the user to enable or disable Link Monitoring on the port."
DEFVAL { disable }
::= { alaLinkMonConfigEntry 1}
alaLinkMonTimeWindow OBJECT-TYPE
SYNTAX Integer32(10..3600)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the number of seconds the Link will be monitored for a port."
DEFVAL { 300 }
::= { alaLinkMonConfigEntry 2}
alaLinkMonLinkFlapThreshold OBJECT-TYPE
SYNTAX Integer32(2..10)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicaes the number of link flaps allowed for the specified port during the time window before the port is shutdown."
DEFVAL { 5 }
::= { alaLinkMonConfigEntry 3}
alaLinkMonLinkErrorThreshold OBJECT-TYPE
SYNTAX Integer32(1..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the number of link errors allowed on Rx for the specified port during the time window before the port is shutdown. The errors are the MAC errors that include CRC, lost frames, error frames, alignment frames."
DEFVAL { 5 }
::= { alaLinkMonConfigEntry 4 }
alaLinkMonWaitToRestoreTimer OBJECT-TYPE
SYNTAX Integer32(0..300)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the number of seconds after which the link up event is notified to other applications. The timer is started whenever a Link Up is detected on a port being monitored."
DEFVAL { 0 }
::= { alaLinkMonConfigEntry 5 }
alaLinkMonWaitToShutdownTimer OBJECT-TYPE
SYNTAX Integer32(0..3000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the number of milli seconds after which the link down event is notified to other applications. The timer is started whenever a Link down is detected on a port being monitored."
DEFVAL { 0 }
::= { alaLinkMonConfigEntry 6 }
alaLinkMonStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlaLinkMonStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of Link Monitoring Statistics"
::= { portViolations 3 }
alaLinkMonStatsEntry OBJECT-TYPE
SYNTAX AlaLinkMonStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A collection of Link Monitoring statistics for a particular Ethernet interface."
INDEX { ifIndex }
::= { alaLinkMonStatsTable 1 }
AlaLinkMonStatsEntry ::= SEQUENCE {
alaLinkMonStatsClearStats INTEGER,
alaLinkMonStatsPortState INTEGER,
alaLinkMonStatsCurrentLinkFlaps Counter64,
alaLinkMonStatsCurrentErrorFrames Counter64,
alaLinkMonStatsCurrentCRCErrors Counter64,
alaLinkMonStatsCurrentLostFrames Counter64,
alaLinkMonStatsCurrentAlignErrors Counter64,
alaLinkMonStatsCurrentLinkErrors Counter64,
alaLinkMonStatsTotalLinkFlaps Counter64,
alaLinkMonStatsTotalLinkErrors Counter64
}
alaLinkMonStatsClearStats OBJECT-TYPE
SYNTAX INTEGER {
default(1),
reset(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Used to Clear all Statistics counters.
The value reset (1) indicates that Link Monitoring shuold all statistic counters related to the particular port.
By default, this object contains zero value."
DEFVAL {default}
::= { alaLinkMonStatsEntry 1 }
alaLinkMonStatsPortState OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2),
shutdown(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the status of the port.
up(1) means the port is physically up,
down(2) means the port is physically down,
shutdown(3) means the interface is shutdown because of excessive link flaps or link errors."
::= { alaLinkMonStatsEntry 2 }
alaLinkMonStatsCurrentLinkFlaps OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of Link flaps in the current time window."
::= { alaLinkMonStatsEntry 3 }
alaLinkMonStatsCurrentErrorFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of error frames in the current time window."
::= { alaLinkMonStatsEntry 4 }
alaLinkMonStatsCurrentCRCErrors OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of CRC errors in the current time window."
::= { alaLinkMonStatsEntry 5 }
alaLinkMonStatsCurrentLostFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of Rx Lost frames in the current time window."
::= { alaLinkMonStatsEntry 6 }
alaLinkMonStatsCurrentAlignErrors OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of Rx alignment frames in the current time window."
::= { alaLinkMonStatsEntry 7 }
alaLinkMonStatsCurrentLinkErrors OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the sum of all the MAC Errors within the current time window.
i.e., the sum of alaLinkMonStatsCurrentErrorFrames, alaLinkMonStatsCurrentCRCErrors,
alaLinkMonCurrentLosFrames, alaLinkMonStatsCurrentAlignErrors."
::= { alaLinkMonStatsEntry 8 }
alaLinkMonStatsTotalLinkFlaps OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the total number of link flaps across all the time windows."
::= { alaLinkMonStatsEntry 9 }
alaLinkMonStatsTotalLinkErrors OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the total number of link errors across all the time windows."
::= { alaLinkMonStatsEntry 10 }
alaLFPGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlaLFPGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of Link Fault Propagation Grooups and their status"
::= { portViolations 4 }
alaLFPGroupEntry OBJECT-TYPE
SYNTAX AlaLFPGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The list of Link Fault Propagation group id and status for each group"
INDEX { alaLFPGroupId }
::= { alaLFPGroupTable 1 }
AlaLFPGroupEntry ::= SEQUENCE
{
alaLFPGroupId Integer32,
alaLFPGroupAdminStatus INTEGER,
alaLFPGroupOperStatus INTEGER,
alaLFPGroupWaitToShutdown Integer32,
alaLFPGroupRowStatus RowStatus
}
alaLFPGroupId OBJECT-TYPE
SYNTAX Integer32(1 .. 8 )
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Indicates the unique group id for Link Fault Propagation (LFP)."
::= { alaLFPGroupEntry 1 }
alaLFPGroupAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the admin status of the group. disable(2) means link fault propagation,
is disbaled. enable(1) means link fault propagation is enabled"
DEFVAL { disable }
::= { alaLFPGroupEntry 2 }
alaLFPGroupOperStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the operational status of the group. down(2) means all the source ports are down,
up(1) means atleast one source port in the group is up."
::= { alaLFPGroupEntry 3 }
alaLFPGroupWaitToShutdown OBJECT-TYPE
SYNTAX Integer32(0 .. 300)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"0 - Disable wait to shutdown timer
5 - 300 - after expiry of this timer all destination ports will be shutdown"
DEFVAL { 0 }
::= { alaLFPGroupEntry 4 }
alaLFPGroupRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Row Status for initiating a MIB retrieval request."
::= { alaLFPGroupEntry 5 }
alaLFPConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlaLFPConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of Link Fault Propagation port and port type of each LFP group"
::= { portViolations 5 }
alaLFPConfigEntry OBJECT-TYPE
SYNTAX AlaLFPConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of Link Fault Propagation port and port type of each LFP group"
INDEX { alaLFPGroupId, alaLFPConfigPort }
::= { alaLFPConfigTable 1 }
AlaLFPConfigEntry ::= SEQUENCE {
alaLFPConfigPort InterfaceIndex,
alaLFPConfigPortType INTEGER,
alaLFPConfigRowStatus RowStatus
}
alaLFPConfigPort OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Indicates ifindex of source/destination port for a LFP Group."
::= { alaLFPConfigEntry 1 }
alaLFPConfigPortType OBJECT-TYPE
SYNTAX INTEGER {
destination (1),
source (2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the type of port, (1) means the port is destination port and
(2) means the port is a destination port for a LFP Group."
::= { alaLFPConfigEntry 2 }
alaLFPConfigRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Row Status for initiating a MIB retrieval request."
::= { alaLFPConfigEntry 3 }
alaPvrGlobalConfigObjects OBJECT IDENTIFIER ::= { portViolations 6 }
alaPvrGlobalRecoveryMax OBJECT-TYPE
SYNTAX Integer32 (-1..50)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Auto violation recovery maximum attempts.
Value 0 means auto recovery is disabled for any ports using this global value.
Value -1 means auto recovery will retry infinitely for any ports using this global value.
"
DEFVAL { 10 }
::= { alaPvrGlobalConfigObjects 1 }
alaPvrGlobalRetryTime OBJECT-TYPE
SYNTAX Integer32 (30..600)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Time (in seconds) between auto violation recovery attempts for any ports using this global value."
DEFVAL { 300 }
::= { alaPvrGlobalConfigObjects 2 }
alaPvrGlobalTrapEnable OBJECT-TYPE
SYNTAX INTEGER { enable(1), disable(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Auto violation recovery global trap configuration"
DEFVAL { enable }
::= { alaPvrGlobalConfigObjects 3 }
alaPvrConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF AlaPvrConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of auto violation recovery configuration parameters"
::= { portViolations 7 }
alaPvrConfigEntry OBJECT-TYPE
SYNTAX AlaPvrConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Auto violation recovery configuration parameters"
INDEX { ifIndex }
::= { alaPvrConfigTable 1 }
AlaPvrConfigEntry ::= SEQUENCE {
alaPvrRecoveryMax Integer32,
alaPvrRetryTime Integer32
}
alaPvrRecoveryMax OBJECT-TYPE
SYNTAX Integer32 (-2..50)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Per port maximum auto violation recovery maximum attempts.
Value -2 means use value from alaPvrGlobalRecoveryMax
Value -1 means retry infinitely.
Value 0 means disable this port.
Values 1 to 50 mean 1 to 50 auto violation recovery attempts.
"
DEFVAL { -2 }
::= { alaPvrConfigEntry 1 }
alaPvrRetryTime OBJECT-TYPE
SYNTAX Integer32 (-2 | 30..600)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Per port time (in seconds) between auto violation recovery attempts.
Value -2 means use value from alaPvrGlobalRetryTime.
"
DEFVAL { -2 }
::= { alaPvrConfigEntry 2 }
alaPortViolationTrapObjects OBJECT IDENTIFIER ::= { portViolations 8 }
portViolationRecoveryReason OBJECT-TYPE
SYNTAX INTEGER {
unknown (1),
clearViolationCmd (2),
recoveryTimer (3),
adminUpDown (4),
nativeRecoveryTimer (5)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The reason for the recovery from port violation. It can be
none (1): none.
clearViolationCmd (2): Indicates that the port is recovered from
clear violation command.
recoveryTimer (3): Indicates that the port is recovered by
Recovery Timer mechanism.
adminUpDown (4): Indicates that the port is recovered from
admin Up/Down.
nativeRecoveryTimer (5): Indicates that the port is recovered
from the feature that shutdown the interface."
::= { alaPortViolationTrapObjects 1 }
--
-- Port Violation Traps
--
portViolationTrap NOTIFICATION-TYPE
OBJECTS {
ifIndex,
portViolationSource,
portViolationReason
}
STATUS current
DESCRIPTION
"A Trap will be generated when a port violation occurs. The port
violation trap will indicate the source of the violation and the
reason for the violation."
::= { alcatelIND1PortNotifications 7 }
portViolationNotificationTrap NOTIFICATION-TYPE
OBJECTS {
ifIndex,
portViolationRecoveryReason
}
STATUS current
DESCRIPTION
"A Trap will be generated when a port violation is cleared. This trap
will indicate the reason for the recovery from violation."
::= { alcatelIND1PortNotifications 8 }
-- Dying Gasp Trap
alaDyingGaspTrap NOTIFICATION-TYPE
OBJECTS {
alaDyingGaspChassisId,
alaDyingGaspPowerSupplyType,
alaDyingGaspTime
}
STATUS current
DESCRIPTION
"Dying Gasp trap."
::= { alcatelIND1PortNotifications 9 }
-- Storm Control trap
esmStormThresholdViolationStatus NOTIFICATION-TYPE
OBJECTS {
ifIndex,
esmStormViolationThresholdNotificationType,
esmStormViolationThresholdTrafficType
}
STATUS current
DESCRIPTION
"This object notifies management station if User-Port ports gets the ingress traffic inflow
above the configured value."
::= { alcatelIND1PortNotifications 10 }
-- TDR test Result Table
-- This table stores the result of TDR test conducted on the copper port(<slot,port>)
-- The object esmTdrPortTest can be used by the user to initiate the TDR test
-- All other objects are read only as length and states of the cable pairs can not be modified
esmTdrPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF EsmTdrPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table lists the results of cable diagnostics."
::= {physicalPort 8}
esmTdrPortEntry OBJECT-TYPE
SYNTAX EsmTdrPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry corresponding to each port."
INDEX { ifIndex }
::= { esmTdrPortTable 1 }
EsmTdrPortEntry ::= SEQUENCE {
esmTdrPortCableState CableState,
esmTdrPortValidPairs Unsigned32,
esmTdrPortPair1State CableState,
esmTdrPortPair1Length Unsigned32,
esmTdrPortPair2State CableState,
esmTdrPortPair2Length Unsigned32,
esmTdrPortPair3State CableState,
esmTdrPortPair3Length Unsigned32,
esmTdrPortPair4State CableState,
esmTdrPortPair4Length Unsigned32,
esmTdrPortFuzzLength Unsigned32,
esmTdrPortTest INTEGER,
esmTdrPortClearStats INTEGER,
esmTdrPortResult INTEGER
}
esmTdrPortCableState OBJECT-TYPE
SYNTAX CableState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State of a cable as returned by the TDR test."
::= { esmTdrPortEntry 1 }
esmTdrPortValidPairs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of wire pairs in the cable for which the results of this test are valid."
::= { esmTdrPortEntry 2 }
esmTdrPortPair1State OBJECT-TYPE
SYNTAX CableState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state for wire pair-1 of the cable as returned by the TDR test."
::= { esmTdrPortEntry 3 }
esmTdrPortPair1Length OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The length for wire pair-1 of the cable at which the fault is detected if the pair is faulty, complete length of the cable otherwise."
::= { esmTdrPortEntry 4 }
esmTdrPortPair2State OBJECT-TYPE
SYNTAX CableState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state for wire pair-2 of the cable as returned by the TDR test."
::= { esmTdrPortEntry 5 }
esmTdrPortPair2Length OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The length for wire pair-2 of the cable at which the fault is detected if the pair is faulty, complete length of the cable otherwise."
::= { esmTdrPortEntry 6 }
esmTdrPortPair3State OBJECT-TYPE
SYNTAX CableState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state for wire pair-3 of the cable as returned by the TDR test."
::= { esmTdrPortEntry 7 }
esmTdrPortPair3Length OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The length for wire pair-3 of the cable at which the fault is detected if the pair is faulty, complete length of the cable otherwise."
::= { esmTdrPortEntry 8 }
esmTdrPortPair4State OBJECT-TYPE
SYNTAX CableState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state for wire pair-4 of the cable as returned by the TDR test."
::= { esmTdrPortEntry 9 }
esmTdrPortPair4Length OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The length for wire pair-4 of the cable at which the fault is detected if the pair is faulty, complete length of the cable otherwise."
::= { esmTdrPortEntry 10 }
esmTdrPortFuzzLength OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The error in the estimated length of the cable (as returned by TDR test)."
::= { esmTdrPortEntry 11 }
esmTdrPortTest OBJECT-TYPE
SYNTAX INTEGER{
off(1),
on(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Object used to start a TDR test on the port. When configured as on, it initiates a TDR test on the port. A read operation on this object always returns the value off."
::= { esmTdrPortEntry 12 }
esmTdrPortClearStats OBJECT-TYPE
SYNTAX INTEGER
{ default(1),
reset(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Used to Clear TDR stats.
By default, this object contains zero value."
::= { esmTdrPortEntry 13 }
esmTdrPortResult OBJECT-TYPE
SYNTAX INTEGER
{
success(1),
fail(2),
unknown(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Used to give the status of BCM API,whether API able to execute TDR test successfully or failed to executethe TDR test."
::= { esmTdrPortEntry 14 }
-- ************************************************************************
-- Expansion of ifEntry
-- ************************************************************************
interfaceStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF InterfaceStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Expansion for ifEntry."
::= { interfaceCounters 1 }
interfaceStatsEntry OBJECT-TYPE
SYNTAX InterfaceStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of interfaceStatsTable"
AUGMENTS { ifEntry }
::= { interfaceStatsTable 1 }
InterfaceStatsEntry ::= SEQUENCE {
inBitsPerSec Counter64,
outBitsPerSec Counter64,
ifInPauseFrames Counter64,
ifOutPauseFrames Counter64,
ifInPktsPerSec Counter64,
ifOutPktsPerSec Counter64
}
inBitsPerSec OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average number of Bits Received per second"
::= { interfaceStatsEntry 1 }
outBitsPerSec OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average number of Bits Transmitted per second"
::= { interfaceStatsEntry 2 }
ifInPauseFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average number of Pause Frames Received per second"
::= { interfaceStatsEntry 3 }
ifOutPauseFrames OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average number of Pause Frames Transmitted per second"
::= { interfaceStatsEntry 4 }
ifInPktsPerSec OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average number of Packet Received per second"
::= { interfaceStatsEntry 5 }
ifOutPktsPerSec OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average number of Packets Transmitted per second"
::= { interfaceStatsEntry 6 }
-- End of TDR Table
-- This table holds the value of configured interface mode and
-- operaional port mode. This table holds value for each port cage.
esmPortModeTable OBJECT-TYPE
SYNTAX SEQUENCE OF EsmPortModeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of interface entries. This table contains
Configured Port mode and operational port mode"
::= { physicalPort 9 }
esmPortModeEntry OBJECT-TYPE
SYNTAX EsmPortModeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing additional management information
applicable to a particular interface with respect to port mode"
INDEX { ifIndex }
::= { esmPortModeTable 1 }
EsmPortModeEntry ::= SEQUENCE {
esmConfiguredMode
INTEGER,
esmOperationalMode
INTEGER
}
esmConfiguredMode OBJECT-TYPE
SYNTAX INTEGER {
mode40Gig(1), -- 40Gig mode
mode4X10Gig(2), -- 10Gig mode, 4 ports
modeAuto(3) -- 40G or 4X10G based on detection
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The desired mode of the interface. When a
managed system initializes, all interfaces start with
ifConfiguredMode in the Auto state.
User is not allowed to configure this parameter for subport"
DEFVAL { modeAuto }
::= { esmPortModeEntry 1 }
esmOperationalMode OBJECT-TYPE
SYNTAX INTEGER {
mode40Gig(1), -- 40Gig mode
mode4X10Gig(2) -- 10Gig mode, 4 ports
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Operational mode of the port "
::= { esmPortModeEntry 2 }
-- This table holds the value of configured interface beacon admin-state, Becon Led Color and
-- Beacon Led Mode. This table holds value for each port cage.
esmPortBeaconTable OBJECT-TYPE
SYNTAX SEQUENCE OF EsmPortBeaconEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of interface entries. This table contains
Beacon Admin State Beacon Led Color and Beacon Led mode"
::= { physicalPort 10 }
esmPortBeaconEntry OBJECT-TYPE
SYNTAX EsmPortBeaconEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing additional management information
applicable to a particular interface with respect to Beacon"
INDEX { ifIndex }
::= { esmPortBeaconTable 1 }
EsmPortBeaconEntry ::= SEQUENCE {
esmBeaconAdminState
INTEGER,
esmBeaconLedColor
INTEGER,
esmBeaconLedMode
INTEGER,
esmBeaconRowStatus
RowStatus
}
esmBeaconAdminState OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The beacon admin state of the interface. When a
managed system initializes, all interfaces start with
esmBeaconAdminState in disable state"
DEFVAL { disable }
::= { esmPortBeaconEntry 1 }
esmBeaconLedColor OBJECT-TYPE
SYNTAX INTEGER {
ledOff(1), -- Led in off state
ledBlue(2), -- Led in Blue state
ledGreen(3), -- Led in Green state
ledAqua(4), -- Led in Aqua state
ledRed(5), -- Led in Red state
ledMagenta(6), -- Led in Magenta state
ledYellow(7), -- Led in Yellow state
ledWhite(8) -- Led in White state
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" Beacon Led Color of the port "
DEFVAL { ledMagenta }
::= { esmPortBeaconEntry 2 }
esmBeaconLedMode OBJECT-TYPE
SYNTAX INTEGER {
ledModeSolid(1), -- Led mode solid
ledModeActivity(2) -- Led mode representing the normal mode operation
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" Beacon Led Mode of the port "
DEFVAL { ledModeActivity }
::= { esmPortBeaconEntry 3 }
esmBeaconRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Row status to control creation/deletion of the Beacon"
::= { esmPortBeaconEntry 4 }
-- conformance information
alcatelIND1PortMIBCompliances OBJECT IDENTIFIER ::= { alcatelIND1PortMIBConformance 1 }
alcatelIND1PortMIBGroups OBJECT IDENTIFIER ::= { alcatelIND1PortMIBConformance 2 }
-- compliance statements
esmConfPortCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for the configuration of Ethernet
ports."
MODULE -- this module
MANDATORY-GROUPS { esmConfMIBGroup,
esmDetectedConfMIBGroup,
alcPortNotificationGroup,
ddmInfoGroup,
ddmConfigGroup,
ddmNotificationsGroup,
esmConfTrapGroup,
esmHybridConfEntryGroup,
esmConfEntryGroup,
csmConfTrapGroup,
esmTdrPortGroup,
portViolationEntryGroup,
ddmPortInfoGroup,
alaLinkMonConfigMIBGroup,
alaLFPGroupMIBGroup,
alaPvrGlobalConfigGroup,
alaPvrConfigGroup,
interfaceStatsMIBGroup,
alaPortViolationTrapGroup
}
::= { alcatelIND1PortMIBCompliances 1 }
alcEtherStatsCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for the Statistics of the Ethernet
ports."
MODULE -- this module
MANDATORY-GROUPS {
alaLinkMonStatsMIBGroup,
alaLFPConfigMIBGroup,
alcEtherStatsMIBGroup,
alcfcStatsGroup,
esmPortFiberstatsGroup
}
::= { alcatelIND1PortMIBCompliances 2 }
alcLagStatsCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for the Statistics of the Link Aggregation
ports."
MODULE -- this module
MANDATORY-GROUPS {
alcLagStatsMIBGroup
}
::= { alcatelIND1PortMIBCompliances 3 }
-- units of conformance
esmConfMIBGroup OBJECT-GROUP
OBJECTS { esmPortCfgSpeed, esmPortCfgDuplexMode, esmPortCfgMaxFrameSize,
esmPortCfgAutoNegotiation, esmPortCfgCrossover, esmPortCfgPause,
esmPortBcastRateLimitEnable, esmPortBcastRateLimitType, esmPortBcastRateLimit,
esmPortMcastRateLimitEnable, esmPortMcastRateLimitType, esmPortMcastRateLimit,
esmPortUucastRateLimitEnable, esmPortUucastRateLimitType, esmPortUucastRateLimit,
esmPortIngressRateLimitEnable, esmPortIngressRateLimit, esmPortIngressRateLimitBurst,
esmPortEPPEnable, esmPortEEEEnable,esmPortBcastThresholdAction,esmPortMcastThresholdAction,
esmPortUucastThresholdAction,esmPortMinBcastRateLimit,esmPortMinMcastRateLimit,
esmPortMinUucastRateLimit,esmPortBcastStormState, esmPortMcastStormState, esmPortUucastStormState
}
STATUS current
DESCRIPTION
"A collection of objects to support the management of global
configuration parameters of the Ethernet ports."
::= { alcatelIND1PortMIBGroups 1 }
esmDetectedConfMIBGroup OBJECT-GROUP
OBJECTS { esmPortAutoSpeed, esmPortAutoDuplexMode
}
STATUS current
DESCRIPTION
"A collection of objects to support the Detected
configuration parameters of the Ethernet ports."
::= { alcatelIND1PortMIBGroups 2 }
alcEtherStatsMIBGroup OBJECT-GROUP
OBJECTS { alcetherClearStats, alcetherLastClearStats,
alcetherStatsCRCAlignErrors, alcetherStatsRxUndersizePkts,
alcetherStatsTxUndersizePkts, alcetherStatsTxOversizePkts,
alcetherStatsRxJabbers, alcetherStatsRxCollisions,
alcetherStatsTxCollisions, alcetherStatsPkts64Octets,
alcetherStatsPkts65to127Octets, alcetherStatsPkts128to255Octets,
alcetherStatsPkts256to511Octets,
alcetherStatsPkts512to1023Octets,
alcetherStatsPkts1024to1518Octets,
gigaEtherStatsPkts1519to4095Octets,
gigaEtherStatsPkts4096to9215Octets,
alcetherStatsPkts1519to2047Octets,
alcetherStatsPkts2048to4095Octets,
alcetherStatsPkts4096Octets,
alcetherStatsRxGiantPkts,
alcetherStatsRxDribbleNibblePkts,
alcetherStatsRxLongEventPkts,
alcetherStatsRxVlanTagPkts,
alcetherStatsRxControlPkts,
alcetherStatsRxLenChkErrPkts,
alcetherStatsRxCodeErrPkts,
alcetherStatsRxDvEventPkts,
alcetherStatsRxPrevPktDropped,
alcetherStatsTx64Octets,
alcetherStatsTx65to127Octets,
alcetherStatsTx128to255Octets,
alcetherStatsTx256to511Octets,
alcetherStatsTx512to1023Octets,
alcetherStatsTx1024to1518Octets,
alcetherStatsTx1519to2047Octets,
alcetherStatsTx2048to4095Octets,
alcetherStatsTx4096Octets,
alcetherStatsTxRetryCount,
alcetherStatsTxVlanTagPkts,
alcetherStatsTxControlPkts,
alcetherStatsTxLatePkts,
alcetherStatsTxTotalBytesOnWire,
alcetherStatsTxLenChkErrPkts,
alcetherStatsTxExcDeferPkts
}
STATUS current
DESCRIPTION
"A collection of objects to provide all the statistics related
to the Ethernet and GigaEthernert ports."
::= { alcatelIND1PortMIBGroups 3 }
alcPortNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS {
esmDrvTrapDropsLink,
portViolationTrap,
portViolationNotificationTrap,
alaDyingGaspTrap,
esmStormThresholdViolationStatus
}
STATUS current
DESCRIPTION
"The Port MIB Notification Group."
::= { alcatelIND1PortMIBGroups 4 }
ddmInfoGroup OBJECT-GROUP
OBJECTS {
ddmTemperature,
ddmTempLowWarning,
ddmTempLowAlarm,
ddmTempHiWarning,
ddmTempHiAlarm,
ddmSupplyVoltage,
ddmSupplyVoltageLowWarning,
ddmSupplyVoltageLowAlarm,
ddmSupplyVoltageHiWarning,
ddmSupplyVoltageHiAlarm,
ddmTxBiasCurrent,
ddmTxBiasCurrentLowWarning,
ddmTxBiasCurrentLowAlarm,
ddmTxBiasCurrentHiWarning,
ddmTxBiasCurrentHiAlarm,
ddmTxOutputPower,
ddmTxOutputPowerLowWarning,
ddmTxOutputPowerLowAlarm,
ddmTxOutputPowerHiWarning,
ddmTxOutputPowerHiAlarm,
ddmRxOpticalPower,
ddmRxOpticalPowerLowWarning,
ddmRxOpticalPowerLowAlarm,
ddmRxOpticalPowerHiWarning,
ddmRxOpticalPowerHiAlarm,
ddmPortChannel
}
STATUS current
DESCRIPTION
"A collection of objects to provide digital diagnostics information
related to SFPs, XFPs, and SFP+s."
::= { alcatelIND1PortMIBGroups 6 }
ddmConfigGroup OBJECT-GROUP
OBJECTS {
ddmConfig,
ddmTrapConfig,
ddmNotificationType
}
STATUS current
DESCRIPTION
"A collection of objects to allow configuration of DDM and DDM traps."
::= { alcatelIND1PortMIBGroups 7 }
ddmNotificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS {
ddmTemperatureThresholdViolated,
ddmVoltageThresholdViolated,
ddmCurrentThresholdViolated,
ddmTxPowerThresholdViolated,
ddmRxPowerThresholdViolated
}
STATUS current
DESCRIPTION
"A collection of notifications used to indicate DDM threshold violations."
::= { alcatelIND1PortMIBGroups 8 }
esmConfTrapGroup OBJECT-GROUP
OBJECTS {
esmDrvTrapDrops,
alaDyingGaspChassisId,
alaDyingGaspPowerSupplyType,
alaDyingGaspTime,
esmStormViolationThresholdNotificationType,
esmStormViolationThresholdTrafficType
}
STATUS current
DESCRIPTION
"Partitioned port (separated due to errors)."
::= { alcatelIND1PortMIBGroups 9 }
esmHybridConfEntryGroup OBJECT-GROUP
OBJECTS {
esmHybridPortCfgSpeed,
esmHybridPortCfgDuplexMode,
esmHybridPortCfgAutoNegotiation,
esmHybridPortCfgCrossover,
esmHybridPortCfgFlow,
esmHybridPortCfgInactiveType
}
STATUS current
DESCRIPTION
"A list of inactive hybrid port instances."
::= { alcatelIND1PortMIBGroups 10 }
esmConfEntryGroup OBJECT-GROUP
OBJECTS {
esmPortAdminStatus,
esmPortAlias,
esmPortCfgHybridActiveType,
esmPortCfgHybridMode,
esmPortIF,
esmPortLinkUpDownTrapEnable,
esmPortOperationalHybridType,
esmPortSlot
}
STATUS current
DESCRIPTION
"A list of ESM Physical Port instances."
::= { alcatelIND1PortMIBGroups 11 }
portViolationEntryGroup OBJECT-GROUP
OBJECTS {
portViolationAction,
portViolationTimer,
portViolationTimerAction,
portViolationClearPort,
portViolationCfgRecoveryMax,
portViolationCfgRetryTime,
portViolationRetryRemain
}
STATUS current
DESCRIPTION
"This table contains the port Violations per port."
::= { alcatelIND1PortMIBGroups 12 }
ddmPortInfoGroup OBJECT-GROUP
OBJECTS {
ddmPortTemperature,
ddmPortTempLowWarning,
ddmPortTempLowAlarm,
ddmPortTempHiWarning,
ddmPortTempHiAlarm,
ddmPortSupplyVoltage,
ddmPortSupplyVoltageLowWarning,
ddmPortSupplyVoltageLowAlarm,
ddmPortSupplyVoltageHiWarning,
ddmPortSupplyVoltageHiAlarm,
ddmPortTxBiasCurrent,
ddmPortTxBiasCurrentLowWarning,
ddmPortTxBiasCurrentLowAlarm,
ddmPortTxBiasCurrentHiWarning,
ddmPortTxBiasCurrentHiAlarm,
ddmPortTxOutputPower,
ddmPortTxOutputPowerLowWarning,
ddmPortTxOutputPowerLowAlarm,
ddmPortTxOutputPowerHiWarning,
ddmPortTxOutputPowerHiAlarm,
ddmPortRxOpticalPower,
ddmPortRxOpticalPowerLowWarning,
ddmPortRxOpticalPowerLowAlarm,
ddmPortRxOpticalPowerHiWarning,
ddmPortRxOpticalPowerHiAlarm
}
STATUS current
DESCRIPTION
"A collection of objects to provide digital diagnostics information
related to SFPs, XFPs, and SFP+s."
::= { alcatelIND1PortMIBGroups 13 }
alaLinkMonConfigMIBGroup OBJECT-GROUP
OBJECTS {
alaLinkMonStatus,
alaLinkMonTimeWindow,
alaLinkMonLinkFlapThreshold,
alaLinkMonLinkErrorThreshold,
alaLinkMonWaitToRestoreTimer,
alaLinkMonWaitToShutdownTimer
}
STATUS current
DESCRIPTION
"A collection of objects to support the Link Monitoring Configurations on the ports."
::= { alcatelIND1PortMIBGroups 14 }
alaLinkMonStatsMIBGroup OBJECT-GROUP
OBJECTS {
alaLinkMonStatsClearStats,
alaLinkMonStatsPortState,
alaLinkMonStatsCurrentLinkFlaps,
alaLinkMonStatsCurrentErrorFrames,
alaLinkMonStatsCurrentCRCErrors,
alaLinkMonStatsCurrentLostFrames,
alaLinkMonStatsCurrentAlignErrors,
alaLinkMonStatsCurrentLinkErrors,
alaLinkMonStatsTotalLinkFlaps,
alaLinkMonStatsTotalLinkErrors
}
STATUS current
DESCRIPTION
"A collection of objects to provide all the statistics related
to the Link Monitoring on the ports."
::= { alcatelIND1PortMIBGroups 15 }
alaLFPGroupMIBGroup OBJECT-GROUP
OBJECTS {
alaLFPGroupId,
alaLFPGroupAdminStatus,
alaLFPGroupOperStatus,
alaLFPGroupWaitToShutdown,
alaLFPGroupRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects to configure Link Fault Propagation Group,
Wait to shutdown timer and admin staus of group."
::= { alcatelIND1PortMIBGroups 16 }
alaLFPConfigMIBGroup OBJECT-GROUP
OBJECTS {
alaLFPConfigPort,
alaLFPConfigPortType,
alaLFPConfigRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects to configure a port and port type for a Link Fault Propagation Group."
::= { alcatelIND1PortMIBGroups 17 }
csmConfTrapGroup OBJECT-GROUP
OBJECTS {
alaDyingGaspChassisId,
alaDyingGaspPowerSupplyType,
alaDyingGaspTime
}
STATUS current
DESCRIPTION
"A collection of objects for chassis supervision traps"
::= { alcatelIND1PortMIBGroups 18 }
esmTdrPortGroup OBJECT-GROUP
OBJECTS {
esmTdrPortCableState,
esmTdrPortValidPairs,
esmTdrPortPair1State,
esmTdrPortPair1Length,
esmTdrPortPair2State,
esmTdrPortPair2Length,
esmTdrPortPair3State,
esmTdrPortPair3Length,
esmTdrPortPair4State,
esmTdrPortPair4Length,
esmTdrPortFuzzLength,
esmTdrPortTest,
esmTdrPortClearStats,
esmTdrPortResult
}
STATUS current
DESCRIPTION
"A collection of objects to provide TDR information"
::= { alcatelIND1PortMIBGroups 19 }
alcfcStatsGroup OBJECT-GROUP
OBJECTS {
alcfcClearStats,
alcfcLastClearStats,
alcfcStatsDelimiterErrors,
alcfcStatsEncodingDisparityErrors,
alcfcStatsFrameTooLongs,
alcfcStatsInvalidCRCs,
alcfcStatsInvalidOrderedSets,
alcfcStatsInvalidTxWords,
alcfcStatsLinkFailures,
alcfcStatsLossofSignals,
alcfcStatsRxUndersizePkts,
alcfcStatsTxBBCreditZeros,
alcfcStatsLossofSynchs,
alcfcStatsOtherErrors,
alcfcStatsPrimSeqProtocolErrors,
alcfcStatsRxBBCreditZeros
}
STATUS current
DESCRIPTION
"A collection of objects for chassis supervision traps"
::= { alcatelIND1PortMIBGroups 20 }
esmPortFiberstatsGroup OBJECT-GROUP
OBJECTS {
esmPortIsFiberChannelCapable
}
STATUS current
DESCRIPTION
"A collection of objects for chassis supervision traps"
::= { alcatelIND1PortMIBGroups 21 }
alaPvrGlobalConfigGroup OBJECT-GROUP
OBJECTS {
alaPvrGlobalRecoveryMax,
alaPvrGlobalRetryTime,
alaPvrGlobalTrapEnable
}
STATUS current
DESCRIPTION
"A collection of global pvr objects"
::= { alcatelIND1PortMIBGroups 22 }
esmPortModeGroup OBJECT-GROUP
OBJECTS {
esmConfiguredMode,
esmOperationalMode
}
STATUS current
DESCRIPTION
"A collection of objects for port splitter mode"
::= { alcatelIND1PortMIBGroups 23 }
esmPortBeaconGroup OBJECT-GROUP
OBJECTS {
esmBeaconAdminState,
esmBeaconLedColor,
esmBeaconLedMode,
esmBeaconRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects for port Beacon "
::= { alcatelIND1PortMIBGroups 24 }
alaPvrConfigGroup OBJECT-GROUP
OBJECTS {
alaPvrRecoveryMax,
alaPvrRetryTime
}
STATUS current
DESCRIPTION
"A collection of pvr objects"
::= { alcatelIND1PortMIBGroups 25 }
interfaceStatsMIBGroup OBJECT-GROUP
OBJECTS {
inBitsPerSec,
outBitsPerSec,
ifInPauseFrames,
ifOutPauseFrames,
ifInPktsPerSec,
ifOutPktsPerSec
}
STATUS current
DESCRIPTION
"A collection of objects to display the interface counters details of the ports"
::= { alcatelIND1PortMIBGroups 26 }
alaPortViolationTrapGroup OBJECT-GROUP
OBJECTS {
portViolationRecoveryReason
}
STATUS current
DESCRIPTION
"A collection of global pvr objects"
::= { alcatelIND1PortMIBGroups 27 }
alcLagStatsMIBGroup OBJECT-GROUP
OBJECTS {
alcLagClearStats
}
STATUS current
DESCRIPTION
"A collection of link aggregation objects"
::= { alcatelIND1PortMIBGroups 28 }
END
|