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
|
-- *****************************************************************
-- CISCO-ENTITY-FRU-CONTROL-MIB
--
-- October 2002, Srini Kode
--
-- %DNP% October 2003, Wen Xu
-- %DNP% November 2003, Vasanta Kottapalli
--
-- Copyright (c) 1998-2018 by cisco Systems Inc.
-- All rights reserved.
-- ****************************************************************
CISCO-ENTITY-FRU-CONTROL-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE,
Unsigned32,
Integer32
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP,
NOTIFICATION-GROUP
FROM SNMPv2-CONF
TEXTUAL-CONVENTION,
DisplayString,
TimeStamp,
TruthValue
FROM SNMPv2-TC
entPhysicalIndex,
entPhysicalContainedIn,
entPhysicalModelName,
entPhysicalClass,
entPhysicalVendorType,
entPhysicalName
FROM ENTITY-MIB
InetAddressType,
InetAddress
FROM INET-ADDRESS-MIB
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
ciscoMgmt
FROM CISCO-SMI;
ciscoEntityFRUControlMIB MODULE-IDENTITY
LAST-UPDATED "201811050000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Postal: Cisco Systems, Inc.
170 West Tasman Drive
San Jose, CA 95134-1706
USA
Tel: +1 408 526 4000
E-mail: cs-snmp@cisco.com"
DESCRIPTION
"The CISCO-ENTITY-FRU-CONTROL-MIB is used to monitor
and configure operational status of
Field Replaceable Units (FRUs) and other managable
physical entities of the system listed in the
Entity-MIB (RFC 2737) entPhysicalTable.
FRUs include assemblies such as power supplies, fans,
processor modules, interface modules, etc."
REVISION "201811050000Z"
DESCRIPTION
"Corrected MAX-ACCESS of cefcFRUActualInputCurrent
and cefcFRUActualOutputCurrent."
REVISION "201808200000Z"
DESCRIPTION
"Added CefcVmModuleOperType Textual Convention.
Added following OBJECT-GROUP
- cefcVmModuleGroup
- cefcVmModuleNotifsGroup
Added cefcMIBPowerCompliance10"
REVISION "201807250000Z"
DESCRIPTION
"Added following OBJECT-GROUP
- cefcPowerSupplyActualGroup"
REVISION "201712060000Z"
DESCRIPTION
"Added following OBJECT-GROUP
- cefcFanDirectionGroup
- cefcFanSpeedGroup"
REVISION "201308190000Z"
DESCRIPTION
"Added fwMismatchFound(25), fwDownloadSuccess(26)
and fwDownloadFailure(27) to the
Textual Convention ModuleOperType"
REVISION "201112220000Z"
DESCRIPTION
"Added new enumeration value mdr(24) to
ModuleOperType Textual Convention."
REVISION "201103180000Z"
DESCRIPTION
"Added FRUCoolingUnit Textual Convention.
Added psRedundantSingleInput(7) to Textual
Convention PowerRedundancyType.
Added the following groups:
cefcFRUPowerRealTimeStatusGroup
cefcFRUPowerCapabilityGroup
cefcFRUCoolingUnitGroup
cefcFRUFanCoolingUnitGroup
Deprecated cefcCoolingGroup and replaced with
cefcCoolingGroup2 and cefcFanCoolingGroup."
REVISION "201012100000Z"
DESCRIPTION
"Added cefcMIBModuleLocalSwitchingGroup."
REVISION "200810080000Z"
DESCRIPTION
"Added two new enumeration values
upgrading(22) and okButAuthFailed(23) to
ModuleOperType Textual Convention."
REVISION "200706210000Z"
DESCRIPTION
"* Added two new enumeration values :
psRedundant(5) and inPwrSrcRedundant(6) to
PowerRedundancyType Textual Convention."
REVISION "200703140000Z"
DESCRIPTION
"* Added cefcTotalDrawnInlineCurrent and
cefcMIBInLinePowerCurrentGroup.
* Added cefcPowerNonRedundantReason and
cefcMIBPowerRedundancyInfoGroup.
* Added cefcFanCoolingCapTable and
cefcFanCoolingCapGroup.
* Added cefcMIBPowerCompliance8."
REVISION "200606230000Z"
DESCRIPTION
"* Added new value 'onButInlinePowerFail(12)' to PowerOperType."
REVISION "200509060000Z"
DESCRIPTION
"* Added cefcPowerCapacityGroup,
cefcCoolingGroup and cefcConnectorRatingGroup.
* Added new enumerator 'powerCycle' to the TC
PowerAdminType.
* Added two new enumerators 'offCooling'
and 'offConnectorRating' to the TC PowerOperType.
* Added cefcMIBNotificationEnablesGroup2
and cefcMgmtNotificationsGroup3."
REVISION "200412090000Z"
DESCRIPTION
"Removed the additional varbind 'entPhysicalDescr' added
in 'cefcFRUInserted' & 'cefcFRURemoved' notifications."
REVISION "200410190000Z"
DESCRIPTION
"* Added the enumeration 'syncInProgress' to
ModuleOperType Textual Convention.
Added an additional varbind 'entPhysicalDescr' in
'cefcFRUInserted' & 'cefcFRURemoved' notifications."
REVISION "200311240000Z"
DESCRIPTION
"* Added the enumerations okButPowerOverWarning
and okButPowerOverCritical to ModuleOperType
Textual Convention."
REVISION "200310270000Z"
DESCRIPTION
"Added poweredDown,poweredUp, powerDenied,powerCycled
to ModuleOperType."
REVISION "200310230000Z"
DESCRIPTION
"* Added cefcModuleStateChangeReasonDescr and
cefcModuleUpTime in the cefcModuleTable.
* Added cefcIntelliModuleTable to provide the
IP address information for intelligent
modules."
REVISION "200307220000Z"
DESCRIPTION
"* Modified the description for cefcPowerRedudancyMode to
indicate that this object reflects the administrative
power supply redundancy mode.
* Added cefcPowerRedundancyOperMode to reflect the
operational status of the power supply redundancy mode.
* Deprecated cefcMaxDefaultInLinePower and added
cefcMaxDefaultHighInLinePower to replace it.
* Modified the DESCRIPTION for cefcFanTrayStatusTable
and cefcFanTrayStatusEntry to reflect the right
situation."
REVISION "200210160000Z"
DESCRIPTION
"Added:
* Added cefcFanTrayStatusChange notification
* Added cefcFanTrayStatusChange to
cefcMgmtNotificationsGroup2"
REVISION "200210030000Z"
DESCRIPTION
"Added:
* cefcFanTrayStatus table containing fan tray status
information.
* added cefcPhysical table containing status information
of the physical entity.
* added cefcUnrecognizedFRU notification.
* added cefcMIBFanTrayStatusGroup.
* added cefcMIBPhysicalGroup."
REVISION "200209150000Z"
DESCRIPTION
"Added:
* powerSupplyValue table containing information such
as, total and used inline and data power, for variable
power supplies.
* added following object group
cefcMIBPowerFRUValueGroup"
REVISION "200207120000Z"
DESCRIPTION
"Added:
cefcModuleLastClearConfigTime
cefcModuleResetReasonDescription
cefcModuleGroupRev1
Modified:
Added enumerations watchDogTimeoutReset,
resourceOverflowReset, missingTaskReset,
lowVoltageReset, controllerReset, systemReset,
switchoverReset, upgradeReset, downgradeReset,
cacheErrorReset, deviceDriverReset,
softwareExceptionReset, restoreConfigReset,
abortRevReset, burnBootReset,
standbyCdHealthierReset, nonNativeConfigClearReset,
and memoryProtectionErrorReset to
ModuleResetReasonType TC."
REVISION "200105220000Z"
DESCRIPTION
"Modified the description for cefcTotalAvailableCurrent.
Changed 'cefcPowerRedundancy' in the description to
'cefcPowerRedundancyMode'
Also made the file conform to the 72 char line limit.
Imported NOTIFICATION-GROUP
Added cefcMgmtNotificationsGroup."
REVISION "200001130000Z"
DESCRIPTION
"Following changes are made in this revision
* added following enumerations to ModuleOperType TC:
dormant, outOfServiceAdmin, outOfServiceEnvTemp
* added outOfServiceAdmin to ModuleAdminType TC
* added following notifications:
cefcMIBNotificationEnables
cefcMIBEnableStatusNotification
cefcPowerStatusChange
cefcFRUInserted
cefcFRURemoved
* added following object groups:
cefcMIBInLinePowerControlGroup
cefcMIBNotificationEnablesGroup"
REVISION "9904050000Z"
DESCRIPTION
"Added module table containing the status information."
::= { ciscoMgmt 117 }
cefcMIBObjects OBJECT IDENTIFIER
::= { ciscoEntityFRUControlMIB 1 }
cefcFRUMIBNotificationPrefix OBJECT IDENTIFIER
::= { ciscoEntityFRUControlMIB 2 }
cefcMIBConformance OBJECT IDENTIFIER
::= { ciscoEntityFRUControlMIB 3 }
-- textual conventions
PowerRedundancyType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"power supply redundancy modes. valid values are:
notsupported(1): Read-only operational state, indicates
that the requested administrative state (redundant(2),
combined(3), psRedundant(5), inPwrSrcRedundant(6)
or psRedundantSingleInput(7)) is not supported
by the system.
redundant(2): A single power supply output can power
the entire system, although there are more than
one matched supply in the system.
In the systems which support multiple level of
redundancy, such as input power redundancy, this
state indicates that redundancy is enabled on
all levels.
combined(3): The combined output of the power supplies
are available to operate the system when there are
more than one matched power supply in the system.
In the platforms which support multiple level of
redundancy, such as input redundancy, this state
indicates that no redundancy on all levels.
nonRedundant(4): Read-only operational state, indicates
that there is only one power supply or there are
unmatched power supplies in the system.
psRedundant(5): Only the power output redundancy
is enabled in the systems which support multiple
levels of redundancy. All other types of redundancy,
such as input power redundancy, are disabled.
This value is only supported by the systems which
support multiple levels of redundancy.
inPwrSrcRedundant(6): Only the input power redundancy
is enabled in the systems which support multiple
levels of redundancy. All other types of redundancy,
such as output power redundancy, are disabled.
This value is only supported by the systems which
support input power redundancy.
psRedundantSingleInput(7): Only the power redundancy with
single input is enabled in the systems which support
multiple levels of redundancy. All other types of
redundancy, such as output power redundancy, are disabled.
This value is only supported by the systems which
support power redundancy with single input."
SYNTAX INTEGER {
notsupported(1),
redundant(2),
combined(3),
nonRedundant(4),
psRedundant(5),
inPwrSrcRedundant(6),
psRedundantSingleInput(7)
}
PowerAdminType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Administratively desired FRU power state types. valid values
are:
on(1): Turn FRU on.
off(2): Turn FRU off.
The inline power means that the FRU itself won't cost any power,
but the external device connecting to the FRU will drain the
power from FRU. For example, the IP phone device. The FRU is a
port of a switch with voice ability and IP phone will cost power
from the port once it connects to the port.
inlineAuto(3): Turn FRU inline power to auto mode. It means that
the FRU will try to detect whether the connecting device needs
power or not. If it needs power, the FRU will supply power. If
it doesn't, the FRU will treat the device as a regular network
device.
inlineOn(4): Turn FRU inline power to on mode. It means that
once the device connects to the FRU, the FRU will always supply
power to the device no matter the device needs the power or not.
powerCycle(5): Power cycle the FRU. This value may be specified
in a management protocol set operation, it will not be returned
in response to a management protocol retrieval operation."
SYNTAX INTEGER {
on(1),
off(2),
inlineAuto(3),
inlineOn(4),
powerCycle(5)
}
PowerOperType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Operational FRU Status types. valid values are:
offEnvOther(1) FRU is powered off because of a problem not
listed below.
on(2): FRU is powered on.
offAdmin(3): Administratively off.
offDenied(4): FRU is powered off because available
system power is insufficient.
offEnvPower(5): FRU is powered off because of power problem in
the FRU. for example, the FRU's power
translation (DC-DC converter) or distribution
failed.
offEnvTemp(6): FRU is powered off because of temperature
problem.
offEnvFan(7): FRU is powered off because of fan problems.
failed(8): FRU is in failed state.
onButFanFail(9): FRU is on, but fan has failed.
offCooling(10): FRU is powered off because of the system's
insufficient cooling capacity.
offConnectorRating(11): FRU is powered off because of the
system's connector rating exceeded.
onButInlinePowerFail(12): The FRU on, but no inline power
is being delivered as the
data/inline power component of the
FRU has failed."
SYNTAX INTEGER {
offEnvOther(1),
on(2),
offAdmin(3),
offDenied(4),
offEnvPower(5),
offEnvTemp(6),
offEnvFan(7),
failed(8),
onButFanFail(9),
offCooling(10),
offConnectorRating(11),
onButInlinePowerFail(12)
}
FRUCurrentType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"a current measurement, on the system power supply
primary output, expressed in cefcPowerUnits. Range is
from negative 1 million to positive one million
amperes.
A negative value expresses current used by the FRU.
A positive value expresses current supplied by the FRU."
SYNTAX Integer32 (-1000000000..1000000000)
ModuleAdminType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Administratively desired module states. Valid values are:
enabled(1) module is operational.
disabled(2) module is not operational.
reset(3) module is reset. This value may be specified
in a management protocol set operation, it will
not be returned in response to a management
protocol retrieval operation.
outOfServiceAdmin(4) module is powered on but out of
service, set by CLI."
SYNTAX INTEGER {
enabled(1),
disabled(2),
reset(3),
outOfServiceAdmin(4)
}
ModuleOperType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Operational module states. Valid values are :
unknown(1) Module is not in one of other states
normal operational states:
ok(2) Module is operational.
disabled(3) Module is administratively disabled.
okButDiagFailed(4) Module is operational but there is some
diagnostic information available.
transitional states:
boot(5) Module is currently in the process of
bringing up image. After boot, it starts
its operational software and transitions
to the appropriate state.
selfTest(6) Module is performing selfTest.
failure states:
failed(7) Module has failed due to some condition
not stated above.
missing(8) Module has been provisioned, but it is
missing
mismatchWithParent(9) Module is not compatible with parent
entity. Module has not been provisioned
and wrong type of module is plugged in.
This state can be cleared by plugging
in the appropriate module.
mismatchConfig(10) Module is not compatible with the
current
configuration. Module was correctly
provisioned earlier, however the module
was replaced by an incompatible module.
This state can be resolved by clearing
the configuration, or replacing with the
appropriate module.
diagFailed(11) Module diagnostic test failed due to
some
hardware failure.
dormant(12) Module is waiting for an external or
internal event to become operational.
outOfServiceAdmin(13) module is administratively set to be
powered on but out of service.
outOfServiceEnvTemp(14)Module is powered on but out of service,
due to environmental temperature problem.
An out-o-service module consumes less
power thus will cool down the board.
poweredDown(15) Module is in powered down state.
poweredUp(16) Module is in powered up state.
powerDenied(17) System does not have enough power in
power budget to power on this module.
powerCycled(18) Module is being power cycled.
okButPowerOverWarning(19) Module is drawing more power than
allocated to this module. The module
is still operational but may go into
a failure state. This state may be
caused by misconfiguration of power
requirements (especially for inline
power).
okButPowerOverCritical(20) Module is drawing more power
than this module is designed to
handle. The module is still
operational but may go into a
failure state and could potentially
take the system down. This state
may be caused by gross misconfi-
guration of power requirements
(especially for inline power).
syncInProgress(21) Synchronization in progress.
In a high availability system there
will be 2 control modules, active and
standby.
This transitional state specifies the
synchronization of data between the
active and standby modules.
upgrading(22) Module is upgrading.
okButAuthFailed(23) Module is operational but did not pass
hardware integrity verification.
mdr(24) Module is undergoing a Minimum
Disruptive Restart (MDR) upgrade.
firmware download states:
fwMismatchFound(25) Mistmatch found between current firmware
version and the firmware version in the
system image.
fwDownloadSuccess(26) Module firmware download succeeded.
fwDownloadFailure(27) Module firmware download failed."
SYNTAX INTEGER {
unknown(1),
ok(2),
disabled(3),
okButDiagFailed(4),
boot(5),
selfTest(6),
failed(7),
missing(8),
mismatchWithParent(9),
mismatchConfig(10),
diagFailed(11),
dormant(12),
outOfServiceAdmin(13),
outOfServiceEnvTemp(14),
poweredDown(15),
poweredUp(16),
powerDenied(17),
powerCycled(18),
okButPowerOverWarning(19),
okButPowerOverCritical(20),
syncInProgress(21),
upgrading(22),
okButAuthFailed(23),
mdr(24),
fwMismatchFound(25),
fwDownloadSuccess(26),
fwDownloadFailure(27)
}
ModuleResetReasonType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Describes the reason for the last module reset operation.
unknown(1) source of the reset is not
identified
powerUp(2) system power up operation
parityError(3) parity error during system
bring up operation
clearConfigReset(4) reset due to clear
configuration operation
manualReset(5) reset due to administrative
request
watchDogTimeoutReset(6) reset due to watchdog timeout
resourceOverflowReset(7) reset due to resource overflow
missingTaskReset(8) reset due to missing task
lowVoltageReset(9) reset due to low voltage
controllerReset(10) reset by controller
systemReset(11) system reset
switchoverReset(12) reset due to user initiated
graceful switchover
upgradeReset(13) reset due to upgrade
downgradeReset(14) reset due to downgrade
cacheErrorReset(15) reset due to cache error
deviceDriverReset(16) reset due to device driver
error
softwareExceptionReset(17) reset due to software
exception
restoreConfigReset(18) reset due to configuration
restoration
abortRevReset(19) reset due to revision change
abort
burnBootReset(20) reset due to boot image
change
standbyCdHealthierReset(21) reset to switch to healthier
standby card
nonNativeConfigClearReset(22) reset due clearing of
non-native configuration
memoryProtectionErrorReset(23) reset due to memory protection
violation."
SYNTAX INTEGER {
unknown(1),
powerUp(2),
parityError(3),
clearConfigReset(4),
manualReset(5),
watchDogTimeoutReset(6),
resourceOverflowReset(7),
missingTaskReset(8),
lowVoltageReset(9),
controllerReset(10),
systemReset(11),
switchoverReset(12),
upgradeReset(13),
downgradeReset(14),
cacheErrorReset(15),
deviceDriverReset(16),
softwareExceptionReset(17),
restoreConfigReset(18),
abortRevReset(19),
burnBootReset(20),
standbyCdHealthierReset(21),
nonNativeConfigClearReset(22),
memoryProtectionErrorReset(23)
}
FRUTimeSeconds ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This is a non-negative integer which represents
the time in second between two epochs.
Since time is not discrete, it is rounded up to
the nearest second. For example, if the elapsed
time is greater than zero and less or equal to
one second, then one second is returned, etc.
When objects are defined which use this type, the
description of the object identifies both of the
reference epochs."
SYNTAX Unsigned32
FRUCoolingUnit ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The unit for the cooling capacity and requirement.
cfm(1) Cubic feet per minute
watts(2) Watts"
SYNTAX INTEGER {
cfm(1),
watts(2)
}
CefcPercentOrMinusOne ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"An integer that is in the range of a percent value.
A value of -1 means that the percentage is not available."
SYNTAX Integer32 (-1 | 0..100)
CefcVmModuleOperType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Operational VM module states. Valid values are :
down(1) module is down.
up(2) module is operational.
unknown(3) module is unknown.
goingDown(4) module is goingDown from Up."
SYNTAX INTEGER {
down(1),
up(2),
unknown(3),
goingDown(4)
}
-- MIB variables
cefcFRUPower OBJECT IDENTIFIER
::= { cefcMIBObjects 1 }
cefcModule OBJECT IDENTIFIER
::= { cefcMIBObjects 2 }
cefcMIBNotificationEnables OBJECT IDENTIFIER
::= { cefcMIBObjects 3 }
cefcFRUFan OBJECT IDENTIFIER
::= { cefcMIBObjects 4 }
cefcPhysical OBJECT IDENTIFIER
::= { cefcMIBObjects 5 }
cefcPowerCapacity OBJECT IDENTIFIER
::= { cefcMIBObjects 6 }
cefcCooling OBJECT IDENTIFIER
::= { cefcMIBObjects 7 }
cefcConnector OBJECT IDENTIFIER
::= { cefcMIBObjects 8 }
-- cefcFRUPowerSupplyGroupTable
cefcFRUPowerSupplyGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefcFRUPowerSupplyGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table lists the redundancy mode and the
operational status of the power supply groups
in the system."
::= { cefcFRUPower 1 }
cefcFRUPowerSupplyGroupEntry OBJECT-TYPE
SYNTAX CefcFRUPowerSupplyGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An cefcFRUPowerSupplyGroupTable entry lists the desired
redundancy mode, the units of the power outputs and the
available and drawn current for the power supply group.
Entries are created by the agent when a power supply group
is added to the entPhysicalTable. Entries are deleted by
the agent at power supply group removal."
INDEX { entPhysicalIndex }
::= { cefcFRUPowerSupplyGroupTable 1 }
CefcFRUPowerSupplyGroupEntry ::= SEQUENCE {
cefcPowerRedundancyMode PowerRedundancyType,
cefcPowerUnits DisplayString,
cefcTotalAvailableCurrent FRUCurrentType,
cefcTotalDrawnCurrent FRUCurrentType,
cefcPowerRedundancyOperMode PowerRedundancyType,
cefcPowerNonRedundantReason INTEGER,
cefcTotalDrawnInlineCurrent FRUCurrentType
}
cefcPowerRedundancyMode OBJECT-TYPE
SYNTAX PowerRedundancyType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The administratively desired power supply redundancy
mode."
::= { cefcFRUPowerSupplyGroupEntry 1 }
cefcPowerUnits OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The units of primary supply to interpret
cefcTotalAvailableCurrent and cefcTotalDrawnCurrent
as power.
For example, one 1000-watt power supply could
deliver 100 amperes at 10 volts DC. So the value
of cefcPowerUnits would be 'at 10 volts DC'.
cefcPowerUnits is for display purposes only."
::= { cefcFRUPowerSupplyGroupEntry 2 }
cefcTotalAvailableCurrent OBJECT-TYPE
SYNTAX FRUCurrentType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total current available for FRU usage."
::= { cefcFRUPowerSupplyGroupEntry 3 }
cefcTotalDrawnCurrent OBJECT-TYPE
SYNTAX FRUCurrentType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total current drawn by powered-on FRUs."
::= { cefcFRUPowerSupplyGroupEntry 4 }
cefcPowerRedundancyOperMode OBJECT-TYPE
SYNTAX PowerRedundancyType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The power supply redundancy operational mode."
::= { cefcFRUPowerSupplyGroupEntry 5 }
cefcPowerNonRedundantReason OBJECT-TYPE
SYNTAX INTEGER {
notApplicable(1),
unknown(2),
singleSupply(3),
mismatchedSupplies(4),
supplyError(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object has the value of notApplicable(1) when
cefcPowerRedundancyOperMode of the instance does not
have the value of nonRedundant(4).
The other values explain the reason why
cefcPowerRedundancyOperMode is nonRedundant(4), e.g.
unknown(2) the reason is not identified.
singleSupply(3) There is only one power supply
in the group.
mismatchedSupplies(4) There are more than one power
supplies in the groups. However
they are mismatched and can not
work redundantly.
supplyError(5) Some power supply or supplies
does or do not working properly."
::= { cefcFRUPowerSupplyGroupEntry 6 }
cefcTotalDrawnInlineCurrent OBJECT-TYPE
SYNTAX FRUCurrentType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total inline current drawn for inline operation."
::= { cefcFRUPowerSupplyGroupEntry 7 }
-- cefcFRUPowerStatusTable
cefcFRUPowerStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefcFRUPowerStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table lists the power-related administrative status
and operational status of the manageable components
in the system."
::= { cefcFRUPower 2 }
cefcFRUPowerStatusEntry OBJECT-TYPE
SYNTAX CefcFRUPowerStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An cefcFRUPowerStatusTable entry lists the desired
administrative status, the operational status of the
power manageable component, and the current required by
the component for operation.
Entries are created by the agent at system power-up or
the insertion of the component. Entries are deleted by
the agent at the removal of the component.
Only components with power control are listed in the
table."
INDEX { entPhysicalIndex }
::= { cefcFRUPowerStatusTable 1 }
CefcFRUPowerStatusEntry ::= SEQUENCE {
cefcFRUPowerAdminStatus PowerAdminType,
cefcFRUPowerOperStatus PowerOperType,
cefcFRUCurrent FRUCurrentType,
cefcFRUPowerCapability BITS,
cefcFRURealTimeCurrent FRUCurrentType
}
cefcFRUPowerAdminStatus OBJECT-TYPE
SYNTAX PowerAdminType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Administratively desired FRU power state."
::= { cefcFRUPowerStatusEntry 1 }
cefcFRUPowerOperStatus OBJECT-TYPE
SYNTAX PowerOperType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Operational FRU power state."
::= { cefcFRUPowerStatusEntry 2 }
cefcFRUCurrent OBJECT-TYPE
SYNTAX FRUCurrentType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current supplied by the FRU (positive values)
or current required to operate the FRU (negative values)."
::= { cefcFRUPowerStatusEntry 3 }
cefcFRUPowerCapability OBJECT-TYPE
SYNTAX BITS {
realTimeCurrent(0)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the set of supported power capabilities
of the FRU.
realTimeCurrent(0) -
cefcFRURealTimeCurrent is supported by the FRU."
::= { cefcFRUPowerStatusEntry 4 }
cefcFRURealTimeCurrent OBJECT-TYPE
SYNTAX FRUCurrentType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the realtime value of current supplied
by the FRU (positive values) or the realtime value of current
drawn by the FRU (negative values)."
::= { cefcFRUPowerStatusEntry 5 }
-- cefcMaxDefaultInLinePower
cefcMaxDefaultInLinePower OBJECT-TYPE
SYNTAX Integer32 (0..12500)
UNITS "miliwatts"
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"The system will provide power to the device connecting
to the FRU if the device needs power, like an IP Phone.
We call the providing power inline power.
This MIB object controls the maximum default inline power
for the device connecting to the FRU in the system. If the
maximum default inline power of the device is greater than
the maximum value reportable by this object, then this
object should report its maximum reportable value (12500)
and cefcMaxDefaultHighInLinePower must be used to report
the actual maximum default inline power."
DEFVAL { 12500 }
::= { cefcFRUPower 3 }
-- cefcFRUPowerSupplyValueTable
cefcFRUPowerSupplyValueTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefcFRUPowerSupplyValueEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table lists the power capacity of a power FRU in the
system if it provides variable power. Power supplies usually
provide either system or inline power. They cannot be
controlled by software to dictate how they distribute power.
We can also have what are known as variable power supplies.
They can provide both system and inline power and can be
varied within hardware defined ranges for system and inline
limited by a total maximum combined output. They could be
configured by the user via CLI or SNMP or be controlled by
software internally.
This table supplements the information in the
cefcFRUPowerStatusTable for power supply FRUs. The
cefcFRUCurrent attribute in that table provides the overall
current the power supply FRU can provide while this table
gives us the individual contribution towards system and
inline power."
::= { cefcFRUPower 4 }
cefcFRUPowerSupplyValueEntry OBJECT-TYPE
SYNTAX CefcFRUPowerSupplyValueEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An cefcFRUPowerSupplyValueTable entry lists the current
provided by the FRU for operation.
Entries are created by the agent at system power-up or
FRU insertion. Entries are deleted by the agent at FRU
removal.
Only power supply FRUs are listed in the table."
INDEX { entPhysicalIndex }
::= { cefcFRUPowerSupplyValueTable 1 }
CefcFRUPowerSupplyValueEntry ::= SEQUENCE {
cefcFRUTotalSystemCurrent FRUCurrentType,
cefcFRUDrawnSystemCurrent FRUCurrentType,
cefcFRUTotalInlineCurrent FRUCurrentType,
cefcFRUDrawnInlineCurrent FRUCurrentType,
cefcFRUActualInputCurrent FRUCurrentType,
cefcFRUActualOutputCurrent FRUCurrentType
}
cefcFRUTotalSystemCurrent OBJECT-TYPE
SYNTAX FRUCurrentType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Total current that could be supplied by the FRU (positive
values) for system operations."
::= { cefcFRUPowerSupplyValueEntry 1 }
cefcFRUDrawnSystemCurrent OBJECT-TYPE
SYNTAX FRUCurrentType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Amount of current drawn by the FRU's in the system towards
system operations from this FRU"
::= { cefcFRUPowerSupplyValueEntry 2 }
cefcFRUTotalInlineCurrent OBJECT-TYPE
SYNTAX FRUCurrentType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Total current supplied by the FRU (positive values) for
inline operations."
::= { cefcFRUPowerSupplyValueEntry 3 }
cefcFRUDrawnInlineCurrent OBJECT-TYPE
SYNTAX FRUCurrentType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Amount of current that is being drawn from this FRU for inline
operation."
::= { cefcFRUPowerSupplyValueEntry 4 }
cefcFRUActualInputCurrent OBJECT-TYPE
SYNTAX FRUCurrentType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Amount of actual input current of this power supply."
::= { cefcFRUPowerSupplyValueEntry 5 }
cefcFRUActualOutputCurrent OBJECT-TYPE
SYNTAX FRUCurrentType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Amount of actual output current of this power supply."
::= { cefcFRUPowerSupplyValueEntry 6 }
cefcMaxDefaultHighInLinePower OBJECT-TYPE
SYNTAX Unsigned32
UNITS "miliwatts"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The system will provide power to the device connecting
to the FRU if the device needs power, like an IP Phone.
We call the providing power inline power.
This MIB object controls the maximum default inline power
for the device connecting to the FRU in the system."
::= { cefcFRUPower 5 }
-- cefcModuleTable
cefcModuleTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefcModuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A cefcModuleTable entry lists the operational and
administrative status information for ENTITY-MIB
entPhysicalTable entries for manageable components
of type PhysicalClass module(9)."
::= { cefcModule 1 }
cefcModuleEntry OBJECT-TYPE
SYNTAX CefcModuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A cefcModuleStatusTable entry lists the operational and
administrative status information for ENTITY-MIB
entPhysicalTable entries for manageable components
of type PhysicalClass module(9).
Entries are created by the agent at the system power-up or
module insertion.
Entries are deleted by the agent upon module removal."
INDEX { entPhysicalIndex }
::= { cefcModuleTable 1 }
CefcModuleEntry ::= SEQUENCE {
cefcModuleAdminStatus ModuleAdminType,
cefcModuleOperStatus ModuleOperType,
cefcModuleResetReason ModuleResetReasonType,
cefcModuleStatusLastChangeTime TimeStamp,
cefcModuleLastClearConfigTime TimeStamp,
cefcModuleResetReasonDescription DisplayString,
cefcModuleStateChangeReasonDescr DisplayString,
cefcModuleUpTime FRUTimeSeconds,
cefcVmModuleOperStatus CefcVmModuleOperType,
cefcVmModuleStatusLastChangeTime TimeStamp
}
cefcModuleAdminStatus OBJECT-TYPE
SYNTAX ModuleAdminType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object provides administrative control of the
module."
::= { cefcModuleEntry 1 }
cefcModuleOperStatus OBJECT-TYPE
SYNTAX ModuleOperType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object shows the module's operational state."
::= { cefcModuleEntry 2 }
cefcModuleResetReason OBJECT-TYPE
SYNTAX ModuleResetReasonType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the reason for the last reset performed
on the module."
::= { cefcModuleEntry 3 }
cefcModuleStatusLastChangeTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime at the time the cefcModuleOperStatus
is changed."
::= { cefcModuleEntry 4 }
cefcModuleLastClearConfigTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when the
configuration was most recently cleared."
::= { cefcModuleEntry 5 }
cefcModuleResetReasonDescription OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A description qualifying the module reset reason
specified in cefcModuleResetReason.
Examples:
command xyz
missing task
switch over
watchdog timeout
etc.
cefcModuleResetReasonDescription is for display purposes only.
NMS applications must not parse."
::= { cefcModuleEntry 6 }
cefcModuleStateChangeReasonDescr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object displays human-readable textual string which
describes the cause of the last state change of the
module. This object contains zero length string
if no meaningful reason could be provided.
Examples:
'Invalid software version'
'Software download failed'
'Software version mismatch'
'Module is in standby state'
etc.
This object is for display purposes only.
NMS applications must not parse this object
and take any decision based on its value."
::= { cefcModuleEntry 7 }
cefcModuleUpTime OBJECT-TYPE
SYNTAX FRUTimeSeconds
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides the up time for the module
since it was last re-initialized.
This object is not persistent; if a module reset,
restart, power off, the up time starts from zero."
::= { cefcModuleEntry 8 }
cefcVmModuleOperStatus OBJECT-TYPE
SYNTAX CefcVmModuleOperType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the VM module's operational state."
::= { cefcModuleEntry 9 }
cefcVmModuleStatusLastChangeTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime at the time the cefcVmModuleOperStatus
is changed."
::= { cefcModuleEntry 10 }
-- cefcIntelliModuleTable
cefcIntelliModuleTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefcIntelliModuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table sparsely augments the
cefcModuleTable (i.e., every row in
this table corresponds to a row in
the cefcModuleTable but not necessarily
vice-versa).
A cefcIntelliModuleTable entry lists the
information specific to intelligent
modules which cannot be provided by the
cefcModuleTable."
::= { cefcModule 2 }
cefcIntelliModuleEntry OBJECT-TYPE
SYNTAX CefcIntelliModuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A cefcIntelliModuleTable entry lists the
information specific to an intelligent
module which cannot be provided by
this module's corresponding instance in
the cefcModuleTable. Only an intelligent
module with Internet address configured has
its entry here.
An entry of this table is created if an
intelligent module is detected by the
managed system and its management Internet
address is configured on the intelligent
module.
An entry of this table is deleted if the
removal of Internet address configuration of
this module or the module itself."
INDEX { entPhysicalIndex }
::= { cefcIntelliModuleTable 1 }
CefcIntelliModuleEntry ::= SEQUENCE {
cefcIntelliModuleIPAddrType InetAddressType,
cefcIntelliModuleIPAddr InetAddress
}
cefcIntelliModuleIPAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of Internet address by which the
intelligent module is reachable."
::= { cefcIntelliModuleEntry 1 }
cefcIntelliModuleIPAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Internet address configured
for the intelligent module.
The type of this address is
determined by the value of the object
cefcIntelliModuleIPAddrType."
::= { cefcIntelliModuleEntry 2 }
cefcModuleLocalSwitchingTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefcModuleLocalSwitchingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table sparsely augments the cefcModuleTable
(i.e., every row in this table corresponds to a row in
the cefcModuleTable but not necessarily vice-versa).
A cefcModuleLocalSwitchingTable entry lists the
information specific to local switching capable
modules which cannot be provided by the
cefcModuleTable."
::= { cefcModule 3 }
cefcModuleLocalSwitchingEntry OBJECT-TYPE
SYNTAX CefcModuleLocalSwitchingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A cefcModuleLocalSwitchingTable entry lists the
information specific to a local switching capable
module which cannot be provided by this module's
corresponding instance in the cefcModuleTable.
Only a module which is capable of local switching
has its entry here.
An entry of this table is created if a module which
is capable of local switching is detected by the
managed system.
An entry of this table is deleted if the
removal of this module."
INDEX { entPhysicalIndex }
::= { cefcModuleLocalSwitchingTable 1 }
CefcModuleLocalSwitchingEntry ::= SEQUENCE {
cefcModuleLocalSwitchingMode INTEGER
}
cefcModuleLocalSwitchingMode OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the mode of local switching.
enabled(1) - local switching is enabled.
disabled(2) - local switching is disabled."
::= { cefcModuleLocalSwitchingEntry 1 }
-- cefcFanTrayStatusTable
cefcFanTrayStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefcFanTrayStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the operational status information
for all ENTITY-MIB entPhysicalTable entries which have
an entPhysicalClass of 'fan'; specifically, all
entPhysicalTable entries which represent either: one
physical fan, or a single physical 'fan tray' which is a
manufactured (inseparable in the field) combination of
multiple fans."
::= { cefcFRUFan 1 }
cefcFanTrayStatusEntry OBJECT-TYPE
SYNTAX CefcFanTrayStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An cefcFanTrayStatusTable entry lists the operational
status information for the ENTITY-MIB entPhysicalTable
entry which is identified by the value of entPhysicalIndex.
The value of entPhysicalClass for the identified entry will
be 'fan', and the represented physical entity will be
either: one physical fan, or a single physical 'fan tray'
which is a manufactured (inseparable in the field)
combination of multiple fans.
Entries are created by the agent at system power-up or
fan or fan tray insertion. Entries are deleted
by the agent at the fan or fan tray removal."
INDEX { entPhysicalIndex }
::= { cefcFanTrayStatusTable 1 }
CefcFanTrayStatusEntry ::= SEQUENCE {
cefcFanTrayOperStatus INTEGER,
cefcFanTrayDirection INTEGER
}
cefcFanTrayOperStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
up(2),
down(3),
warning(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational state of the fan or fan tray.
unknown(1) - unknown.
up(2) - powered on.
down(3) - powered down.
warning(4) - partial failure, needs replacement
as soon as possible."
::= { cefcFanTrayStatusEntry 1 }
cefcFanTrayDirection OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
frontToBack(2),
backToFront(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The air flow direction of the fan or fan tray.
unknown(1) - unknown.
frontToBack(2) - air flow from front to back
backToFront(3) - air flow from back to front"
::= { cefcFanTrayStatusEntry 2 }
-- cefcFanTable
cefcFanTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefcFanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains a list of fan information
for all the fans that have entPhysicalTable
entries with 'fan' in the entPhysicalClass
and capable of providing management information
defined in this table."
::= { cefcFRUFan 2 }
cefcFanEntry OBJECT-TYPE
SYNTAX CefcFanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing management information
applicable to a particular fan unit.
Entries are created by the agent at system power-up or
fan or fan tray insertion. Entries are deleted
by the agent at the fan or fan tray removal."
INDEX { entPhysicalIndex }
::= { cefcFanTable 1 }
CefcFanEntry ::= SEQUENCE {
cefcFanSpeed Unsigned32,
cefcFanSpeedPercent CefcPercentOrMinusOne
}
cefcFanSpeed OBJECT-TYPE
SYNTAX Unsigned32
UNITS "rpm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The speed of the fan."
::= { cefcFanEntry 1 }
cefcFanSpeedPercent OBJECT-TYPE
SYNTAX CefcPercentOrMinusOne
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The percent of speed relative to the maximum
speed of the fan."
::= { cefcFanEntry 2 }
-- cefcPhysicalTable
cefcPhysicalTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefcPhysicalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains one row per physical entity."
::= { cefcPhysical 1 }
cefcPhysicalEntry OBJECT-TYPE
SYNTAX CefcPhysicalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular physical entity."
INDEX { entPhysicalIndex }
::= { cefcPhysicalTable 1 }
CefcPhysicalEntry ::= SEQUENCE {
cefcPhysicalStatus INTEGER
}
cefcPhysicalStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
supported(2),
unsupported(3),
incompatible(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of this physical entity.
other(1) - the status is not any of the listed below.
supported(2) - this entity is supported.
unsupported(3) - this entity is unsupported.
incompatible(4) - this entity is incompatible.
It would be unsupported(3), if the ID read from Serial
EPROM is not supported. It would be incompatible(4), if
in the present configuration this FRU is not supported."
::= { cefcPhysicalEntry 1 }
-- Power supply capacity
cefcPowerSupplyInputTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefcPowerSupplyInputEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the power input information
for all the power supplies that have entPhysicalTable
entries with 'powerSupply' in the entPhysicalClass.
The entries are created by the agent at the system
power-up or power supply insertion.
Entries are deleted by the agent upon power supply
removal.
The number of entries is determined by the number of
power supplies and number of power inputs on the power
supply."
::= { cefcPowerCapacity 1 }
cefcPowerSupplyInputEntry OBJECT-TYPE
SYNTAX CefcPowerSupplyInputEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing power input management information
applicable to a particular power supply and input."
INDEX {
entPhysicalIndex,
cefcPowerSupplyInputIndex
}
::= { cefcPowerSupplyInputTable 1 }
CefcPowerSupplyInputEntry ::= SEQUENCE {
cefcPowerSupplyInputIndex Unsigned32,
cefcPowerSupplyInputType INTEGER
}
cefcPowerSupplyInputIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique value, greater than zero, for each input on
a power supply."
::= { cefcPowerSupplyInputEntry 1 }
cefcPowerSupplyInputType OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
acLow(2),
acHigh(3),
dcLow(4),
dcHigh(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of an input power detected on the power
supply.
unknown(1): No input power is detected.
acLow(2): Lower rating AC input power is detected.
acHigh(3): Higher rating AC input power is detected.
dcLow(4): Lower rating DC input power is detected.
dcHigh(5): Higher rating DC input power is detected."
::= { cefcPowerSupplyInputEntry 2 }
cefcPowerSupplyOutputTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefcPowerSupplyOutputEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains a list of possible output
mode for the power supplies, whose ENTITY-MIB
entPhysicalTable entries have an entPhysicalClass
of 'powerSupply'. It also indicate which mode
is the operational mode within the system."
::= { cefcPowerCapacity 2 }
cefcPowerSupplyOutputEntry OBJECT-TYPE
SYNTAX CefcPowerSupplyOutputEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A cefcPowerSupplyOutputTable entry lists the
power output capacity and its operational status
for manageable components of type PhysicalClass
'powerSupply'.
Entries are created by the agent at the system
power-up or power supply insertion.
Entries are deleted by the agent upon power supply
removal.
The number of entries of a power supply is determined
by the power supply."
INDEX {
entPhysicalIndex,
cefcPSOutputModeIndex
}
::= { cefcPowerSupplyOutputTable 1 }
CefcPowerSupplyOutputEntry ::= SEQUENCE {
cefcPSOutputModeIndex Unsigned32,
cefcPSOutputModeCurrent FRUCurrentType,
cefcPSOutputModeInOperation TruthValue
}
cefcPSOutputModeIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique value, greater than zero, for each
possible output mode on a power supply."
::= { cefcPowerSupplyOutputEntry 1 }
cefcPSOutputModeCurrent OBJECT-TYPE
SYNTAX FRUCurrentType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The output capacity of the power supply."
::= { cefcPowerSupplyOutputEntry 2 }
cefcPSOutputModeInOperation OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A value of 'true' indicates that this mode is the
operational mode of the power supply output
capacity.
A value of 'false' indicates that this mode is not
the operational mode of the power supply output
capacity.
For a given power supply's entPhysicalIndex,
at most one instance of this object can have the
value of true(1)."
::= { cefcPowerSupplyOutputEntry 3 }
-- Chassis cooling management
cefcChassisCoolingTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefcChassisCoolingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the cooling capacity
information of the chassis whose ENTITY-MIB
entPhysicalTable entries have an
entPhysicalClass of 'chassis'."
::= { cefcCooling 1 }
cefcChassisCoolingEntry OBJECT-TYPE
SYNTAX CefcChassisCoolingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A cefcChassisCoolingEntry lists the maximum
cooling capacity that could be provided
for one slot on the manageable components of type
PhysicalClass 'chassis'.
Entries are created by the agent if the corresponding
entry is created in ENTITY-MIB entPhysicalTable.
Entries are deleted by the agent if the corresponding
entry is deleted in ENTITY-MIB entPhysicalTable."
INDEX { entPhysicalIndex }
::= { cefcChassisCoolingTable 1 }
CefcChassisCoolingEntry ::= SEQUENCE {
cefcChassisPerSlotCoolingCap Unsigned32,
cefcChassisPerSlotCoolingUnit FRUCoolingUnit
}
cefcChassisPerSlotCoolingCap OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum cooling capacity that could be provided
for any slot in this chassis.
The default unit of the cooling capacity is 'cfm', if
cefcChassisPerSlotCoolingUnit is not supported."
::= { cefcChassisCoolingEntry 1 }
cefcChassisPerSlotCoolingUnit OBJECT-TYPE
SYNTAX FRUCoolingUnit
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unit of the maximum cooling capacity for any slot
in this chassis."
::= { cefcChassisCoolingEntry 2 }
cefcFanCoolingTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefcFanCoolingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the cooling capacity
information of the fans whose ENTITY-MIB
entPhysicalTable entries have an
entPhysicalClass of 'fan'."
::= { cefcCooling 2 }
cefcFanCoolingEntry OBJECT-TYPE
SYNTAX CefcFanCoolingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A cefcFanCoolingEntry lists the cooling
capacity that is provided by the
manageable components of type PhysicalClass
'fan'.
Entries are created by the agent if the corresponding
entry is created in ENTITY-MIB entPhysicalTable.
Entries are deleted by the agent if the corresponding
entry is deleted in ENTITY-MIB entPhysicalTable."
INDEX { entPhysicalIndex }
::= { cefcFanCoolingTable 1 }
CefcFanCoolingEntry ::= SEQUENCE {
cefcFanCoolingCapacity Unsigned32,
cefcFanCoolingCapacityUnit FRUCoolingUnit
}
cefcFanCoolingCapacity OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cooling capacity that is provided by this fan.
The default unit of the fan cooling capacity is 'cfm',
if cefcFanCoolingCapacityUnit is not supported."
::= { cefcFanCoolingEntry 1 }
cefcFanCoolingCapacityUnit OBJECT-TYPE
SYNTAX FRUCoolingUnit
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unit of the fan cooling capacity."
::= { cefcFanCoolingEntry 2 }
cefcModuleCoolingTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefcModuleCoolingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the cooling requirement for
all the manageable components of type entPhysicalClass
'module'."
::= { cefcCooling 3 }
cefcModuleCoolingEntry OBJECT-TYPE
SYNTAX CefcModuleCoolingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A cefcModuleCoolingEntry lists the cooling
requirement for a manageable components of type
entPhysicalClass 'module'.
Entries are created by the agent at the system
power-up or module insertion.
Entries are deleted by the agent upon module
removal."
INDEX { entPhysicalIndex }
::= { cefcModuleCoolingTable 1 }
CefcModuleCoolingEntry ::= SEQUENCE {
cefcModuleCooling Unsigned32,
cefcModuleCoolingUnit FRUCoolingUnit
}
cefcModuleCooling OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cooling requirement of the module and its daughter
cards.
The default unit of the module cooling requirement is
'cfm', if cefcModuleCoolingUnit is not supported."
::= { cefcModuleCoolingEntry 1 }
cefcModuleCoolingUnit OBJECT-TYPE
SYNTAX FRUCoolingUnit
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unit of the cooling requirement of the module and its
daughter cards."
::= { cefcModuleCoolingEntry 2 }
cefcFanCoolingCapTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefcFanCoolingCapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains a list of the possible cooling
capacity modes and properties of the fans, whose
ENTITY-MIB entPhysicalTable entries have an
entPhysicalClass of 'fan'."
::= { cefcCooling 4 }
cefcFanCoolingCapEntry OBJECT-TYPE
SYNTAX CefcFanCoolingCapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A cefcFanCoolingCapacityEntry lists the cooling
capacity mode of a manageable components of type
entPhysicalClass 'fan'. It also lists the corresponding
cooling capacity provided and the power consumed
by the fan on this mode.
Entries are created by the agent if the corresponding
entry is created in ENTITY-MIB entPhysicalTable.
Entries are deleted by the agent if the corresponding
entry is deleted in ENTITY-MIB entPhysicalTable."
INDEX {
entPhysicalIndex,
cefcFanCoolingCapIndex
}
::= { cefcFanCoolingCapTable 1 }
CefcFanCoolingCapEntry ::= SEQUENCE {
cefcFanCoolingCapIndex Unsigned32,
cefcFanCoolingCapModeDescr SnmpAdminString,
cefcFanCoolingCapCapacity Unsigned32,
cefcFanCoolingCapCurrent FRUCurrentType,
cefcFanCoolingCapCapacityUnit FRUCoolingUnit
}
cefcFanCoolingCapIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..4095)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary value that uniquely identifies a
cooling capacity mode for a fan."
::= { cefcFanCoolingCapEntry 1 }
cefcFanCoolingCapModeDescr OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A textual description of the cooling capacity
mode of the fan."
::= { cefcFanCoolingCapEntry 2 }
cefcFanCoolingCapCapacity OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cooling capacity that could be provided
when the fan is operating in this mode.
The default unit of the cooling capacity is 'cfm',
if cefcFanCoolingCapCapacityUnit is not supported."
::= { cefcFanCoolingCapEntry 3 }
cefcFanCoolingCapCurrent OBJECT-TYPE
SYNTAX FRUCurrentType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The power consumption of the fan when operating in
in this mode."
::= { cefcFanCoolingCapEntry 4 }
cefcFanCoolingCapCapacityUnit OBJECT-TYPE
SYNTAX FRUCoolingUnit
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unit of the fan cooling capacity when operating
in this mode."
::= { cefcFanCoolingCapEntry 5 }
-- Connector rating management
cefcConnectorRatingTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefcConnectorRatingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the connector power
ratings of FRUs.
Only components with power connector rating
management are listed in this table."
::= { cefcConnector 1 }
cefcConnectorRatingEntry OBJECT-TYPE
SYNTAX CefcConnectorRatingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A cefcConnectorRatingEntry lists the
power connector rating information of a
component in the system.
An entry or entries are created by the agent
when an physical entity with connector rating
management is added to the ENTITY-MIB
entPhysicalTable. An entry is deleted
by the agent at the entity removal."
INDEX { entPhysicalIndex }
::= { cefcConnectorRatingTable 1 }
CefcConnectorRatingEntry ::= SEQUENCE {
cefcConnectorRating FRUCurrentType
}
cefcConnectorRating OBJECT-TYPE
SYNTAX FRUCurrentType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum power that the component's
connector can withdraw."
::= { cefcConnectorRatingEntry 1 }
cefcModulePowerConsumptionTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefcModulePowerConsumptionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the total power consumption
information for modules whose ENTITY-MIB
entPhysicalTable entries have an entPhysicalClass
of 'module'."
::= { cefcConnector 2 }
cefcModulePowerConsumptionEntry OBJECT-TYPE
SYNTAX CefcModulePowerConsumptionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A cefcModulePowerConsumptionEntry lists the total
power consumption of a manageable components of type
entPhysicalClass 'module'.
Entries are created by the agent at the system
power-up or module insertion.
Entries are deleted by the agent upon module
removal."
INDEX { entPhysicalIndex }
::= { cefcModulePowerConsumptionTable 1 }
CefcModulePowerConsumptionEntry ::= SEQUENCE {
cefcModulePowerConsumption FRUCurrentType
}
cefcModulePowerConsumption OBJECT-TYPE
SYNTAX FRUCurrentType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The combined power consumption to operate the module
and its submodule(s) and inline-power device(s)."
::= { cefcModulePowerConsumptionEntry 1 }
-- notifications
cefcMIBEnableStatusNotification OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable indicates whether the system
produces the following notifications:
cefcModuleStatusChange, cefcPowerStatusChange,
cefcFRUInserted, cefcFRURemoved,
cefcUnrecognizedFRU, cefcFanTrayStatusChange
and cefcVmModuleStatusChangeNotif.
A false value will prevent these notifications
from being generated."
DEFVAL { false }
::= { cefcMIBNotificationEnables 1 }
cefcEnablePSOutputChangeNotif OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable indicates whether the system
produces the cefcPowerSupplyOutputChange
notifications when the output capacity of
a power supply has changed. A false value
will prevent this notification to generated."
DEFVAL { false }
::= { cefcMIBNotificationEnables 2 }
cefcMIBNotifications OBJECT IDENTIFIER
::= { cefcFRUMIBNotificationPrefix 0 }
cefcModuleStatusChange NOTIFICATION-TYPE
OBJECTS {
cefcModuleOperStatus,
cefcModuleStatusLastChangeTime
}
STATUS current
DESCRIPTION
"This notification is generated when the value of
cefcModuleOperStatus changes. It can be utilized by
an NMS to update the status of the module it is
managing."
::= { cefcMIBNotifications 1 }
cefcPowerStatusChange NOTIFICATION-TYPE
OBJECTS {
cefcFRUPowerOperStatus,
cefcFRUPowerAdminStatus
}
STATUS current
DESCRIPTION
"The cefcFRUPowerStatusChange notification indicates that
the power status of a FRU has changed. The varbind for this
notification indicates the entPhysicalIndex of the FRU,
and the new operational-status of the FRU."
::= { cefcMIBNotifications 2 }
cefcFRUInserted NOTIFICATION-TYPE
OBJECTS { entPhysicalContainedIn }
STATUS current
DESCRIPTION
"The cecfFRUInserted notification indicates that a FRU was
inserted. The varbind for this notification indicates the
entPhysicalIndex of the inserted FRU, and the entPhysicalIndex
of the FRU's container."
::= { cefcMIBNotifications 3 }
cefcFRURemoved NOTIFICATION-TYPE
OBJECTS { entPhysicalContainedIn }
STATUS current
DESCRIPTION
"The cefcFRURemoved notification indicates that a FRU was
removed. The varbind for this notification indicates the
entPhysicalIndex of the removed FRU, and the entPhysicalIndex
of the FRU's container."
::= { cefcMIBNotifications 4 }
cefcUnrecognizedFRU NOTIFICATION-TYPE
OBJECTS {
entPhysicalClass,
entPhysicalVendorType,
entPhysicalName,
entPhysicalModelName,
cefcPhysicalStatus
}
STATUS current
DESCRIPTION
"The cefcUnrecognizedFRU notification indicates that a FRU was
inserted whose product ID is not supported. The varbind for
this notification indicates the entPhysicalIndex of the
inserted FRU, the entPhysicalClass this FRU belongs to, the
entPhysicalVendorType of this FRU, the entPhysicalName
of the FRU, the entPhysicalModelName of the inserted FRU, and
the cefcPhysicalStatus telling the reason code for sending this
notification."
::= { cefcMIBNotifications 5 }
cefcFanTrayStatusChange NOTIFICATION-TYPE
OBJECTS { cefcFanTrayOperStatus }
STATUS current
DESCRIPTION
"This notification is generated when the value of
cefcFanTrayOperStatus changes."
::= { cefcMIBNotifications 6 }
cefcPowerSupplyOutputChange NOTIFICATION-TYPE
OBJECTS {
entPhysicalName,
entPhysicalModelName,
cefcPSOutputModeCurrent
}
STATUS current
DESCRIPTION
"The notification indicates that the power
supply's output capacity has changed.
This notification is triggered whenever one instance
of the power supply's cefcPSOutputModeInOperation
has transitioned from 'false' to 'true'."
::= { cefcMIBNotifications 7 }
cefcVmModuleStatusChangeNotif NOTIFICATION-TYPE
OBJECTS {
cefcVmModuleOperStatus,
cefcVmModuleStatusLastChangeTime
}
STATUS current
DESCRIPTION
"This notification is generated when the value of
cefcVmModuleOperStatus changes. It can be utilized by
an NMS to update the status of the module it is
managing."
::= { cefcMIBNotifications 8 }
-- conformance information
cefcMIBCompliances OBJECT IDENTIFIER
::= { cefcMIBConformance 1 }
cefcMIBGroups OBJECT IDENTIFIER
::= { cefcMIBConformance 2 }
-- compliance statements
cefcMIBPowerCompliance MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"An Entity-MIB implementation can implement this group to
provide FRU power status and control."
MODULE -- this module
MANDATORY-GROUPS { cefcMIBPowerModeGroup }
GROUP cefcMIBPowerFRUControlGroup
DESCRIPTION
"The cefcMIBPowerFRUControlGroup must be implemented
for FRUs that have power control"
::= { cefcMIBCompliances 1 }
cefcMIBPowerCompliance2 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"An Entity-MIB implementation can implement this group to
provide FRU power status and control."
MODULE -- this module
MANDATORY-GROUPS {
cefcMIBPowerModeGroup,
cefcMgmtNotificationsGroup
}
GROUP cefcMIBPowerFRUControlGroup
DESCRIPTION
"The cefcMIBPowerFRUControlGroup must be implemented
for FRUs that have power control"
GROUP cefcMIBModuleGroup
DESCRIPTION
"The cefcMIBModuleGroup must be implemented for
FRUs that are of module type."
GROUP cefcMIBInLinePowerControlGroup
DESCRIPTION
"The cefcMIBInLinePowerControlGroup must be implemented
for FRUs that have inline power control"
GROUP cefcMIBNotificationEnablesGroup
DESCRIPTION
"The cefcMIBNotificationEnablesGroup must be
implemented for FRUs that have notification"
::= { cefcMIBCompliances 2 }
cefcMIBPowerCompliance3 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"An Entity-MIB implementation can implement this group to
provide FRU power status and control."
MODULE -- this module
MANDATORY-GROUPS {
cefcMIBPowerModeGroup,
cefcMgmtNotificationsGroup
}
GROUP cefcMIBPowerFRUControlGroup
DESCRIPTION
"The cefcMIBPowerFRUControlGroup must be implemented
for FRUs that have power control"
GROUP cefcMIBModuleGroup
DESCRIPTION
"The cefcMIBModuleGroup must be implemented for
FRUs that are of module type."
GROUP cefcMIBInLinePowerControlGroup
DESCRIPTION
"The cefcMIBInLinePowerControlGroup must be
implemented for FRUs that have inline power control"
GROUP cefcMIBNotificationEnablesGroup
DESCRIPTION
"The cefcMIBNotificationEnablesGroup must be
implemented for FRUs that have notification"
GROUP cefcModuleGroupRev1
DESCRIPTION
"The cefcModuleGroupRev1 is not mandatory for
agents with FRUs that are of module type."
::= { cefcMIBCompliances 3 }
cefcMIBPowerCompliance4 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"An Entity-MIB implementation can implement this group to
provide FRU power status and control."
MODULE -- this module
MANDATORY-GROUPS {
cefcMIBPowerModeGroup,
cefcMgmtNotificationsGroup
}
GROUP cefcMIBPowerFRUControlGroup
DESCRIPTION
"The cefcMIBPowerFRUControlGroup must be implemented
for FRUs that have power control"
GROUP cefcMIBModuleGroup
DESCRIPTION
"The cefcMIBModuleGroup must be implemented for
FRUs that are of module type."
GROUP cefcMIBInLinePowerControlGroup
DESCRIPTION
"The cefcMIBInLinePowerControlGroup must be
implemented for FRUs that have inline power control"
GROUP cefcMIBNotificationEnablesGroup
DESCRIPTION
"The cefcMIBNotificationEnablesGroup must be
implemented for FRUs that have notification"
GROUP cefcModuleGroupRev1
DESCRIPTION
"The cefcModuleGroupRev1 is not mandatory for
agents with FRUs that are of module type."
GROUP cefcMIBPowerFRUValueGroup
DESCRIPTION
"The cefcMIBPowerFRUValueGroup must be implemented for
power supply FRUs that have variable output"
OBJECT cefcFRUTotalSystemCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcFRUDrawnSystemCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcFRUTotalInlineCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcFRUDrawnInlineCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
::= { cefcMIBCompliances 4 }
cefcMIBPowerCompliance5 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"An Entity-MIB implementation can implement this group to
provide FRU power status and control."
MODULE -- this module
MANDATORY-GROUPS {
cefcMIBPowerModeGroup,
cefcMgmtNotificationsGroup,
cefcMgmtNotificationsGroup2
}
GROUP cefcMIBPowerFRUControlGroup
DESCRIPTION
"The cefcMIBPowerFRUControlGroup must be implemented
for FRUs that have power control"
GROUP cefcMIBModuleGroup
DESCRIPTION
"The cefcMIBModuleGroup must be implemented for
FRUs that are of module type."
GROUP cefcMIBInLinePowerControlGroup
DESCRIPTION
"The cefcMIBInLinePowerControlGroup must be
implemented for FRUs that have inline power control"
GROUP cefcMIBNotificationEnablesGroup
DESCRIPTION
"The cefcMIBNotificationEnablesGroup must be
implemented for FRUs that have notification"
GROUP cefcModuleGroupRev1
DESCRIPTION
"The cefcModuleGroupRev1 is not mandatory for
agents with FRUs that are of module type."
GROUP cefcMIBPowerFRUValueGroup
DESCRIPTION
"The cefcMIBPowerFRUValueGroup must be implemented for
power supply FRUs that have variable output"
GROUP cefcMIBFanTrayStatusGroup
DESCRIPTION
"The cefcMIBFanTrayStatusGroup must be implemented
in all systems which can detect the status of Fan
Tray FRUs."
GROUP cefcMIBPhysicalGroup
DESCRIPTION
"The collection of objects which show information of
the Physical Entity."
OBJECT cefcFRUTotalSystemCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcFRUDrawnSystemCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcFRUTotalInlineCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcFRUDrawnInlineCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
::= { cefcMIBCompliances 5 }
cefcMIBPowerCompliance6 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"An Entity-MIB implementation can implement this group to
provide FRU power status and control."
MODULE -- this module
MANDATORY-GROUPS {
cefcMIBPowerModeGroup,
cefcMgmtNotificationsGroup
}
GROUP cefcMIBPowerFRUControlGroup
DESCRIPTION
"The cefcMIBPowerFRUControlGroup must be implemented
for FRUs that have power control"
GROUP cefcMIBModuleGroup
DESCRIPTION
"The cefcMIBModuleGroup must be implemented for
FRUs that are of module type."
GROUP cefcMIBInLinePowerControlGroupRev1
DESCRIPTION
"The cefcMIBInLinePowerControlGroup must be
implemented for FRUs that have inline power control"
GROUP cefcMIBNotificationEnablesGroup
DESCRIPTION
"The cefcMIBNotificationEnablesGroup must be
implemented for FRUs that have notification"
GROUP cefcModuleGroupRev1
DESCRIPTION
"The cefcModuleGroupRev1 is not mandatory for
agents with FRUs that are of module type."
GROUP cefcMIBPowerFRUValueGroup
DESCRIPTION
"The cefcMIBPowerFRUValueGroup must be implemented for
power supply FRUs that have variable output"
GROUP cefcMIBFanTrayStatusGroup
DESCRIPTION
"The cefcMIBFanTrayStatusGroup must be implemented
in all systems which can detect the status of Fan
Tray FRUs."
GROUP cefcMIBPhysicalGroup
DESCRIPTION
"The collection of objects which show information of
the Physical Entity."
GROUP cefcMgmtNotificationsGroup2
DESCRIPTION
"The implementation of this group of notifications
is optional."
GROUP cefcMIBPowerOperModeGroup
DESCRIPTION
"The cefcMIBPowerOperModeGroup must be
implemented for the device which supports
power supply operational modes."
GROUP cefcModuleExtGroup
DESCRIPTION
"Implementation of cefcModuleExtGroup is
optional."
GROUP cefcIntelliModuleGroup
DESCRIPTION
"Implementation of cefcModuleAddrGroup is
optional."
OBJECT cefcFRUTotalSystemCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcFRUDrawnSystemCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcFRUTotalInlineCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcFRUDrawnInlineCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcIntelliModuleIPAddrType
SYNTAX INTEGER {
ipv4(1)
}
DESCRIPTION
"An implementation is only required to
support IPv4 addresses."
::= { cefcMIBCompliances 6 }
cefcMIBPowerCompliance7 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"An Entity-MIB implementation can implement this group to
provide FRU power status and control."
MODULE -- this module
MANDATORY-GROUPS {
cefcMIBPowerModeGroup,
cefcMgmtNotificationsGroup
}
GROUP cefcMIBPowerFRUControlGroup
DESCRIPTION
"The cefcMIBPowerFRUControlGroup must be implemented
for FRUs that have power control"
GROUP cefcMIBModuleGroup
DESCRIPTION
"The cefcMIBModuleGroup must be implemented for
FRUs that are of module type."
GROUP cefcMIBInLinePowerControlGroupRev1
DESCRIPTION
"The cefcMIBInLinePowerControlGroup must be
implemented for FRUs that have inline power control"
GROUP cefcMIBNotificationEnablesGroup
DESCRIPTION
"The cefcMIBNotificationEnablesGroup must be
implemented for FRUs that have notification"
GROUP cefcModuleGroupRev1
DESCRIPTION
"The cefcModuleGroupRev1 is not mandatory for
agents with FRUs that are of module type."
GROUP cefcMIBPowerFRUValueGroup
DESCRIPTION
"The cefcMIBPowerFRUValueGroup must be implemented for
power supply FRUs that have variable output"
GROUP cefcMIBFanTrayStatusGroup
DESCRIPTION
"The cefcMIBFanTrayStatusGroup must be implemented
in all systems which can detect the status of Fan
Tray FRUs."
GROUP cefcMIBPhysicalGroup
DESCRIPTION
"The collection of objects which show information of
the Physical Entity."
GROUP cefcMgmtNotificationsGroup2
DESCRIPTION
"The implementation of this group of notifications
is optional."
GROUP cefcMIBPowerOperModeGroup
DESCRIPTION
"The cefcMIBPowerOperModeGroup must be
implemented for the device which supports
power supply operational modes."
GROUP cefcModuleExtGroup
DESCRIPTION
"Implementation of cefcModuleExtGroup is
optional."
GROUP cefcIntelliModuleGroup
DESCRIPTION
"Implementation of cefcModuleAddrGroup is
optional."
GROUP cefcPowerCapacityGroup
DESCRIPTION
"This group is mandatory for devices which
have the capability to populate power capacity
information."
GROUP cefcCoolingGroup
DESCRIPTION
"This group is mandatory for devices which
have the capability to populate cooling
capacity information."
GROUP cefcConnectorRatingGroup
DESCRIPTION
"This group is mandatory for devices which
have the capability to populate power
connector rating and module power total
consumption information."
GROUP cefcMIBNotificationEnablesGroup2
DESCRIPTION
"This group is mandatory for devices which
support the SNMP notification to notify
the power supply output capacity changes."
GROUP cefcMgmtNotificationsGroup3
DESCRIPTION
"This group is mandatory for devices which
support the SNMP notification to notify
the power supply output capacity changes."
OBJECT cefcFRUTotalSystemCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcFRUDrawnSystemCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcFRUTotalInlineCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcFRUDrawnInlineCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcIntelliModuleIPAddrType
SYNTAX INTEGER {
ipv4(1)
}
DESCRIPTION
"An implementation is only required to
support IPv4 addresses."
::= { cefcMIBCompliances 7 }
cefcMIBPowerCompliance8 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"An Entity-MIB implementation can implement this group to
provide FRU power status and control."
MODULE -- this module
MANDATORY-GROUPS {
cefcMIBPowerModeGroup,
cefcMgmtNotificationsGroup
}
GROUP cefcMIBPowerFRUControlGroup
DESCRIPTION
"The cefcMIBPowerFRUControlGroup must be implemented
for FRUs that have power control"
GROUP cefcMIBModuleGroup
DESCRIPTION
"The cefcMIBModuleGroup must be implemented for
FRUs that are of module type."
GROUP cefcMIBInLinePowerControlGroupRev1
DESCRIPTION
"The cefcMIBInLinePowerControlGroup must be
implemented for FRUs that have inline power control"
GROUP cefcMIBNotificationEnablesGroup
DESCRIPTION
"The cefcMIBNotificationEnablesGroup must be
implemented for FRUs that have notification"
GROUP cefcModuleGroupRev1
DESCRIPTION
"The cefcModuleGroupRev1 is not mandatory for
agents with FRUs that are of module type."
GROUP cefcMIBPowerFRUValueGroup
DESCRIPTION
"The cefcMIBPowerFRUValueGroup must be implemented for
power supply FRUs that have variable output"
GROUP cefcMIBFanTrayStatusGroup
DESCRIPTION
"The cefcMIBFanTrayStatusGroup must be implemented
in all systems which can detect the status of Fan
Tray FRUs."
GROUP cefcMIBPhysicalGroup
DESCRIPTION
"The collection of objects which show information of
the Physical Entity."
GROUP cefcMgmtNotificationsGroup2
DESCRIPTION
"The implementation of this group of notifications
is optional."
GROUP cefcMIBPowerOperModeGroup
DESCRIPTION
"The cefcMIBPowerOperModeGroup must be
implemented for the device which supports
power supply operational modes."
GROUP cefcModuleExtGroup
DESCRIPTION
"Implementation of cefcModuleExtGroup is
optional."
GROUP cefcIntelliModuleGroup
DESCRIPTION
"Implementation of cefcModuleAddrGroup is
optional."
GROUP cefcPowerCapacityGroup
DESCRIPTION
"This group is mandatory for devices which
have the capability to populate power capacity
information."
GROUP cefcCoolingGroup
DESCRIPTION
"This group is mandatory for devices which
have the capability to populate cooling
capacity information."
GROUP cefcConnectorRatingGroup
DESCRIPTION
"This group is mandatory for devices which
have the capability to populate power
connector rating and module power total
consumption information."
GROUP cefcMIBNotificationEnablesGroup2
DESCRIPTION
"This group is mandatory for devices which
support the SNMP notification to notify
the power supply output capacity changes."
GROUP cefcMgmtNotificationsGroup3
DESCRIPTION
"This group is mandatory for devices which
support the SNMP notification to notify
the power supply output capacity changes."
GROUP cefcMIBInLinePowerCurrentGroup
DESCRIPTION
"This group is mandatory for devices which
have the capability to populate inline power
usage information."
GROUP cefcMIBPowerRedundancyInfoGroup
DESCRIPTION
"This group is mandatory for devices which
have the capability to populate the reason
why the redundancy of the power supplies cannot
be achieved."
GROUP cefcFanCoolingCapGroup
DESCRIPTION
"This group is mandatory for devices which
can provide the cooling capacity modes
and properties of the fans in the system."
OBJECT cefcFRUTotalSystemCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcFRUDrawnSystemCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcFRUTotalInlineCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcFRUDrawnInlineCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcIntelliModuleIPAddrType
SYNTAX INTEGER {
ipv4(1)
}
DESCRIPTION
"An implementation is only required to
support IPv4 addresses."
::= { cefcMIBCompliances 8 }
cefcMIBPowerCompliance9 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"An Entity-MIB implementation can implement this group to
provide FRU power status and control."
MODULE -- this module
MANDATORY-GROUPS {
cefcMIBPowerModeGroup,
cefcMgmtNotificationsGroup
}
GROUP cefcMIBPowerFRUControlGroup
DESCRIPTION
"The cefcMIBPowerFRUControlGroup must be implemented
for FRUs that have power control"
GROUP cefcMIBModuleGroup
DESCRIPTION
"The cefcMIBModuleGroup must be implemented for
FRUs that are of module type."
GROUP cefcMIBInLinePowerControlGroupRev1
DESCRIPTION
"The cefcMIBInLinePowerControlGroup must be
implemented for FRUs that have inline power control"
GROUP cefcMIBNotificationEnablesGroup
DESCRIPTION
"The cefcMIBNotificationEnablesGroup must be
implemented for FRUs that have notification"
GROUP cefcModuleGroupRev1
DESCRIPTION
"The cefcModuleGroupRev1 is not mandatory for
agents with FRUs that are of module type."
GROUP cefcMIBPowerFRUValueGroup
DESCRIPTION
"The cefcMIBPowerFRUValueGroup must be implemented for
power supply FRUs that have variable output"
GROUP cefcMIBFanTrayStatusGroup
DESCRIPTION
"The cefcMIBFanTrayStatusGroup must be implemented
in all systems which can detect the status of Fan
Tray FRUs."
GROUP cefcMIBPhysicalGroup
DESCRIPTION
"The collection of objects which show information of
the Physical Entity."
GROUP cefcMgmtNotificationsGroup2
DESCRIPTION
"The implementation of this group of notifications
is optional."
GROUP cefcMIBPowerOperModeGroup
DESCRIPTION
"The cefcMIBPowerOperModeGroup must be
implemented for the device which supports
power supply operational modes."
GROUP cefcModuleExtGroup
DESCRIPTION
"Implementation of cefcModuleExtGroup is
optional."
GROUP cefcIntelliModuleGroup
DESCRIPTION
"Implementation of cefcModuleAddrGroup is
optional."
GROUP cefcPowerCapacityGroup
DESCRIPTION
"This group is mandatory for devices which
have the capability to populate power capacity
information."
GROUP cefcConnectorRatingGroup
DESCRIPTION
"This group is mandatory for devices which
have the capability to populate power
connector rating and module power total
consumption information."
GROUP cefcMIBNotificationEnablesGroup2
DESCRIPTION
"This group is mandatory for devices which
support the SNMP notification to notify
the power supply output capacity changes."
GROUP cefcMgmtNotificationsGroup3
DESCRIPTION
"This group is mandatory for devices which
support the SNMP notification to notify
the power supply output capacity changes."
GROUP cefcMIBInLinePowerCurrentGroup
DESCRIPTION
"This group is mandatory for devices which
have the capability to populate inline power
usage information."
GROUP cefcMIBPowerRedundancyInfoGroup
DESCRIPTION
"This group is mandatory for devices which
have the capability to populate the reason
why the redundancy of the power supplies cannot
be achived."
GROUP cefcFanCoolingCapGroup
DESCRIPTION
"This group is mandatory for devices which
can provide the cooling capacity modes
and properties of the fans in the system."
GROUP cefcMIBModuleLocalSwitchingGroup
DESCRIPTION
"This group is mandatory for devices which
support modules with local switching
functionality."
GROUP cefcFRUPowerRealTimeStatusGroup
DESCRIPTION
"This group is mandatory for devices which
support power related realtime status."
GROUP cefcFRUPowerCapabilityGroup
DESCRIPTION
"This group is mandatory for devices which
support power related capability information."
GROUP cefcFRUCoolingUnitGroup
DESCRIPTION
"This group is mandatory for devices which
support the cooling unit information."
GROUP cefcFRUFanCoolingUnitGroup
DESCRIPTION
"This group is mandatory for devices which
support the fan capacity cooling unit information."
GROUP cefcCoolingGroup2
DESCRIPTION
"This group is mandatory for devices which
support the chassis cooling capacity and module
cooling requirement."
GROUP cefcFanCoolingGroup
DESCRIPTION
"This group is mandatory for devices which
support the fan cooling capacity information."
OBJECT cefcFRUTotalSystemCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcFRUDrawnSystemCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcFRUTotalInlineCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcFRUDrawnInlineCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcModuleLocalSwitchingMode
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcIntelliModuleIPAddrType
SYNTAX INTEGER {
ipv4(1)
}
DESCRIPTION
"An implementation is only required to
support IPv4 addresses."
::= { cefcMIBCompliances 9 }
cefcMIBPowerCompliance10 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"An Entity-MIB implementation can implement this group to
provide FRU power status and control."
MODULE -- this module
MANDATORY-GROUPS {
cefcMIBPowerModeGroup,
cefcMgmtNotificationsGroup
}
GROUP cefcMIBPowerFRUControlGroup
DESCRIPTION
"The cefcMIBPowerFRUControlGroup must be implemented
for FRUs that have power control"
GROUP cefcMIBModuleGroup
DESCRIPTION
"The cefcMIBModuleGroup must be implemented for
FRUs that are of module type."
GROUP cefcMIBInLinePowerControlGroupRev1
DESCRIPTION
"The cefcMIBInLinePowerControlGroup must be
implemented for FRUs that have inline power control"
GROUP cefcMIBNotificationEnablesGroup
DESCRIPTION
"The cefcMIBNotificationEnablesGroup must be
implemented for FRUs that have notification"
GROUP cefcModuleGroupRev1
DESCRIPTION
"The cefcModuleGroupRev1 is not mandatory for
agents with FRUs that are of module type."
GROUP cefcMIBPowerFRUValueGroup
DESCRIPTION
"The cefcMIBPowerFRUValueGroup must be implemented for
power supply FRUs that have variable output"
GROUP cefcMIBFanTrayStatusGroup
DESCRIPTION
"The cefcMIBFanTrayStatusGroup must be implemented
in all systems which can detect the status of Fan
Tray FRUs."
GROUP cefcMIBPhysicalGroup
DESCRIPTION
"The collection of objects which show information of
the Physical Entity."
GROUP cefcMgmtNotificationsGroup2
DESCRIPTION
"The implementation of this group of notifications
is optional."
GROUP cefcMIBPowerOperModeGroup
DESCRIPTION
"The cefcMIBPowerOperModeGroup must be
implemented for the device which supports
power supply operational modes."
GROUP cefcModuleExtGroup
DESCRIPTION
"Implementation of cefcModuleExtGroup is
optional."
GROUP cefcIntelliModuleGroup
DESCRIPTION
"Implementation of cefcModuleAddrGroup is
optional."
GROUP cefcPowerCapacityGroup
DESCRIPTION
"This group is mandatory for devices which
have the capability to populate power capacity
information."
GROUP cefcConnectorRatingGroup
DESCRIPTION
"This group is mandatory for devices which
have the capability to populate power
connector rating and module power total
consumption information."
GROUP cefcMIBNotificationEnablesGroup2
DESCRIPTION
"This group is mandatory for devices which
support the SNMP notification to notify
the power supply output capacity changes."
GROUP cefcMgmtNotificationsGroup3
DESCRIPTION
"This group is mandatory for devices which
support the SNMP notification to notify
the power supply output capacity changes."
GROUP cefcMIBInLinePowerCurrentGroup
DESCRIPTION
"This group is mandatory for devices which
have the capability to populate inline power
usage information."
GROUP cefcMIBPowerRedundancyInfoGroup
DESCRIPTION
"This group is mandatory for devices which
have the capability to populate the reason
why the redundancy of the power supplies cannot
be achived."
GROUP cefcFanCoolingCapGroup
DESCRIPTION
"This group is mandatory for devices which
can provide the cooling capacity modes
and properties of the fans in the system."
GROUP cefcMIBModuleLocalSwitchingGroup
DESCRIPTION
"This group is mandatory for devices which
support modules with local switching
functionality."
GROUP cefcFRUPowerRealTimeStatusGroup
DESCRIPTION
"This group is mandatory for devices which
support power related realtime status."
GROUP cefcFRUPowerCapabilityGroup
DESCRIPTION
"This group is mandatory for devices which
support power related capability information."
GROUP cefcFRUCoolingUnitGroup
DESCRIPTION
"This group is mandatory for devices which
support the cooling unit information."
GROUP cefcFRUFanCoolingUnitGroup
DESCRIPTION
"This group is mandatory for devices which
support the fan capacity cooling unit information."
GROUP cefcCoolingGroup2
DESCRIPTION
"This group is mandatory for devices which
support the chassis cooling capacity and module
cooling requirement."
GROUP cefcFanCoolingGroup
DESCRIPTION
"This group is mandatory for devices which
support the fan cooling capacity information."
GROUP cefcFanDirectionGroup
DESCRIPTION
"This group is mandatory for devices which
support fan direction."
GROUP cefcFanSpeedGroup
DESCRIPTION
"This group is mandatory for devices which
support fan speed."
GROUP cefcPowerSupplyActualGroup
DESCRIPTION
"This group is mandatory for devices which
support actual input and output current of
a power supply."
GROUP cefcVmModuleGroup
DESCRIPTION
"This group is mandatory for devices which
support VM module status."
GROUP cefcVmModuleNotifsGroup
DESCRIPTION
"This group is mandatory for devices which
support VM module status notifications."
OBJECT cefcFRUTotalSystemCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcFRUDrawnSystemCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcFRUTotalInlineCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcFRUDrawnInlineCurrent
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcModuleLocalSwitchingMode
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT cefcIntelliModuleIPAddrType
SYNTAX INTEGER {
ipv4(1)
}
DESCRIPTION
"An implementation is only required to
support IPv4 addresses."
::= { cefcMIBCompliances 10 }
-- units of conformance
cefcMIBPowerModeGroup OBJECT-GROUP
OBJECTS {
cefcPowerRedundancyMode,
cefcPowerUnits,
cefcTotalAvailableCurrent,
cefcTotalDrawnCurrent
}
STATUS current
DESCRIPTION
"The collection of objects which are used
to configure and monitor power-control for
FRUs."
::= { cefcMIBGroups 1 }
cefcMIBPowerFRUControlGroup OBJECT-GROUP
OBJECTS {
cefcFRUPowerAdminStatus,
cefcFRUPowerOperStatus,
cefcFRUCurrent
}
STATUS current
DESCRIPTION
"The collection of objects which are used
to configure and monitor power-control for
FRUs."
::= { cefcMIBGroups 2 }
cefcMIBModuleGroup OBJECT-GROUP
OBJECTS {
cefcModuleAdminStatus,
cefcModuleOperStatus,
cefcModuleResetReason,
cefcModuleStatusLastChangeTime
}
STATUS current
DESCRIPTION
"The collection of objects which are used to get the
operational state and redundancy state of the modules"
::= { cefcMIBGroups 3 }
cefcMIBInLinePowerControlGroup OBJECT-GROUP
OBJECTS { cefcMaxDefaultInLinePower }
STATUS deprecated
DESCRIPTION
"The collection of objects which are used to
configure and monitor inline power control for
FRUs."
::= { cefcMIBGroups 4 }
cefcMIBNotificationEnablesGroup OBJECT-GROUP
OBJECTS { cefcMIBEnableStatusNotification }
STATUS current
DESCRIPTION
"The collection of objects which are used to
enable notification."
::= { cefcMIBGroups 5 }
cefcMgmtNotificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS {
cefcModuleStatusChange,
cefcPowerStatusChange,
cefcFRUInserted,
cefcFRURemoved
}
STATUS current
DESCRIPTION
"The notifications which a FRU Management entity is
required to implement."
::= { cefcMIBGroups 6 }
cefcModuleGroupRev1 OBJECT-GROUP
OBJECTS {
cefcModuleLastClearConfigTime,
cefcModuleResetReasonDescription
}
STATUS current
DESCRIPTION
"The collection of objects which are used to get the
operational state and redundancy state of the modules"
::= { cefcMIBGroups 7 }
cefcMIBPowerFRUValueGroup OBJECT-GROUP
OBJECTS {
cefcFRUTotalSystemCurrent,
cefcFRUDrawnSystemCurrent,
cefcFRUTotalInlineCurrent,
cefcFRUDrawnInlineCurrent
}
STATUS current
DESCRIPTION
"The collection of objects which are used to retrieve
the total and used capacity of a power supply for both
system and inline power."
::= { cefcMIBGroups 8 }
cefcMIBFanTrayStatusGroup OBJECT-GROUP
OBJECTS { cefcFanTrayOperStatus }
STATUS current
DESCRIPTION
"The collection of objects which show information of the
status of Fan Tray FRUs."
::= { cefcMIBGroups 9 }
cefcMIBPhysicalGroup OBJECT-GROUP
OBJECTS { cefcPhysicalStatus }
STATUS current
DESCRIPTION
"The collection of objects which show information of the
Physical Entity."
::= { cefcMIBGroups 10 }
cefcMgmtNotificationsGroup2 NOTIFICATION-GROUP
NOTIFICATIONS {
cefcUnrecognizedFRU,
cefcFanTrayStatusChange
}
STATUS current
DESCRIPTION
"The additional notifications for FRU status."
::= { cefcMIBGroups 11 }
cefcMIBPowerOperModeGroup OBJECT-GROUP
OBJECTS { cefcPowerRedundancyOperMode }
STATUS current
DESCRIPTION
"The collection of objects which are used
to monitor the device's power supply operational
redundancy mode."
::= { cefcMIBGroups 12 }
cefcMIBInLinePowerControlGroupRev1 OBJECT-GROUP
OBJECTS { cefcMaxDefaultHighInLinePower }
STATUS current
DESCRIPTION
"The collection of objects which are used to
configure and monitor inline power control for
FRUs."
::= { cefcMIBGroups 13 }
cefcModuleExtGroup OBJECT-GROUP
OBJECTS {
cefcModuleStateChangeReasonDescr,
cefcModuleUpTime
}
STATUS current
DESCRIPTION
"The collection of objects which are used to get the
state change reason and up time of the modules."
::= { cefcMIBGroups 14 }
cefcIntelliModuleGroup OBJECT-GROUP
OBJECTS {
cefcIntelliModuleIPAddrType,
cefcIntelliModuleIPAddr
}
STATUS current
DESCRIPTION
"The collection of objects which are used to get the
information specific to intelligent modules."
::= { cefcMIBGroups 15 }
cefcPowerCapacityGroup OBJECT-GROUP
OBJECTS {
cefcPowerSupplyInputType,
cefcPSOutputModeCurrent,
cefcPSOutputModeInOperation
}
STATUS current
DESCRIPTION
"The collection of objects which are used to get the
power capacity information"
::= { cefcMIBGroups 16 }
cefcCoolingGroup OBJECT-GROUP
OBJECTS {
cefcChassisPerSlotCoolingCap,
cefcFanCoolingCapacity,
cefcModuleCooling
}
STATUS deprecated
DESCRIPTION
"The collection of objects which are used to get the
cooling capacity information."
::= { cefcMIBGroups 17 }
cefcConnectorRatingGroup OBJECT-GROUP
OBJECTS {
cefcConnectorRating,
cefcModulePowerConsumption
}
STATUS current
DESCRIPTION
"The collection of objects which are used to get the
power connector rating and module power total
consumption information."
::= { cefcMIBGroups 18 }
cefcMIBNotificationEnablesGroup2 OBJECT-GROUP
OBJECTS { cefcEnablePSOutputChangeNotif }
STATUS current
DESCRIPTION
"The collection of objects which are used to
enable additional group of notifications."
::= { cefcMIBGroups 19 }
cefcMgmtNotificationsGroup3 NOTIFICATION-GROUP
NOTIFICATIONS { cefcPowerSupplyOutputChange }
STATUS current
DESCRIPTION
"The additional notification for notify the
power capacity mode change."
::= { cefcMIBGroups 20 }
cefcMIBInLinePowerCurrentGroup OBJECT-GROUP
OBJECTS { cefcTotalDrawnInlineCurrent }
STATUS current
DESCRIPTION
"The collection of objects which are used to
monitor inline power usage for FRUs."
::= { cefcMIBGroups 21 }
cefcMIBPowerRedundancyInfoGroup OBJECT-GROUP
OBJECTS { cefcPowerNonRedundantReason }
STATUS current
DESCRIPTION
"The collection of objects provide additional
information about the device's power supply
redundancy."
::= { cefcMIBGroups 22 }
cefcFanCoolingCapGroup OBJECT-GROUP
OBJECTS {
cefcFanCoolingCapModeDescr,
cefcFanCoolingCapCapacity,
cefcFanCoolingCapCurrent
}
STATUS current
DESCRIPTION
"The collection of objects provide the cooling
capacity modes and properties of the fans."
::= { cefcMIBGroups 23 }
cefcMIBModuleLocalSwitchingGroup OBJECT-GROUP
OBJECTS { cefcModuleLocalSwitchingMode }
STATUS current
DESCRIPTION
"The collection of objects which show information of the
local switching status of modules."
::= { cefcMIBGroups 24 }
cefcFRUPowerRealTimeStatusGroup OBJECT-GROUP
OBJECTS { cefcFRURealTimeCurrent }
STATUS current
DESCRIPTION
"The collection of objects provide the power-related
realtime information of the manageable entities."
::= { cefcMIBGroups 25 }
cefcFRUPowerCapabilityGroup OBJECT-GROUP
OBJECTS { cefcFRUPowerCapability }
STATUS current
DESCRIPTION
"The collection of objects provide the power-related
capability information of the manageable entities."
::= { cefcMIBGroups 26 }
cefcFRUCoolingUnitGroup OBJECT-GROUP
OBJECTS {
cefcChassisPerSlotCoolingUnit,
cefcModuleCoolingUnit
}
STATUS current
DESCRIPTION
"The collection of objects provide the cooling unit
information of the manageable entities."
::= { cefcMIBGroups 27 }
cefcFRUFanCoolingUnitGroup OBJECT-GROUP
OBJECTS {
cefcFanCoolingCapacityUnit,
cefcFanCoolingCapCapacityUnit
}
STATUS current
DESCRIPTION
"The collection of objects provide the cooling unit
information of the manageable fan entities."
::= { cefcMIBGroups 28 }
cefcCoolingGroup2 OBJECT-GROUP
OBJECTS {
cefcChassisPerSlotCoolingCap,
cefcModuleCooling
}
STATUS current
DESCRIPTION
"The collection of objects which are used to get the
cooling capacity or requirement information."
::= { cefcMIBGroups 29 }
cefcFanCoolingGroup OBJECT-GROUP
OBJECTS { cefcFanCoolingCapacity }
STATUS current
DESCRIPTION
"The collection of objects provide the cooling
capacity modes and properties of the fans."
::= { cefcMIBGroups 30 }
cefcFanDirectionGroup OBJECT-GROUP
OBJECTS { cefcFanTrayDirection }
STATUS current
DESCRIPTION
"The collection of objects provide the direction
information of the manageable fan entities."
::= { cefcMIBGroups 31 }
cefcFanSpeedGroup OBJECT-GROUP
OBJECTS {
cefcFanSpeed,
cefcFanSpeedPercent
}
STATUS current
DESCRIPTION
"The collection of objects provide the speed
information of the manageable fan entities."
::= { cefcMIBGroups 32 }
cefcPowerSupplyActualGroup OBJECT-GROUP
OBJECTS {
cefcFRUActualInputCurrent,
cefcFRUActualOutputCurrent
}
STATUS current
DESCRIPTION
"The collection of objects which are used to retrieve
the actual input and output current of a power supply."
::= { cefcMIBGroups 33 }
cefcVmModuleGroup OBJECT-GROUP
OBJECTS {
cefcVmModuleOperStatus,
cefcVmModuleStatusLastChangeTime
}
STATUS current
DESCRIPTION
"The collection of objects which povide the VM
module opertional status information."
::= { cefcMIBGroups 34 }
cefcVmModuleNotifsGroup NOTIFICATION-GROUP
NOTIFICATIONS { cefcVmModuleStatusChangeNotif }
STATUS current
DESCRIPTION
"A collection of notifications for VM module
status change."
::= { cefcMIBGroups 35 }
END
|