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
|
ZTE-AN-ENVMON-MIB DEFINITIONS ::= BEGIN
IMPORTS
RowStatus FROM SNMPv2-TC
DisplayString FROM SNMPv2-TC
TruthValue FROM SNMPv2-TC
DateAndTime FROM SNMPv2-TC
MODULE-IDENTITY FROM SNMPv2-SMI
OBJECT-TYPE FROM SNMPv2-SMI
Integer32 FROM SNMPv2-SMI
IpAddress FROM SNMPv2-SMI
Counter64 FROM SNMPv2-SMI
Unsigned32 FROM SNMPv2-SMI
NOTIFICATION-TYPE FROM SNMPv2-SMI
zxAccessNode FROM ZTE-AN-SMI
zxAnEquipment FROM ZTE-AN-SMI
MODULE-COMPLIANCE FROM SNMPv2-CONF
OBJECT-GROUP FROM SNMPv2-CONF
NOTIFICATION-GROUP FROM SNMPv2-CONF
TEXTUAL-CONVENTION FROM SNMPv2-TC
HCPerfCurrentCount FROM HC-PerfHist-TC-MIB;
zxAnEnvMonMib MODULE-IDENTITY
LAST-UPDATED "201412230000Z"
ORGANIZATION "ZTE Corporation"
CONTACT-INFO "Mei YuLing ZTE Corporation
Mail: mei.yuLing@zte.com.cn
Tel : +86-21-68897315"
DESCRIPTION "This MIB defines zte Access Node managed environment
monitor."
REVISION "201412230000Z"
DESCRIPTION
"modify the range of fan tray speed percentage."
REVISION "201312310000Z"
DESCRIPTION
"add fan tray SN configuration."
REVISION "201204270000Z"
DESCRIPTION
"add fan unified configuration."
REVISION "201204180000Z"
DESCRIPTION
"add overheat protection."
REVISION "201110170000Z"
DESCRIPTION
"add details of fan speed level."
REVISION "201105260000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { zxAnEquipment 10 }
ZxAnEnvShutdownServiceType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A set of service type defined in environment monitor module
that may be shut down in protection action,
each bit refers to a type:
Bit 00 : xPON service.
Bit 01 : xDSL service.
Bit 02 : P2P service.
Bit 03 : narrowband service."
SYNTAX BITS {
xpon(0),
xdsl(1),
p2p(2),
narrowband(3)
}
-------------------------------------------------------------------------------
-- Following management objects are defined.
-- 1. Environment Management Capability Table
-- 2. Environment Temperature Table
-- 3. Card Environment Performance Table
--- 3.1. zxAnCardEnvParamTable
--- 3.2. zxAnCardEnvHis15MinPerfTable
--- 3.3. zxAnCardEnvHis1DayPerfTable
--- 3.4. zxAnCardEnvAlmProfileConfTable
--- 3.5. zxAnCardEnvAlmProfileApplyTable
--- 3.6. zxAnCardEnvAlmProfileTable
--- 3.7. zxAnEnvOverheatProtectTable
--- 3.8. zxAnEnvCardOverheatProtectTable
-- 4. Environment Interface Connection Management Table
-- 5. Power Supply Management Table
-- 6. Fan Management Objects
-- 6.1 Fan Tray Control table
-- 6.2 Fans Control And Operational Status table
-- 6.3 Fan Tray Reset Objects
-- 8. Environment Device Objects
-- 9. Environment Device Switch Objects
-- Following notification objects are defined.
-- 21. zxAnEnvMonNotifications
-- Following conformance information is defined.
-- 31. zxAnEnvMonConformance
-------------------------------------------------------------------------------
zxAnEnvMonGlobalObjects OBJECT IDENTIFIER::={zxAnEnvMonMib 1}
zxAnEnvMonObjects OBJECT IDENTIFIER::={zxAnEnvMonMib 2}
zxAnEnvMonNotifications OBJECT IDENTIFIER::={zxAnEnvMonMib 3}
zxAnEnvParamObjects OBJECT IDENTIFIER::={zxAnEnvMonObjects 1}
zxAnEnvMonInterfaceObjects OBJECT IDENTIFIER::={zxAnEnvMonObjects 2}
zxAnEnvPowerSupplyObjects OBJECT IDENTIFIER::={zxAnEnvMonObjects 3}
zxAnEnvFanObjects OBJECT IDENTIFIER::={zxAnEnvMonObjects 4}
zxAnEnvDeviceObjects OBJECT IDENTIFIER::={zxAnEnvMonObjects 5}
zxAnEnvFanTrayResetObjects OBJECT IDENTIFIER::={zxAnEnvFanObjects 12}
zxAnEnvParamGlobalObjects OBJECT IDENTIFIER::={zxAnEnvParamObjects 1}
zxAnPowerSupplyGlobalObjects
OBJECT IDENTIFIER ::= { zxAnEnvPowerSupplyObjects 1}
zxAnEnvMonTempTraps OBJECT IDENTIFIER::={zxAnEnvMonNotifications 1}
zxAnEnvMonInterfaceTraps OBJECT IDENTIFIER::={zxAnEnvMonNotifications 2}
zxAnEnvMonPowerSupplyTraps OBJECT IDENTIFIER::={zxAnEnvMonNotifications 3}
zxAnEnvMonFanTraps OBJECT IDENTIFIER::={zxAnEnvMonNotifications 4}
zxAnEnvDeviceTraps OBJECT IDENTIFIER::={zxAnEnvMonNotifications 5}
-------------------------------------------------------------------------------
-- 1. Environment Management Capability Table
-------------------------------------------------------------------------------
zxAnEnvMonCapabilities OBJECT-TYPE
SYNTAX BITS
{
envTemperature(0),
fanAlarmBeep(1),
fanAutoSwitchByCardInstall(2),
fanSpeedCtrlBasedTemperature(3),
fanFixSpeed(4),
singleFanShutdown(5),
mpTemperature(6),
powerSupply(7),
cardTemperature(8),
fanSpeedPercentage(9),
backplaneInterface(10),
envMonitorInterfaceTrapEnable(11),
slaveShelfFanConfig(12)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The environment management capabilities of this equipment.The bit
value 1 means the function represented by this bit is supported by
this equipment.
NOTE:
Not recommended to display it in NMS.
"
::= { zxAnEnvMonGlobalObjects 1 }
zxAnEnvCardShutdownReason OBJECT-TYPE
SYNTAX INTEGER
{
envHighTemperature(1),
cardHighTemperature(2),
chipHighTemperature(3),
emergencyPowerSaving(4)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The alarm reason of zxAnEnvCardShutdownAlm.
envHighTemperature(1): Environment temperature is too high.
cardHighTemperature(2):Card self temperature is too high.
chipHighTemperature(3):Card's chip temperature is too high.
emergencyPowerSaving(4):Emergency power saving action has been
taken caused by AC power failure.
"
::= { zxAnEnvParamGlobalObjects 1 }
-------------------------------------------------------------------------------
-- 2. Environment Temperature Table
-------------------------------------------------------------------------------
zxAnEnvParamTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnEnvParamEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table includes environment temperature information."
::= { zxAnEnvParamObjects 5 }
zxAnEnvParamEntry OBJECT-TYPE
SYNTAX ZxAnEnvParamEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of zxAnEnvParamTable. "
INDEX { zxAnEnvRack, zxAnEnvShelf }
::= { zxAnEnvParamTable 1 }
ZxAnEnvParamEntry ::= SEQUENCE {
zxAnEnvRack Integer32,
zxAnEnvShelf Integer32,
zxAnEnvTemp Integer32,
zxAnEnvTempHighAlmThreshold Integer32,
zxAnEnvTempCriticalAlmThreshold Integer32,
zxAnEnvTempLowAlmThreshold Integer32,
zxAnEnvShelfPowerConsumption Integer32,
zxAnEnvShelfVoltage Integer32,
zxAnEnvShelfCurrent Integer32
}
zxAnEnvRack OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of rack."
::= { zxAnEnvParamEntry 1 }
zxAnEnvShelf OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of shelf."
::= { zxAnEnvParamEntry 2 }
zxAnEnvTemp OBJECT-TYPE
SYNTAX Integer32
UNITS "Centigrade"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The temperature of the environment."
::= { zxAnEnvParamEntry 3 }
zxAnEnvTempHighAlmThreshold OBJECT-TYPE
SYNTAX Integer32(45..95)
UNITS "Centigrade"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The temperature high alarm threshold of the environment."
DEFVAL { 75 }
::= { zxAnEnvParamEntry 4 }
zxAnEnvTempCriticalAlmThreshold OBJECT-TYPE
SYNTAX Integer32
UNITS "Centigrade"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The temperature critical alarm threshold of the environment."
DEFVAL { 100 }
::= { zxAnEnvParamEntry 5 }
zxAnEnvTempLowAlmThreshold OBJECT-TYPE
SYNTAX Integer32(-40..0)
UNITS "Centigrade"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The temperature low alarm threshold of the environment."
::= { zxAnEnvParamEntry 6 }
zxAnEnvShelfPowerConsumption OBJECT-TYPE
SYNTAX Integer32
UNITS "0.001W"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Power consumption of the shelf.
Value 0 means not available."
::= { zxAnEnvParamEntry 7 }
zxAnEnvShelfVoltage OBJECT-TYPE
SYNTAX Integer32
UNITS "0.001Volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Voltage of the shelf.
Value 0 means not available."
::= { zxAnEnvParamEntry 8 }
zxAnEnvShelfCurrent OBJECT-TYPE
SYNTAX Integer32
UNITS "0.001Amp"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current of the shelf.
Value 0 means not available."
::= { zxAnEnvParamEntry 9 }
-------------------------------------------------------------------------------
-- 3. Card Environment Performance Table
-- 3.1. zxAnCardEnvParamTable
-------------------------------------------------------------------------------
zxAnCardEnvParamTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnCardEnvParamEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table includes card temperature information."
::= { zxAnEnvParamObjects 6 }
zxAnCardEnvParamEntry OBJECT-TYPE
SYNTAX ZxAnCardEnvParamEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of zxAnCardEnvParamTable. "
INDEX { zxAnEnvRack, zxAnEnvShelf, zxAnEnvSlot }
::= { zxAnCardEnvParamTable 1 }
ZxAnCardEnvParamEntry ::= SEQUENCE {
zxAnEnvSlot Integer32,
zxAnCardTemp Integer32,
zxAnCardPowerConsumption Integer32,
zxAnCardVoltage Integer32,
zxAnCardCurrent Integer32,
zxAnCardCriticalTempAlmThreshold Integer32,
zxAnCardOptHighestTemp Integer32,
zxAnCardOptCriticalTempAlmThresh Integer32,
zxAnCardOptHighestTempPortNo Integer32,
zxAnCardHeatRadiationAlmThresh Integer32
}
zxAnEnvSlot OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The index of slot, the range is [0,20] of 19-inch
shelf and [0,22] of 21-inch shelf."
::= { zxAnCardEnvParamEntry 1 }
zxAnCardTemp OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current temperature of the card environment.
NOTE:
1. In current system, only certain cards support
temperature-reading, such as SCXL, GTGOD cards.
2. If the card is not configured, we cannot get its
temperature.
3. For the configured but not support temperature-reading
cards, we use -1000 as an invalid temperature value to note
its temperature.
"
::= { zxAnCardEnvParamEntry 2 }
zxAnCardPowerConsumption OBJECT-TYPE
SYNTAX Integer32
UNITS "0.001W"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Power consumption of the card.
Value 0 means not available."
::= { zxAnCardEnvParamEntry 3 }
zxAnCardVoltage OBJECT-TYPE
SYNTAX Integer32
UNITS "0.001Volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Voltage of the card.
Value 0 means not available."
::= { zxAnCardEnvParamEntry 4 }
zxAnCardCurrent OBJECT-TYPE
SYNTAX Integer32
UNITS "0.001Amp"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current of the card.
Value 0 means not available."
::= { zxAnCardEnvParamEntry 5 }
zxAnCardCriticalTempAlmThreshold OBJECT-TYPE
SYNTAX Integer32
UNITS "Centigrade"
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The critical temperature alarm threshold of the card."
::= { zxAnCardEnvParamEntry 6 }
zxAnCardOptHighestTemp OBJECT-TYPE
SYNTAX Integer32
UNITS "0.001Degrees"
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The highest temperature of the optical modules in the card."
::= { zxAnCardEnvParamEntry 7 }
zxAnCardOptCriticalTempAlmThresh OBJECT-TYPE
SYNTAX Integer32
UNITS "Centigrade"
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The critical optical temperature alarm threshold."
::= { zxAnCardEnvParamEntry 8 }
zxAnCardOptHighestTempPortNo OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The port No. which the optical module is located at, and the
optical module has the highest temperature."
::= { zxAnCardEnvParamEntry 9 }
zxAnCardHeatRadiationAlmThresh OBJECT-TYPE
SYNTAX Integer32
UNITS "Centigrade"
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The heat radiation abnormal alarm threshold of the card."
::= { zxAnCardEnvParamEntry 10 }
-------------------------------------------------------------------------------
-- 3.2. zxAnCardEnvHis15MinPerfTable
-------------------------------------------------------------------------------
zxAnCardEnvHis15MinPerfTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnCardEnvHis15MinPerfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The 15 minutes interval performance data table of card
temperature."
::= { zxAnEnvParamObjects 7 }
zxAnCardEnvHis15MinPerfEntry OBJECT-TYPE
SYNTAX ZxAnCardEnvHis15MinPerfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The 15 minutes interval performance data entry of card
temperature."
INDEX { zxAnEnvRack, zxAnEnvShelf, zxAnEnvSlot,
zxAnCardEnvHis15MinIntervalNo }
::= { zxAnCardEnvHis15MinPerfTable 1 }
ZxAnCardEnvHis15MinPerfEntry ::= SEQUENCE {
zxAnCardEnvHis15MinIntervalNo Integer32,
zxAnCardEnvHis15MinDateTime DateAndTime,
zxAnCardEnvHis15MinTemp Counter64
}
zxAnCardEnvHis15MinIntervalNo OBJECT-TYPE
SYNTAX Integer32(1..96)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Performance data interval number 1 is the the most recent
previous interval; interval 96 is 24 hours ago.
Intervals 2..96 are optional."
::= { zxAnCardEnvHis15MinPerfEntry 1 }
zxAnCardEnvHis15MinDateTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 15 minutes interval performance data generation time."
::= { zxAnCardEnvHis15MinPerfEntry 2 }
zxAnCardEnvHis15MinTemp OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 15 minutes interval average temperature of card."
::= { zxAnCardEnvHis15MinPerfEntry 3 }
-------------------------------------------------------------------------------
-- 3.3. zxAnCardEnvHis1DayPerfTable
-------------------------------------------------------------------------------
zxAnCardEnvHis1DayPerfTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnCardEnvHis1DayPerfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The 1 day interval performance data table of card temperature."
::= { zxAnEnvParamObjects 8 }
zxAnCardEnvHis1DayPerfEntry OBJECT-TYPE
SYNTAX ZxAnCardEnvHis1DayPerfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The 1 day interval performance data entry of card temperature."
INDEX { zxAnEnvRack, zxAnEnvShelf, zxAnEnvSlot,
zxAnCardEnvHis1DayIntervalNo }
::= { zxAnCardEnvHis1DayPerfTable 1 }
ZxAnCardEnvHis1DayPerfEntry ::= SEQUENCE {
zxAnCardEnvHis1DayIntervalNo Integer32,
zxAnCardEnvHis1DayDateTime DateAndTime,
zxAnCardEnvHis1DayTemp Counter64
}
zxAnCardEnvHis1DayIntervalNo OBJECT-TYPE
SYNTAX Integer32(1..7)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Performance data interval number 1 is the the most recent
previous interval; interval 7 is 1 week ago.
Intervals 2..7 are optional."
::= { zxAnCardEnvHis1DayPerfEntry 1 }
zxAnCardEnvHis1DayDateTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 1 day interval performance data generation time."
::= { zxAnCardEnvHis1DayPerfEntry 2 }
zxAnCardEnvHis1DayTemp OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 1 day interval average temperature of card."
::= { zxAnCardEnvHis1DayPerfEntry 3 }
-------------------------------------------------------------------------------
-- 3.4. zxAnCardEnvAlmProfileConfTable
-------------------------------------------------------------------------------
zxAnCardEnvAlmProfileConfTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnCardEnvAlmProfileConfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The performance alarm threshold profile items configuration table
of card temperature."
::= { zxAnEnvParamObjects 9 }
zxAnCardEnvAlmProfileConfEntry OBJECT-TYPE
SYNTAX ZxAnCardEnvAlmProfileConfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The performance alarm threshold profile items configuration entry
of card temperature."
INDEX { zxAnCardEnvAlmProfileName, zxAnCardEnvPerfVariable }
::= { zxAnCardEnvAlmProfileConfTable 1 }
ZxAnCardEnvAlmProfileConfEntry ::= SEQUENCE {
zxAnCardEnvAlmProfileName DisplayString,
zxAnCardEnvPerfVariable OBJECT IDENTIFIER,
zxAnCardEnvRiseAlmThresh HCPerfCurrentCount,
zxAnCardEnvClrRiseAlmThresh HCPerfCurrentCount,
zxAnCardEnvRiseWarnThresh HCPerfCurrentCount,
zxAnCardEnvClrRiseWarnThresh HCPerfCurrentCount,
zxAnCardEnvFallWarnThresh HCPerfCurrentCount,
zxAnCardEnvClrFallWarnThresh HCPerfCurrentCount,
zxAnCardEnvFallAlmThresh HCPerfCurrentCount,
zxAnCardEnvClrFallAlmThresh HCPerfCurrentCount,
zxAnCardEnvAlmPrfConfRowStatus RowStatus
}
zxAnCardEnvAlmProfileName OBJECT-TYPE
SYNTAX DisplayString(SIZE(1..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The performance alarm threshold profile name."
::= { zxAnCardEnvAlmProfileConfEntry 1 }
zxAnCardEnvPerfVariable OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The object identifier of performance variables."
::= { zxAnCardEnvAlmProfileConfEntry 2 }
zxAnCardEnvRiseAlmThresh OBJECT-TYPE
SYNTAX HCPerfCurrentCount
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The threshold for rising alarm."
::= { zxAnCardEnvAlmProfileConfEntry 3 }
zxAnCardEnvClrRiseAlmThresh OBJECT-TYPE
SYNTAX HCPerfCurrentCount
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The threshold for rising alarm restore."
::= { zxAnCardEnvAlmProfileConfEntry 4 }
zxAnCardEnvRiseWarnThresh OBJECT-TYPE
SYNTAX HCPerfCurrentCount
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The threshold for rising warning."
::= { zxAnCardEnvAlmProfileConfEntry 5 }
zxAnCardEnvClrRiseWarnThresh OBJECT-TYPE
SYNTAX HCPerfCurrentCount
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The threshold for rising warning restore."
::= { zxAnCardEnvAlmProfileConfEntry 6 }
zxAnCardEnvFallWarnThresh OBJECT-TYPE
SYNTAX HCPerfCurrentCount
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The threshold for falling warning."
::= { zxAnCardEnvAlmProfileConfEntry 7 }
zxAnCardEnvClrFallWarnThresh OBJECT-TYPE
SYNTAX HCPerfCurrentCount
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The threshold for falling warning restore."
::= { zxAnCardEnvAlmProfileConfEntry 8 }
zxAnCardEnvFallAlmThresh OBJECT-TYPE
SYNTAX HCPerfCurrentCount
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The threshold for falling alarm."
::= { zxAnCardEnvAlmProfileConfEntry 9 }
zxAnCardEnvClrFallAlmThresh OBJECT-TYPE
SYNTAX HCPerfCurrentCount
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The threshold for falling alarm restore."
::= { zxAnCardEnvAlmProfileConfEntry 10 }
zxAnCardEnvAlmPrfConfRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this conceptual row.
To create a row in this table, a manager must
set this object to createAndGo(4).
To delete a row in this table, a manager must
set this object to destroy(6). "
::= { zxAnCardEnvAlmProfileConfEntry 50 }
-------------------------------------------------------------------------------
-- 3.5. zxAnCardEnvAlmProfileApplyTable
-------------------------------------------------------------------------------
zxAnCardEnvAlmProfileApplyTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnCardEnvAlmProfileApplyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The performance alarm threshold profile application table of
card temperature."
::= { zxAnEnvParamObjects 10 }
zxAnCardEnvAlmProfileApplyEntry OBJECT-TYPE
SYNTAX ZxAnCardEnvAlmProfileApplyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The performance alarm threshold profile application entry of
card temperature."
INDEX { zxAnEnvRack, zxAnEnvShelf, zxAnEnvSlot }
::= { zxAnCardEnvAlmProfileApplyTable 1 }
ZxAnCardEnvAlmProfileApplyEntry ::= SEQUENCE {
zxAnCardEnvAlmPrf DisplayString,
zxAnCardEnvAlmPrfApplyRowStatus RowStatus
}
zxAnCardEnvAlmPrf OBJECT-TYPE
SYNTAX DisplayString(SIZE(1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The performance alarm threshold profile."
::= { zxAnCardEnvAlmProfileApplyEntry 1 }
zxAnCardEnvAlmPrfApplyRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this conceptual row.
To create a row in this table, a manager must
set this object to createAndGo(4).
To delete a row in this table, a manager must
set this object to destroy(6). "
::= { zxAnCardEnvAlmProfileApplyEntry 50 }
-------------------------------------------------------------------------------
-- 3.6. zxAnCardEnvAlmProfileTable
-------------------------------------------------------------------------------
zxAnCardEnvAlmProfileTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnCardEnvAlmProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The performance alarm threshold profile table of card
temperature."
::= { zxAnEnvParamObjects 11 }
zxAnCardEnvAlmProfileEntry OBJECT-TYPE
SYNTAX ZxAnCardEnvAlmProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The performance alarm threshold profile entry of
card temperature."
INDEX { zxAnCardEnvAlmProfileName }
::= { zxAnCardEnvAlmProfileTable 1 }
ZxAnCardEnvAlmProfileEntry ::= SEQUENCE {
zxAnCardEnvAlmPrfRowStatus RowStatus
}
zxAnCardEnvAlmPrfRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this conceptual row.
To create a row in this table, a manager must
set this object to createAndGo(4).
To delete a row in this table, a manager must
set this object to destroy(6). "
::= { zxAnCardEnvAlmProfileEntry 50 }
-------------------------------------------------------------------------------
--- 3.7. zxAnEnvOverheatProtectTable
-------------------------------------------------------------------------------
zxAnEnvOverheatProtectTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnEnvOverheatProtectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Environment overheat protection table."
::= { zxAnEnvParamObjects 13 }
zxAnEnvOverheatProtectEntry OBJECT-TYPE
SYNTAX ZxAnEnvOverheatProtectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Environment overheat protection entry.
To modify zxAnEnvOverheatProtectEnable from disabled to enabled,
zxAnEnvOverheatProtectEnable is mandatory,
zxAnEnvOverheatProtectDelay is optional.
To modify zxAnEnvOverheatProtectEnable from enabled to disabled,
only zxAnEnvOverheatProtectEnable is mandatory."
INDEX { zxAnEnvRack, zxAnEnvShelf }
::= { zxAnEnvOverheatProtectTable 1 }
ZxAnEnvOverheatProtectEntry ::= SEQUENCE {
zxAnEnvOverheatProtectEnable INTEGER,
zxAnEnvOverheatProtectDelay Integer32,
zxAnEnvOverheatProtectFirstStep ZxAnEnvShutdownServiceType,
zxAnEnvOverheatProtectSecondStep ZxAnEnvShutdownServiceType
}
zxAnEnvOverheatProtectEnable OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables or disables the environment overheat protection function."
DEFVAL { disabled }
::= { zxAnEnvOverheatProtectEntry 1 }
zxAnEnvOverheatProtectDelay OBJECT-TYPE
SYNTAX Integer32(1..60)
UNITS "minutes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The delaying time between two steps.
For example, when temperature is higher than the threshold, takes an
action as the step 1, and delays the value of
zxAnEnvOverheatProtectDelay, if the temperature is still higher than
the threshold, takes an action as step 2."
DEFVAL { 10 }
::= { zxAnEnvOverheatProtectEntry 2 }
zxAnEnvOverheatProtectFirstStep OBJECT-TYPE
SYNTAX ZxAnEnvShutdownServiceType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The first step when the environment temperature exceeds
zxAnEnvTempHighAlmThreshold."
DEFVAL { {xpon,xdsl,p2p} }
::= { zxAnEnvOverheatProtectEntry 3 }
zxAnEnvOverheatProtectSecondStep OBJECT-TYPE
SYNTAX ZxAnEnvShutdownServiceType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The second step when the environment temperature still exceeds
zxAnEnvTempHighAlmThreshold after first step has been done."
DEFVAL { {narrowband} }
::= { zxAnEnvOverheatProtectEntry 4 }
-------------------------------------------------------------------------------
--- 3.8. zxAnEnvCardOverheatProtectTable
-------------------------------------------------------------------------------
zxAnEnvCardOverheatProtectTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnEnvCardOverheatProtectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Card overheat protection table."
::= { zxAnEnvParamObjects 14 }
zxAnEnvCardOverheatProtectEntry OBJECT-TYPE
SYNTAX ZxAnEnvCardOverheatProtectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Card overheat protection entry."
INDEX { zxAnEnvRack, zxAnEnvShelf }
::= { zxAnEnvCardOverheatProtectTable 1 }
ZxAnEnvCardOverheatProtectEntry ::= SEQUENCE {
zxAnEnvCardCriticalTempProtectEn INTEGER
}
zxAnEnvCardCriticalTempProtectEn OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables or disables the card critical temperature protection
function. If it is enabled, the card will be stopped when the card
temperature is higher than the card critical temperature."
DEFVAL { enabled }
::= { zxAnEnvCardOverheatProtectEntry 1 }
-------------------------------------------------------------------------------
-- 4. Environment Interface Connection Management Table
-------------------------------------------------------------------------------
zxAnEnvMonInterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnEnvMonInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table includes the environment interface information."
::= { zxAnEnvMonInterfaceObjects 5 }
zxAnEnvMonInterfaceEntry OBJECT-TYPE
SYNTAX ZxAnEnvMonInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of zxAnEnvMonInterfaceTable. "
INDEX { zxAnEnvRack, zxAnEnvShelf }
::= { zxAnEnvMonInterfaceTable 1 }
ZxAnEnvMonInterfaceEntry ::= SEQUENCE {
zxAnEnvMonInterfaceUsage INTEGER,
zxAnEnvEpmConnectPort INTEGER,
zxAnEnvBackplaneInterfaceUsage INTEGER
}
zxAnEnvMonInterfaceUsage OBJECT-TYPE
SYNTAX INTEGER
{
epm(1),
fanTray(2),
noUse(3),
noSupport(4),
etmWithTestSubcard(5),
etmWithoutTestSubcard(6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The equipment type connected to the environment monitor interface.
"
DEFVAL { fanTray }
::= { zxAnEnvMonInterfaceEntry 1 }
zxAnEnvEpmConnectPort OBJECT-TYPE
SYNTAX INTEGER
{
port0(1),
port1(2),
notconfigured(255)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The port no which epm connect"
::= { zxAnEnvMonInterfaceEntry 2 }
zxAnEnvBackplaneInterfaceUsage OBJECT-TYPE
SYNTAX INTEGER
{
fan(1),
noUse(3),
noSupport(255)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The equipment type connected to the Backplane Interface.
fan(1): the fan connect to the Backplane Interface;
noUse(3): not used;
noSupport(255):not support.
"
::= { zxAnEnvMonInterfaceEntry 3 }
-------------------------------------------------------------------------------
-- 5. Power Supply Management Table
-------------------------------------------------------------------------------
zxAnEnvEmergencyPowerSaveEnable OBJECT-TYPE
SYNTAX INTEGER
{
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables or disables the emergency power saving."
DEFVAL { disabled }
::= { zxAnPowerSupplyGlobalObjects 1 }
zxAnEnvEmergencyPowerSaveDelay OBJECT-TYPE
SYNTAX Integer32(0..1440)
UNITS "Minutes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If AC power failure lasts more than zxAnEnvEmergencyPowerSaveDelay,
emergency power saving action will be taken."
DEFVAL { 60 }
::= { zxAnPowerSupplyGlobalObjects 2 }
zxAnEnvEmergencyPowerSaveRecover OBJECT-TYPE
SYNTAX Integer32(0..1440)
UNITS "Minutes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If AC power recovered, after this delay, the emergency power save
action will be cancelled."
DEFVAL { 0 }
::= { zxAnPowerSupplyGlobalObjects 3 }
zxAnEnvEmergencyPowerSaveSvcType OBJECT-TYPE
SYNTAX ZxAnEnvShutdownServiceType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The service types will be shut down in emergency power saving
action."
DEFVAL { {xpon, xdsl, p2p} }
::= { zxAnPowerSupplyGlobalObjects 4 }
zxAnEnvPowerMode OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
battery(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The current power supply mode of the equipment, emergency power
saving action is on the basis of the power mode zxAnEnvPowerMode.
normal(1) means using AC power as power supply.
battery(2) means using storage battery as power supply.
"
DEFVAL { normal }
::= { zxAnPowerSupplyGlobalObjects 5 }
zxAnEnvEmergencyBatteryVoltage OBJECT-TYPE
SYNTAX Integer32
UNITS "0.001Volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current voltage of the battery."
::= { zxAnPowerSupplyGlobalObjects 6 }
zxAnEnvEmergencyBatteryThreshold OBJECT-TYPE
SYNTAX Integer32(45000..53000)
UNITS "0.001Volts"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The threshold of the battery voltage.
If the battery voltage is less than
zxAnEnvEmergencyBatteryThreshold, the emergency power saving action
will be taken."
DEFVAL { 48000 }
::= { zxAnPowerSupplyGlobalObjects 7 }
zxAnPowerSupplyCapabilityTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnPowerSupplyCapabilityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table includes power supply capability table."
::= { zxAnEnvPowerSupplyObjects 10 }
zxAnPowerSupplyCapabilityEntry OBJECT-TYPE
SYNTAX ZxAnPowerSupplyCapabilityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of zxAnPowerSupplyCapabilityTable."
INDEX { zxAnEnvRack, zxAnEnvShelf }
::= { zxAnPowerSupplyCapabilityTable 1 }
ZxAnPowerSupplyCapabilityEntry ::= SEQUENCE
{
zxAnPowerSupplyMaxPowerNum Integer32
}
zxAnPowerSupplyMaxPowerNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The max number of power supply in the equipment."
::= { zxAnPowerSupplyCapabilityEntry 1 }
--- Power supply table
zxAnPowerSupplyTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnPowerSupplyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table includes power supply table."
::= { zxAnEnvPowerSupplyObjects 11 }
zxAnPowerSupplyEntry OBJECT-TYPE
SYNTAX ZxAnPowerSupplyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in zxAnPowerSupplyTable."
INDEX { zxAnEnvRack, zxAnEnvShelf, zxAnEnvSlot }
::= { zxAnPowerSupplyTable 1 }
ZxAnPowerSupplyEntry ::= SEQUENCE
{
zxAnPowerSupplyOperStatus INTEGER,
zxAnPowerSupplyInVoltage Integer32,
zxAnPowerSupplyInVoltageStatus INTEGER,
zxAnPowerInVoltageUpperThresh Integer32,
zxAnPowerInVoltageLowerThresh Integer32,
zxAnPowerSupplyInCurrent Integer32,
zxAnPowerInCurrentThresh Integer32
}
zxAnPowerSupplyOperStatus OBJECT-TYPE
SYNTAX INTEGER
{
inService(1),
hwOffline(2),
powerFaulty(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational status of the power supply module."
::= { zxAnPowerSupplyEntry 1 }
zxAnPowerSupplyInVoltage OBJECT-TYPE
SYNTAX Integer32
UNITS "Volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The actual input volts of the power supply module."
::= { zxAnPowerSupplyEntry 2 }
zxAnPowerSupplyInVoltageStatus OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
overVoltage(2),
underVoltage(3),
off(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The volt status of the power supply.
normal(1) -- The input power is normal.
overVoltage(2) -- The input power is over voltage.
underVoltage(3) -- The input power is under voltage.
off(4)) -- No power input.
"
::= { zxAnPowerSupplyEntry 3 }
zxAnPowerInVoltageUpperThresh OBJECT-TYPE
SYNTAX Integer32
UNITS "Volts"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The upper threshold of input volts.The alarm should be generated
when zxAnPowerSupplyInVoltage exceeds this threshold.
If it is 0, no alarm reported to manager."
DEFVAL { 0 }
::= { zxAnPowerSupplyEntry 4 }
zxAnPowerInVoltageLowerThresh OBJECT-TYPE
SYNTAX Integer32
UNITS "Volts"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lower threshold of input volts.The alarm should be generated
when zxAnPowerSupplyInVoltage is lower than this threshold.
If it is 0, no alarm reported to manager."
DEFVAL { 0 }
::= { zxAnPowerSupplyEntry 5 }
zxAnPowerSupplyInCurrent OBJECT-TYPE
SYNTAX Integer32
UNITS "Amp"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The actual current of the power supply module."
::= { zxAnPowerSupplyEntry 6 }
zxAnPowerInCurrentThresh OBJECT-TYPE
SYNTAX Integer32
UNITS "Amp"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The upper threshold of input current.The alarm should be generated
when zxAnPowerSupplyInCurrent exceeds this threshold.
If it is 0, no alarm reported to manager."
DEFVAL { 0 }
::= { zxAnPowerSupplyEntry 7 }
-------------------------------------------------------------------------------
-- 6. Fan Management Objects
-- 6.1 Fan Tray Control table
-------------------------------------------------------------------------------
zxAnEnvFanTrayTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnEnvFanTrayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Fan Tray Control table, with rack and shelf information."
::= { zxAnEnvFanObjects 10 }
zxAnEnvFanTrayEntry OBJECT-TYPE
SYNTAX ZxAnEnvFanTrayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the zxAnEnvFanTrayTable."
INDEX { zxAnEnvRack, zxAnEnvShelf }
::= { zxAnEnvFanTrayTable 1 }
ZxAnEnvFanTrayEntry ::= SEQUENCE
{ zxAnFanTrayAlarmBeepEnable INTEGER,
zxAnFanTrayAutoSwitchByCardUp INTEGER,
zxAnFanTrayHardwareVersion DisplayString,
zxAnFanTraySoftwareVersion DisplayString,
zxAnFanTraySpeedCtrlMode INTEGER,
zxAnFanTrayLowSpeed Integer32,
zxAnFanTrayStdSpeed Integer32,
zxAnFanTrayHighSpeed Integer32,
zxAnFanTraySuperSpeed Integer32,
zxAnFanTrayLowSpeedShiftTemp Integer32,
zxAnFanTrayStdSpeedShiftTemp Integer32,
zxAnFanTrayHighSpeedShiftTemp Integer32,
zxAnFanTraySuperSpeedShiftTemp Integer32,
zxAnFanTrayLowSpeedPercent INTEGER,
zxAnFanTrayStdSpeedPercent INTEGER,
zxAnFanTrayHighSpeedPercent INTEGER,
zxAnFanTraySuperSpeedPercent INTEGER,
zxAnFanTrayAdminStatus INTEGER,
zxAnFanTrayConfSpeedLevel INTEGER,
zxAnFanTrayPowerConsumption Integer32,
zxAnFanTraySn DisplayString,
zxAnFanTrayVoltage Integer32,
zxAnFanTrayCurrent Integer32,
zxAnFanTrayTemp Integer32
}
zxAnFanTrayAlarmBeepEnable OBJECT-TYPE
SYNTAX INTEGER{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The control status of the fan alarm beep."
DEFVAL { enable }
::= { zxAnEnvFanTrayEntry 1 }
zxAnFanTrayAutoSwitchByCardUp OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/disable fan auto switch with card installation. If it is
enabled, the fan under the card should be switched to running
status when the card is installed. Otherwise, the fan should be
shutdown.
"
DEFVAL { disable }
::= { zxAnEnvFanTrayEntry 2 }
zxAnFanTrayHardwareVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The hardware version of the fan tray"
::= { zxAnEnvFanTrayEntry 3 }
zxAnFanTraySoftwareVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The software version of the fan tray"
::= { zxAnEnvFanTrayEntry 4 }
zxAnFanTraySpeedCtrlMode OBJECT-TYPE
SYNTAX INTEGER
{
temperatureBasedAutoCtrl(1),
fixSpeed(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The speed control mode of the fan.
When this value is fixSpeed,zxAnFanTrayAdminStatus,
zxAnFanTrayConfSpeedLevel,zxAnEnvFanAdminStatus and
zxAnEnvFanConfSpeedLevel can be configured."
DEFVAL { temperatureBasedAutoCtrl }
::= { zxAnEnvFanTrayEntry 5 }
zxAnFanTrayLowSpeed OBJECT-TYPE
SYNTAX Integer32
UNITS "RPM"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The speed value of the fan's low speed level.
The values for ZXDSL9800,9210 are 1500,2400,2700,3000,3400,3700,
4000,4400.
NOTE:
Different equipment maybe has different default value.
"
::= { zxAnEnvFanTrayEntry 6 }
zxAnFanTrayStdSpeed OBJECT-TYPE
SYNTAX Integer32
UNITS "RPM"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The speed value of the fan's standard speed level.
The values for ZXDSL9800,9210 are 1500,2400,2700,3000,3400,3700,
4000,4400.
NOTE:
Different equipment maybe has different default value.
"
::= { zxAnEnvFanTrayEntry 7 }
zxAnFanTrayHighSpeed OBJECT-TYPE
SYNTAX Integer32
UNITS "RPM"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The speed value of the fan's high speed level.
The values for ZXDSL9800,9210 are 1500,2400,2700,3000,3400,3700,
4000,4400.
NOTE:
Different equipment maybe has different default value.
"
::= { zxAnEnvFanTrayEntry 8 }
zxAnFanTraySuperSpeed OBJECT-TYPE
SYNTAX Integer32
UNITS "RPM"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The speed value of the fan's super speed level.
The values for ZXDSL9800,9210 are 1500,2400,2700,3000,3400,3700,
4000,4400.
NOTE:
Different equipment maybe has different default value.
"
::= { zxAnEnvFanTrayEntry 9 }
zxAnFanTrayLowSpeedShiftTemp OBJECT-TYPE
SYNTAX Integer32(0..55)
UNITS "centigrade"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The temperature to activate the fan tray to shift to
the low speed level.
"
::= { zxAnEnvFanTrayEntry 10 }
zxAnFanTrayStdSpeedShiftTemp OBJECT-TYPE
SYNTAX Integer32(5..60)
UNITS "centigrade"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The temperature to activate the fan tray to shift to
the standard speed level.
"
::= { zxAnEnvFanTrayEntry 11 }
zxAnFanTrayHighSpeedShiftTemp OBJECT-TYPE
SYNTAX Integer32(10..65)
UNITS "centigrade"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The temperature to activate the fan tray to shift to
the high speed level.
"
::= { zxAnEnvFanTrayEntry 12 }
zxAnFanTraySuperSpeedShiftTemp OBJECT-TYPE
SYNTAX Integer32(15..70)
UNITS "centigrade"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The temperature to activate the fan tray to shift to
the super speed level.
"
::= { zxAnEnvFanTrayEntry 13 }
zxAnFanTrayLowSpeedPercent OBJECT-TYPE
SYNTAX INTEGER(10..97)
UNITS "percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The percentage of speed of the low speed level."
DEFVAL{30}
::= { zxAnEnvFanTrayEntry 14 }
zxAnFanTrayStdSpeedPercent OBJECT-TYPE
SYNTAX INTEGER(11..98)
UNITS "percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The percentage of speed of the standard speed level."
DEFVAL{50}
::= { zxAnEnvFanTrayEntry 15 }
zxAnFanTrayHighSpeedPercent OBJECT-TYPE
SYNTAX INTEGER(12..99)
UNITS "percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The percentage of speed of the high speed level."
DEFVAL{70}
::= { zxAnEnvFanTrayEntry 16 }
zxAnFanTraySuperSpeedPercent OBJECT-TYPE
SYNTAX INTEGER(13..100)
UNITS "percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The percentage of speed of the super speed level."
DEFVAL{90}
::= { zxAnEnvFanTrayEntry 17 }
zxAnFanTrayAdminStatus OBJECT-TYPE
SYNTAX INTEGER
{
up(1),
down(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The administrative status of the fan tray.
When zxAnFanTrayAdminStatus is configured, all the
zxAnEnvFanAdminStatus values are consistent with
zxAnFanTrayAdminStatus."
DEFVAL { up }
::= { zxAnEnvFanTrayEntry 18 }
zxAnFanTrayConfSpeedLevel OBJECT-TYPE
SYNTAX INTEGER
{
lowSpeed (1),
standardSpeed(2),
highSpeed (3),
superSpeed (4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The configured speed level of the fan tray.
When zxAnFanTrayConfSpeedLevel is configured, all the
zxAnEnvFanConfSpeedLevel values are consistent with
zxAnFanTrayConfSpeedLevel.
This variable is valid if zxAnFanTrayAdminStatus is up."
DEFVAL { standardSpeed }
::= { zxAnEnvFanTrayEntry 19 }
zxAnFanTrayPowerConsumption OBJECT-TYPE
SYNTAX Integer32
UNITS "0.001W"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Power consumption of the fan tray.
Value 0 means not available."
::= { zxAnEnvFanTrayEntry 20 }
zxAnFanTraySn OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..12))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The serial number of fan tray."
DEFVAL { "" }
::= { zxAnEnvFanTrayEntry 21 }
zxAnFanTrayVoltage OBJECT-TYPE
SYNTAX Integer32
UNITS "0.001Volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Voltage of the fan tray.
Value 0 means not available."
::= { zxAnEnvFanTrayEntry 22 }
zxAnFanTrayCurrent OBJECT-TYPE
SYNTAX Integer32
UNITS "0.001Amp"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current of the fan tray.
Value 0 means not available."
::= { zxAnEnvFanTrayEntry 23 }
zxAnFanTrayTemp OBJECT-TYPE
SYNTAX Integer32
UNITS "Centigrade"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The temperature of the fan tray."
::= { zxAnEnvFanTrayEntry 24 }
-------------------------------------------------------------------------------
-- 6.2 Fans Control And Operational Status table
-------------------------------------------------------------------------------
zxAnEnvFanTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnEnvFanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table includes speed information and operational status of
the fan units."
::= { zxAnEnvFanObjects 11 }
zxAnEnvFanEntry OBJECT-TYPE
SYNTAX ZxAnEnvFanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of zxAnEnvFanTable. "
INDEX { zxAnEnvRack, zxAnEnvShelf, zxAnEnvFanIndex }
::= { zxAnEnvFanTable 1 }
ZxAnEnvFanEntry ::= SEQUENCE {
zxAnEnvFanIndex Integer32,
zxAnEnvFanConfSpeedLevel INTEGER,
zxAnEnvFanActualSpeedLevel INTEGER,
zxAnEnvFanAdminStatus INTEGER,
zxAnEnvFanOperStatus INTEGER,
zxAnEnvFanOnlineStatus INTEGER,
zxAnEnvFanActualSpeed Integer32
}
zxAnEnvFanIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of this fan unit.
For 19-inch shelf, there are 3 fans in each fan tray.
The fan index should be integer in [1,3].
For 21-inch shelf, there are 4 fans. The fan index should
be integer in [1,4]."
::= { zxAnEnvFanEntry 1 }
zxAnEnvFanConfSpeedLevel OBJECT-TYPE
SYNTAX INTEGER
{
lowSpeed (1),
standardSpeed(2),
highSpeed (3),
superSpeed (4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configured speed level of the fan unit singly."
DEFVAL { standardSpeed }
::= { zxAnEnvFanEntry 2 }
zxAnEnvFanActualSpeedLevel OBJECT-TYPE
SYNTAX INTEGER
{
lowSpeed (1),
standardSpeed(2),
highSpeed (3),
superSpeed (4),
other (10)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The actual speed level of the fan unit."
::= { zxAnEnvFanEntry 3 }
zxAnEnvFanAdminStatus OBJECT-TYPE
SYNTAX INTEGER
{
up(1),
down(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The administrative status of the fan unit singly."
DEFVAL { up }
::= { zxAnEnvFanEntry 4 }
zxAnEnvFanOperStatus OBJECT-TYPE
SYNTAX INTEGER
{
up(1),
down(2),
unknown(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The operational status of the fan unit."
::= { zxAnEnvFanEntry 5 }
zxAnEnvFanOnlineStatus OBJECT-TYPE
SYNTAX INTEGER
{
online(1),
offline(2),
unknown(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The actual online status of the fan unit."
::= { zxAnEnvFanEntry 6 }
zxAnEnvFanActualSpeed OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The actual speed of the fan unit.
NOTE:
If not supported, NMS should use the speed value of
zxAnEnvFanActualSpeedLevel."
::= { zxAnEnvFanEntry 7 }
-------------------------------------------------------------------------------
-- 6.3 Fan Tray Reset Objects
-------------------------------------------------------------------------------
zxAnEnvFanTrayResetRack OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The rack number of the fan tray."
::= { zxAnEnvFanTrayResetObjects 1 }
zxAnEnvFanTrayResetShelfList OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 16 ) )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The shelf number list of the fan tray.
They can be reset in batch, for example: 1,2,3.
Setting this object to empty means all the fan trays
connected with zxAnEnvFanTrayRack will be reset."
::= { zxAnEnvFanTrayResetObjects 2 }
zxAnEnvFanTrayResetAction OBJECT-TYPE
SYNTAX INTEGER
{
reset(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Reset the fan trays.
To query this object, always return 1."
::= { zxAnEnvFanTrayResetObjects 3 }
-------------------------------------------------------------------------------
-- 8. Environment Device Objects
-------------------------------------------------------------------------------
zxAnEnvDeviceTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnEnvDeviceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of environment device."
::= { zxAnEnvDeviceObjects 2 }
zxAnEnvDeviceEntry OBJECT-TYPE
SYNTAX ZxAnEnvDeviceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of the zxAnEnvDeviceTable."
INDEX { zxAnEnvDeviceId }
::= { zxAnEnvDeviceTable 1 }
ZxAnEnvDeviceEntry ::= SEQUENCE {
zxAnEnvDeviceId Integer32,
zxAnEnvDeviceName DisplayString,
zxAnEnvDeviceRowStatus RowStatus
}
zxAnEnvDeviceId OBJECT-TYPE
SYNTAX Integer32(1..100)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ID of this environment device.
Value 1-50 is default value which can not be modified or deleted.
If add a new device, the ID will be starting from 51."
::= { zxAnEnvDeviceEntry 1 }
zxAnEnvDeviceName OBJECT-TYPE
SYNTAX DisplayString(SIZE(1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The name of the environment device."
::= { zxAnEnvDeviceEntry 2 }
zxAnEnvDeviceRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this conceptual row.
The supported actions of this conceptual row only include:
'createAndGo' and 'destroy'.
To create a row in this table, a manager must set this object to
createAndGo(4).
To delete a row in this table, a manager must set this object to
destroy(6).
To get this object, the agent always returns active(1).
"
::= { zxAnEnvDeviceEntry 50 }
-------------------------------------------------------------------------------
-- 9. Environment Device Switch Objects
-------------------------------------------------------------------------------
zxAnEnvDevMonSwitchTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZxAnEnvDevMonSwitchEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of the switch which monitors environment device."
::= { zxAnEnvDeviceObjects 3 }
zxAnEnvDevMonSwitchEntry OBJECT-TYPE
SYNTAX ZxAnEnvDevMonSwitchEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of the zxAnEnvDevMonSwitchTable."
INDEX { zxAnEnvDevMonSwitchId }
::= { zxAnEnvDevMonSwitchTable 1 }
ZxAnEnvDevMonSwitchEntry ::= SEQUENCE {
zxAnEnvDevMonSwitchId Integer32,
zxAnEnvDevMonSwitchDeviceId Integer32,
zxAnEnvDevMonSwitchTrapEnable INTEGER,
zxAnEnvDevMonSwitchNormalStatus INTEGER,
zxAnEnvDevMonSwitchCurrStatus INTEGER
}
zxAnEnvDevMonSwitchId OBJECT-TYPE
SYNTAX Integer32(1..8)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ID of the switch."
::= { zxAnEnvDevMonSwitchEntry 1 }
zxAnEnvDevMonSwitchDeviceId OBJECT-TYPE
SYNTAX Integer32(0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The ID of the device which monitored by the switch.
Value 0 means this switch does not monitor any device."
DEFVAL { 0 }
::= { zxAnEnvDevMonSwitchEntry 2 }
zxAnEnvDevMonSwitchTrapEnable OBJECT-TYPE
SYNTAX INTEGER
{
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables or disables the environment device abnormal trap."
DEFVAL { disabled }
::= { zxAnEnvDevMonSwitchEntry 3 }
zxAnEnvDevMonSwitchNormalStatus OBJECT-TYPE
SYNTAX INTEGER
{
lowLevel(1),
highLevel(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The normal status of the environment device."
DEFVAL { lowLevel }
::= { zxAnEnvDevMonSwitchEntry 4 }
zxAnEnvDevMonSwitchCurrStatus OBJECT-TYPE
SYNTAX INTEGER
{
lowLevel(1),
highLevel(2),
unknown(255)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current status of the environment device. "
::= { zxAnEnvDevMonSwitchEntry 5 }
-------------------------------------------------------------------------------
-- 21. zxAnEnvMonNotifications
-------------------------------------------------------------------------------
---envTempHigh alarm
zxAnEnvHighTempAlm NOTIFICATION-TYPE
OBJECTS { zxAnEnvTemp, zxAnEnvTempHighAlmThreshold }
STATUS current
DESCRIPTION
"The environment temperature has exceeded high temperature
threshold zxAnEnvTempHighAlmThreshold.
The zxAnEnvTemp object identifies the current temperature."
::= { zxAnEnvMonTempTraps 1 }
zxAnEnvHighTempClr NOTIFICATION-TYPE
OBJECTS { zxAnEnvTemp, zxAnEnvTempHighAlmThreshold }
STATUS current
DESCRIPTION
"The environment temperature has returned to normal operating
temperature from zxAnEnvTempHighAlmThreshold.
The zxAnEnvTemp object identifies the current temperature."
::= { zxAnEnvMonTempTraps 2 }
zxAnEnvTempSensorFailure NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"It indicates that the temperature sensor is in fault."
::= { zxAnEnvMonTempTraps 5 }
zxAnEnvCriticalTempAlm NOTIFICATION-TYPE
OBJECTS { zxAnEnvTemp, zxAnEnvTempCriticalAlmThreshold }
STATUS current
DESCRIPTION
"The environment temperature has exceeded critical temperature
threshold zxAnEnvTempCriticalAlmThreshold.
The zxAnEnvTemp object identifies the current temperature."
::= { zxAnEnvMonTempTraps 6 }
zxAnEnvCriticalTempClr NOTIFICATION-TYPE
OBJECTS { zxAnEnvTemp, zxAnEnvTempCriticalAlmThreshold }
STATUS current
DESCRIPTION
"The environment temperature has returned to normal operating
temperature from zxAnEnvTempCriticalAlmThreshold.
The zxAnEnvTemp object identifies the current temperature."
::= { zxAnEnvMonTempTraps 7 }
zxAnEnvLowTempAlm NOTIFICATION-TYPE
OBJECTS { zxAnEnvTemp, zxAnEnvTempLowAlmThreshold }
STATUS current
DESCRIPTION
"The environment temperature is below low temperature
threshold zxAnEnvTempLowAlmThreshold.
The zxAnEnvTemp object identifies the current temperature."
::= { zxAnEnvMonTempTraps 8 }
zxAnEnvLowTempClr NOTIFICATION-TYPE
OBJECTS { zxAnEnvTemp, zxAnEnvTempLowAlmThreshold }
STATUS current
DESCRIPTION
"The environment temperature has returned to normal operating
temperature from zxAnEnvTempLowAlmThreshold.
The zxAnEnvTemp object identifies the current temperature."
::= { zxAnEnvMonTempTraps 9 }
zxAnEnvCardShutdownAlm NOTIFICATION-TYPE
OBJECTS { zxAnEnvCardShutdownReason,
zxAnCardTemp,
zxAnEnvTemp,
zxAnEnvEmergencyBatteryVoltage,
zxAnEnvEmergencyBatteryThreshold }
STATUS current
DESCRIPTION
"A zxAnEnvCardShutdownAlm trap is sent when the card has
been shut down because agent has detected that the temperature
is too high or the AC power is failure and the battery voltage
is lower than zxAnEnvEmergencyBatteryThreshold.
zxAnEnvCardShutdownReason indicates the real reason.
When zxAnEnvCardShutdownReason is envHighTemperature ( 1 ),
it means the environment temperature is too high,
zxAnEnvTemp is the value of current environment temperature,
zxAnCardTemp is invalid and should be zero.
zxAnEnvEmergencyBatteryVoltage and zxAnEnvEmergencyBatteryThreshold
are invalid and should be zero.
When zxAnEnvCardShutdownReason is cardHighTemperature ( 2 ),
it means the card temperature is too high,
zxAnCardTemp is the value of current card temperature,
zxAnEnvTemp is invalid and should be zero.
zxAnEnvEmergencyBatteryVoltage and zxAnEnvEmergencyBatteryThreshold
are invalid and should be zero.
When zxAnEnvCardShutdownReason is chipHighTemperature ( 3 ),
it means the temperature of the chip on the card is too high,
zxAnCardTemp and zxAnEnvTemp are invalid and should be zero.
zxAnEnvEmergencyBatteryVoltage and zxAnEnvEmergencyBatteryThreshold
are invalid and should be zero.
When zxAnEnvCardShutdownReason is emergencyPowerSaving ( 4 ),
it means the AC power is failure, the emergency power saving action
has been taken, zxAnCardTemp and zxAnEnvTemp are invalid
and should be zero.
zxAnEnvEmergencyBatteryVoltage is the value of the current battery
voltage, zxAnEnvEmergencyBatteryThreshold is the threshold of the
battery voltage.
"
::= { zxAnEnvMonTempTraps 30 }
zxAnEnvCardShutdownClr NOTIFICATION-TYPE
OBJECTS { zxAnEnvCardShutdownReason,
zxAnCardTemp,
zxAnEnvTemp,
zxAnEnvEmergencyBatteryVoltage,
zxAnEnvEmergencyBatteryThreshold }
STATUS current
DESCRIPTION
"A zxAnEnvCardShutdownClr trap is sent when the card
temperature becomes normal,
or the environment temperature becomes normal,
or the chip temperature becomes normal,
or the battery voltage is higher than
zxAnEnvEmergencyBatteryThreshold or AC power becomes normal."
::= { zxAnEnvMonTempTraps 31 }
zxAnEnvTemperatureAbnormalAlm NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"In temperature control mode, a zxAnEnvTemperatureAbnormalAlm trap
is sent when the environment temperature can't be read."
::= { zxAnEnvMonTempTraps 32 }
zxAnEnvTemperatureAbnormalClr NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"A zxAnEnvTemperatureAbnormalClr trap is sent when
the zxAnEnvTemperatureAbnormalAlm is cleared."
::= { zxAnEnvMonTempTraps 33 }
zxAnEnvNearCriticalTempAlm NOTIFICATION-TYPE
OBJECTS {
zxAnEnvTemp,
zxAnEnvTempCriticalAlmThreshold
}
STATUS current
DESCRIPTION
"A zxAnEnvNearCriticalTempAlm trap is sent when the environment
temperature is close to the environment critical temperature alarm
threshold."
::= { zxAnEnvMonTempTraps 34 }
zxAnEnvNearCriticalTempClr NOTIFICATION-TYPE
OBJECTS {
zxAnEnvTemp,
zxAnEnvTempCriticalAlmThreshold
}
STATUS current
DESCRIPTION
"A zxAnEnvNearCriticalTempClr trap is sent when
the zxAnEnvNearCriticalTempAlm is cleared."
::= { zxAnEnvMonTempTraps 35 }
zxAnEnvCardNearCriticalTempAlm NOTIFICATION-TYPE
OBJECTS {
zxAnCardTemp,
zxAnCardCriticalTempAlmThreshold
}
STATUS current
DESCRIPTION
"A zxAnEnvCardNearCriticalTempAlm trap is sent when the card
temperature is close to the card critical temperature alarm
threshold."
::= { zxAnEnvMonTempTraps 36 }
zxAnEnvCardNearCriticalTempClr NOTIFICATION-TYPE
OBJECTS {
zxAnCardTemp,
zxAnCardCriticalTempAlmThreshold
}
STATUS current
DESCRIPTION
"A zxAnEnvCardNearCriticalTempClr trap is sent when
the zxAnEnvCardNearCriticalTempAlm is cleared."
::= { zxAnEnvMonTempTraps 37 }
zxAnEnvOptNearCriticalTempAlm NOTIFICATION-TYPE
OBJECTS {
zxAnCardOptHighestTemp,
zxAnCardOptCriticalTempAlmThresh,
zxAnCardOptHighestTempPortNo
}
STATUS current
DESCRIPTION
"A zxAnEnvOptNearCriticalTempAlm trap is sent when the optical
module temperature is close to the optical module critical
temperature alarm threshold."
::= { zxAnEnvMonTempTraps 38 }
zxAnEnvOptNearCriticalTempClr NOTIFICATION-TYPE
OBJECTS {
zxAnCardOptHighestTemp,
zxAnCardOptCriticalTempAlmThresh,
zxAnCardOptHighestTempPortNo
}
STATUS current
DESCRIPTION
"A zxAnEnvOptNearCriticalTempClr trap is sent when
the zxAnEnvOptNearCriticalTempAlm is cleared."
::= { zxAnEnvMonTempTraps 39 }
zxAnEnvHeatRadiationAbnormalAlm NOTIFICATION-TYPE
OBJECTS {
zxAnEnvTemp,
zxAnCardTemp,
zxAnCardHeatRadiationAlmThresh
}
STATUS current
DESCRIPTION
"A zxAnEnvHeatRadiationAbnormalAlm trap is sent when the
temperature difference between the card and the environment
exceeds the zxAnCardHeatRadiationAlmThresh."
::= { zxAnEnvMonTempTraps 40 }
zxAnEnvHeatRadiationAbnormalClr NOTIFICATION-TYPE
OBJECTS {
zxAnEnvTemp,
zxAnCardTemp,
zxAnCardHeatRadiationAlmThresh
}
STATUS current
DESCRIPTION
"A zxAnEnvHeatRadiationAbnormalClr trap is sent when
the zxAnEnvHeatRadiationAbnormalAlm is cleared."
::= { zxAnEnvMonTempTraps 41 }
---interface link down alarm
zxAnEnvMonitorInterfaceLinkDown NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"It indicates that the agent has detected that the
link at the environment monitoring interface has been down."
::= { zxAnEnvMonInterfaceTraps 1 }
zxAnEnvMonitorInterfaceLinkUp NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"It indicates that the agent has detected that the
link at the environment monitoring interface has been up."
::= { zxAnEnvMonInterfaceTraps 2 }
--- Power Supply Alarm
zxAnEnvPowerSupplyModuleDown NOTIFICATION-TYPE
OBJECTS { zxAnPowerSupplyOperStatus }
STATUS current
DESCRIPTION
"It indicates that the power supply module is down."
::= { zxAnEnvMonPowerSupplyTraps 1 }
zxAnEnvPowerSupplyModuleUp NOTIFICATION-TYPE
OBJECTS { zxAnPowerSupplyOperStatus }
STATUS current
DESCRIPTION
"It indicates that the power supply module is up."
::= { zxAnEnvMonPowerSupplyTraps 2 }
zxAnEnvPowerOverVoltageAlm NOTIFICATION-TYPE
OBJECTS { zxAnPowerSupplyInVoltage, zxAnPowerInVoltageUpperThresh }
STATUS current
DESCRIPTION
"It indicates that the input voltage of power supply is
over-voltage."
::= { zxAnEnvMonPowerSupplyTraps 3 }
zxAnEnvPowerOverVoltageClr NOTIFICATION-TYPE
OBJECTS { zxAnPowerSupplyInVoltage,zxAnPowerInVoltageUpperThresh }
STATUS current
DESCRIPTION
"It indicates that the over-voltage fault is cleared."
::= { zxAnEnvMonPowerSupplyTraps 4 }
zxAnEnvPowerUnderVoltageAlm NOTIFICATION-TYPE
OBJECTS { zxAnPowerSupplyInVoltage,zxAnPowerInVoltageLowerThresh }
STATUS current
DESCRIPTION
"It indicates that the input voltage of power supply is
under-voltage."
::= { zxAnEnvMonPowerSupplyTraps 5 }
zxAnEnvPowerUnderVoltageClr NOTIFICATION-TYPE
OBJECTS { zxAnPowerSupplyInVoltage,zxAnPowerInVoltageLowerThresh }
STATUS current
DESCRIPTION
"It indicates that the under-voltage fault is cleared."
::= { zxAnEnvMonPowerSupplyTraps 6 }
zxAnEnvPowerOff NOTIFICATION-TYPE
OBJECTS { zxAnPowerSupplyInVoltageStatus }
STATUS current
DESCRIPTION
"It indicates that the power supply is off."
::= { zxAnEnvMonPowerSupplyTraps 7 }
zxAnEnvPowerOn NOTIFICATION-TYPE
OBJECTS { zxAnPowerSupplyInVoltageStatus }
STATUS current
DESCRIPTION
"It indicates that the power supply off fault is cleared."
::= { zxAnEnvMonPowerSupplyTraps 8 }
zxAnEnvEmergencyPowerSaveAlm NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"The current power supply switches to storage battery,
the emergency power saving action has been taken."
::= { zxAnEnvMonPowerSupplyTraps 9 }
zxAnEnvEmergencyPowerSaveClr NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"The current power supply switches to normal AC power."
::= { zxAnEnvMonPowerSupplyTraps 10 }
zxAnEnvACPowerDownAlm NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"A zxAnEnvACPowerDownAlm trap is sent when the agent detects no AC
power input."
::= { zxAnEnvMonPowerSupplyTraps 11 }
zxAnEnvACPowerDownClr NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"A zxAnEnvACPowerDownClr trap is sent when the agent detects AC
power input."
::= { zxAnEnvMonPowerSupplyTraps 12 }
zxAnEnvNoBatteryAlm NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"A zxAnEnvNoBatteryAlm trap is sent when no battery found by
the agent."
::= { zxAnEnvMonPowerSupplyTraps 13 }
zxAnEnvNoBatteryClr NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"A zxAnEnvNoBatteryClr trap is sent when the battery has been found
by the agent."
::= { zxAnEnvMonPowerSupplyTraps 14 }
zxAnEnvBatteryUnderVoltageAlm NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"A zxAnEnvBatteryUnderVoltageAlm trap is sent when the battery
voltage is under-voltage."
::= { zxAnEnvMonPowerSupplyTraps 15 }
zxAnEnvBatteryUnderVoltageClr NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"A zxAnEnvBatteryUnderVoltageClr trap is sent when the battery
voltage becomes normal."
::= { zxAnEnvMonPowerSupplyTraps 16 }
--- Fan Alarm
zxAnEnvFanLinkDown NOTIFICATION-TYPE
OBJECTS { zxAnEnvFanOnlineStatus }
STATUS current
DESCRIPTION
"It indicates that the agent has detected that fan is offline."
::= { zxAnEnvMonFanTraps 1 }
zxAnEnvFanLinkUp NOTIFICATION-TYPE
OBJECTS { zxAnEnvFanOnlineStatus }
STATUS current
DESCRIPTION
"It indicates that the agent has detected that fan is online."
::= { zxAnEnvMonFanTraps 2 }
zxAnEnvFanTrayLinkDown NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"It indicates that the agent has detected that the
link at the fan card interface has been down."
::= { zxAnEnvMonFanTraps 3 }
zxAnEnvFanTrayLinkUp NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"It indicates that the agent has detected that the
link at the fan card interface has been up."
::= { zxAnEnvMonFanTraps 4 }
zxAnEnvFanFailureAlm NOTIFICATION-TYPE
OBJECTS { zxAnEnvFanOperStatus }
STATUS current
DESCRIPTION
"It indicates that the fan is in fault."
::= { zxAnEnvMonFanTraps 5 }
zxAnEnvFanFailureClr NOTIFICATION-TYPE
OBJECTS { zxAnEnvFanOperStatus }
STATUS current
DESCRIPTION
"It indicates that the fan's fault is cleared."
::= { zxAnEnvMonFanTraps 6 }
zxAnEnvDeviceAbnormalAlm NOTIFICATION-TYPE
OBJECTS {
zxAnEnvDevMonSwitchDeviceId,
zxAnEnvDevMonSwitchNormalStatus,
zxAnEnvDevMonSwitchCurrStatus,
zxAnEnvDeviceName
}
STATUS current
DESCRIPTION
"A zxAnEnvDeviceAbnormalAlm trap is sent when the current status
of environment device is inconsistent with normal status."
::= { zxAnEnvDeviceTraps 1 }
zxAnEnvDeviceAbnormalClr NOTIFICATION-TYPE
OBJECTS {
zxAnEnvDevMonSwitchDeviceId,
zxAnEnvDevMonSwitchNormalStatus,
zxAnEnvDevMonSwitchCurrStatus,
zxAnEnvDeviceName
}
STATUS current
DESCRIPTION
"A zxAnEnvDeviceAbnormalClr trap is sent when current status
of environment device is consistent with normal status."
::= { zxAnEnvDeviceTraps 2 }
-------------------------------------------------------------------------------
-- 31. zxAnEnvMonConformance
-------------------------------------------------------------------------------
zxAnEnvMonConformance OBJECT IDENTIFIER ::= { zxAnEnvMonMib 4 }
zxAnEnvMonCompliances OBJECT IDENTIFIER ::= { zxAnEnvMonConformance 1 }
zxAnEnvMonGroups OBJECT IDENTIFIER ::= { zxAnEnvMonConformance 2 }
zxAnEnvMonCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for SNMP entities which implement the
ZTE-AN-ENVMON-MIB."
MODULE -- this module
MANDATORY-GROUPS {
zxAnEnvMonCapabilitiesGroup,
zxAnEnvTempGroup,
zxAnEnvCardTempGroup,
zxAnEnvInterfaceGroup,
zxAnEnvPowerSupplyGroup,
zxAnEnvFanTrayTableGroup,
zxAnEnvFanTableGroup,
zxAnEnvMonNotificationsGroup
}
::= { zxAnEnvMonCompliances 1 }
zxAnEnvMonCapabilitiesGroup OBJECT-GROUP
OBJECTS { zxAnEnvMonCapabilities
}
STATUS current
DESCRIPTION
"The collection of objects which are used to represent environment
management capabilities of this equipment. The bit value 1 means
the function represented by this bit is supported by this
equipment."
::= { zxAnEnvMonGroups 1 }
zxAnEnvTempGroup OBJECT-GROUP
OBJECTS { zxAnEnvTemp,
zxAnEnvTempHighAlmThreshold,
zxAnEnvTempCriticalAlmThreshold,
zxAnEnvTempLowAlmThreshold
}
STATUS current
DESCRIPTION
"The collection of objects which are used to represent the
temperature information of this equipment/card and to set the
temperature alarm threshold of the environment/card."
::= { zxAnEnvMonGroups 2 }
zxAnEnvCardTempGroup OBJECT-GROUP
OBJECTS { zxAnCardTemp,
zxAnCardEnvHis15MinTemp,
zxAnCardEnvHis1DayTemp,
zxAnCardEnvRiseAlmThresh,
zxAnCardEnvClrRiseAlmThresh,
zxAnCardEnvRiseWarnThresh,
zxAnCardEnvClrRiseWarnThresh,
zxAnCardEnvFallWarnThresh,
zxAnCardEnvClrFallWarnThresh,
zxAnCardEnvFallAlmThresh,
zxAnCardEnvClrFallAlmThresh,
zxAnCardEnvAlmPrfConfRowStatus,
zxAnCardEnvAlmPrf,
zxAnCardEnvAlmPrfApplyRowStatus,
zxAnCardEnvAlmPrfRowStatus
}
STATUS current
DESCRIPTION
"The collection of objects which are used to represent temperature
performance of the card environment."
::= { zxAnEnvMonGroups 3 }
zxAnEnvInterfaceGroup OBJECT-GROUP
OBJECTS { zxAnEnvMonInterfaceUsage,
zxAnEnvEpmConnectPort,
zxAnEnvBackplaneInterfaceUsage
}
STATUS current
DESCRIPTION
"The collection of objects which are used to represent the
interface connection of the equipment."
::= { zxAnEnvMonGroups 4 }
zxAnEnvPowerSupplyGroup OBJECT-GROUP
OBJECTS { zxAnPowerSupplyMaxPowerNum,
zxAnPowerSupplyOperStatus,
zxAnPowerSupplyInVoltage,
zxAnPowerSupplyInVoltageStatus,
zxAnPowerInVoltageUpperThresh,
zxAnPowerInVoltageLowerThresh,
zxAnPowerSupplyInCurrent,
zxAnPowerInCurrentThresh
}
STATUS current
DESCRIPTION
"The collection of objects which are used to provide power
management functions, include power count and the voltage status
of the power supply."
::= { zxAnEnvMonGroups 5 }
zxAnEnvFanTrayTableGroup OBJECT-GROUP
OBJECTS { zxAnFanTrayAlarmBeepEnable,
zxAnFanTrayAutoSwitchByCardUp,
zxAnFanTrayHardwareVersion,
zxAnFanTraySoftwareVersion,
zxAnFanTraySpeedCtrlMode,
zxAnFanTrayLowSpeed,
zxAnFanTrayStdSpeed,
zxAnFanTrayHighSpeed,
zxAnFanTraySuperSpeed,
zxAnFanTrayLowSpeedShiftTemp,
zxAnFanTrayStdSpeedShiftTemp,
zxAnFanTrayHighSpeedShiftTemp,
zxAnFanTraySuperSpeedShiftTemp,
zxAnFanTrayLowSpeedPercent,
zxAnFanTrayStdSpeedPercent,
zxAnFanTrayHighSpeedPercent,
zxAnFanTraySuperSpeedPercent,
zxAnFanTraySn
}
STATUS current
DESCRIPTION
"The collection of objects which are used to provide fan management
functions, include setting the speed control mode and the
percentage of speed of the different speed level of the fan."
::= { zxAnEnvMonGroups 6 }
zxAnEnvFanTableGroup OBJECT-GROUP
OBJECTS { zxAnEnvFanConfSpeedLevel,
zxAnEnvFanActualSpeedLevel,
zxAnEnvFanAdminStatus,
zxAnEnvFanOperStatus,
zxAnEnvFanOnlineStatus,
zxAnEnvFanActualSpeed
}
STATUS current
DESCRIPTION
"The collection of objects which are used to provide the speed
information and operational status of the fan."
::= { zxAnEnvMonGroups 7 }
zxAnEnvMonNotificationsGroup OBJECT-GROUP
OBJECTS { zxAnEnvHighTempAlm,
zxAnEnvHighTempClr,
zxAnEnvMonitorInterfaceLinkDown,
zxAnEnvMonitorInterfaceLinkUp,
zxAnEnvFanLinkDown,
zxAnEnvFanLinkUp,
zxAnEnvTempSensorFailure,
zxAnEnvFanFailureAlm,
zxAnEnvFanFailureClr,
zxAnEnvPowerSupplyModuleDown,
zxAnEnvPowerSupplyModuleUp,
zxAnEnvFanTrayLinkDown,
zxAnEnvFanTrayLinkUp,
zxAnEnvPowerOverVoltageAlm,
zxAnEnvPowerOverVoltageClr,
zxAnEnvPowerUnderVoltageAlm,
zxAnEnvPowerUnderVoltageClr,
zxAnEnvPowerOff,
zxAnEnvPowerOn,
zxAnEnvACPowerDownAlm,
zxAnEnvACPowerDownClr,
zxAnEnvNoBatteryAlm,
zxAnEnvNoBatteryClr,
zxAnEnvBatteryUnderVoltageAlm,
zxAnEnvBatteryUnderVoltageClr,
zxAnEnvCardShutdownAlm,
zxAnEnvCardShutdownClr,
zxAnEnvCriticalTempAlm,
zxAnEnvCriticalTempClr,
zxAnEnvLowTempAlm,
zxAnEnvLowTempClr,
zxAnEnvOptNearCriticalTempAlm,
zxAnEnvOptNearCriticalTempClr,
zxAnEnvHeatRadiationAbnormalAlm,
zxAnEnvHeatRadiationAbnormalClr
}
STATUS current
DESCRIPTION
"The notifications which indicate specific changes, include
temperature, fan status, power status and gpon card status."
::= { zxAnEnvMonGroups 8 }
END
|