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
|
CM-ALARM-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, Integer32
FROM SNMPv2-SMI
TimeStamp, DateAndTime, TruthValue, VariablePointer, DisplayString,
TEXTUAL-CONVENTION
FROM SNMPv2-TC
TrapAlarmSeverity
FROM ADVA-MIB
neIndex, shelfIndex, slotIndex
FROM CM-ENTITY-MIB
cmEthernetAccPortIndex, cmEthernetNetPortIndex
FROM CM-FACILITY-MIB
fsp150cm
FROM ADVA-MIB;
cmAlarmMIB MODULE-IDENTITY
LAST-UPDATED "202003010000Z"
ORGANIZATION "ADVA Optical Networking SE"
CONTACT-INFO
"Web URL: http://adva.com/
E-mail: support@adva.com
Postal: ADVA Optical Networking SE
Campus Martinsried
Fraunhoferstrasse 9a
82152 Martinsried/Munich
Germany
Phone: +49 089 89 06 65 0
Fax: +49 089 89 06 65 199 "
DESCRIPTION
"This module defines the Alarm Monitoring MIB definitions
used by the F3 (FSP150CM/CC) product lines.
Copyright (C) ADVA."
REVISION "202003010000Z"
DESCRIPTION
"
Notes from release 202003010000Z
(1) Added new literal to CmAlarmEntityType
l3ptpport(234)
Notes from release 202002200000Z
(1) added new TEXTUAL-CONVENTION to CmConditionType
- invalid-syscfg
Notes from release 202001300000Z
(1) Added new literals to CmConditionType
- spoofing-pps
- spoofing-loc
Notes from release 202001140000Z
(1) Added new literals to CmConditionType
- jamming
- spoofing
Notes from release 201911240000Z
(1) Added new literals to CmConditionType
invalidsymkeypeering(401),
auto-asymmetry-delay-fail(402),
no-certificate(403),
certificate-expired-soon(404),
bpvc(405),
crcf(406),
oofc(407),
psuinputfail1(408),
psuinputfail2(409)
Notes from release 201909130000Z
(1) Added new literals to CmAlarmEntityType
- irig-card
- irg-port-group
Notes from release 201908140000Z
(1) add ed new literals to CmAlarmEntityType.
- oneru-xg120pro-sh-shelf,
- eth-xg-120pro-sh-card
Notes from release 201907080000Z,
(1) Added new TEXTUAL-CONVENTION to CmConditionType
- jamming, spoofing
Notes from release 201903070000Z
(1) Added new literals to CmAlarmEntityType.
- oneru-xg118proac-sh-shelf,
- eth-xg-118proac-sh-card
Notes from release 201903050000Z
(1) Added new literals to CmAlarmEntityType.
- ntp-clock
(2) Added new literals to CmConditionType
local-cooling-fail
Notes from release 201809240000Z
(1) Added new literals to CmAlarmEntityType.
- oneru-xg118pro-sh-shelf,
- eth-xg-118pro-sh-card
Notes from release 201804190000Z
(1) Added new literals to CmAlarmEntityType.
- oneru-xg116pro-h-shelf,
- eth-xg-116pro-h-card
Notes from release 201802020000Z
(1) Added new literals to CmConditionType.
(2) Added new literals to CmAlarmEntityType.
Notes from release 201708220000Z
(1) CmAlarmEntityType: Added literals
oneru-osa5430-shelf, eth-csm-card, threeru-osa5440-shelf
Notes from release 201703170000Z
(1) CmConditionType: Added literals gatewayNotReachable, pdop-mask-cross
Notes from release 201703080000Z
(1) CmConditionType: Added literals pps-not-generated, min-sat-1-thrshld-crossed, min-sat-2-thrshld-crossed
Notes from release 201612190000Z
(1) CmConditionType: Added literals bmcaError, freeze, gpsFwUpgrade
(2) CmAlarmEntityType: Added literals osa-ge-4s, elpgroup
Notes from release 201605240000Z
(1) added ge112proVm device (selves and cards) to CmAlarmEntityType
Notes from release 201603150000Z
(1) added ge114proVm devices (H/CH/SCH/ selves and cards) to CmAlarmEntityType
(2) added server-card to CmAlarmEntityType
Notes from release 201512210000Z
(1) Added new literal to CmConditionType (Release 8.1CC - XG210),
erpRingSegmentation
Notes from release 201502040000Z
(1) added oneru-xg210c-shelf, eth-xg-210c-card, ge-8sc-cc to CmAlarmEntityType
(2) added macSecKeyExchangeFail, macSecPasswordMissing, macSecRamCleared,
noRouteResources to CmConditionType
Notes from release 201502010000Z
(i) Added literals to CmAlarmEntityType (Release 7.1sp - OSA5411),
oneru-osa5411-shelf, eth-osa5411-card
Notes from release 201408280000Z
(i) Added new literal trafficResourceLimitExceeded to CmConditionType
Notes from release 201407180000Z,
(i) Added new CmLoopbackType literals,
oduAis, opuAis, otuAis, otnProtMsmtch, otnProtPrtclFail, oduBdi,
otuBdi, lossCharSync, berHigh, laserFail, laserCurrentAbnormal,
oduLock, autoShutdown, localFault, otuLof, otuLom, oduOci, opuPlm,
oduSd, otuSd, opuSf, optPowerHighRx, optPowerLowRx, optPowerHighTx,
optPowerLowTx, oduTim, otuTim
(ii) Added new CmAlarmEntityType literals,
oneru-otn210-shelf, eth-otn-210-card
Notes from release 201404170000Z
(i) Added new literal xfpWaveLengthMismatch to CmConditionType
Notes from release 201205170000Z
(i) Alarm Entity Types for PWE3, PTP
(ii) Condition Types for PWE3, PTP, ELMI
Notes from release 201112070000Z
(i) Added f3EnvAlarmInputTable with objects
f3EnvAlarmInputIndex, f3EnvAlarmInputDescr, f3EnvAlarmInputCondType,
f3EnvAlarmInputNotifCode, f3EnvAlarmInputMode
Notes from release 201012140000Z
(i) Added objects cmAlmTestAlarmEntity, cmAlmTestAlarmAction
Notes from release 201010270000Z
(i) Added objects cmSysAlmAdditionalInfoObject, cmSysAlmAdditionalInfoName,
cmSysCondAdditionalInfoObject, cmSysCondAdditionalInfoName
(ii) Added objects cmNetworkElementAlmAdditionalInfoObject,
cmNetworkElementAlmAdditionalInfoName,
cmNetworkElementCondAdditionalInfoObject,
cmNetworkElementCondAdditionalInfoName
Notes from release 201006070000Z
Added literals to CmConditionType TC (Release 4.3CC - GE201),
syncreflck, syncreffrc, syncrefman,
syncrefwtr, syncrefsw, lcpfail, lcploopback,
authservernotreachable, excessiveinterrupts
Added literals to CmAlarmEntityType TC (Release 4.3CC - GE201),
oneru-ge201-shelf, eth-ge-201-card, oneru-ge201se-shelf,
eth-ge-201se-card
Notes from release 200903160000Z
This release is applicable to the FSP150CC Release 4.1
devices GE101 and GE206.
(1)Textual Convention CmAlarmEntityType is updated with additional
enumeration literals,
1ru-h1-shelf, 1ru-f1-shelf, eth-ge-101-card, eth-ge-206-card,
cfmmep, sync, bitsinport, bitsoutport
(2)Textual Convention CmConditionType is updated with additional
enumeration literals,
crossconnectccm, erroneousccm, someremotemepccm, somemacstatus,
somerdi, ais, syncref, esmcfail, qlmismatch, freqoff, los, lof,
qlsqlch, frngsync, fstsync, hldovrsync, losloc, wtr, allsyncref,
qlinvalid, snmpdghostunresolved, snmpdghostresourcesbusy,
bwexceedednegspeed, shaperbtd, sfpnonqualified,
avghldovrfrqnotrdy
(3)Added new objects cmSysAlmObject, cmSysAlmObjectName,
cmSysCondObject, cmSysCondObjectName
Notes from release 200803030000Z,
(1)MIB version ready for release FSP150CM 3.1."
::= {fsp150cm 6}
--
-- OID definitions
--
alarmObjects OBJECT IDENTIFIER ::= {cmAlarmMIB 1}
alarmNotifications OBJECT IDENTIFIER ::= {cmAlarmMIB 2}
alarmConformance OBJECT IDENTIFIER ::= {cmAlarmMIB 3}
--
-- Textual conventions.
--
CmServiceEffect ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Indicates whether a condition is service affecting or not."
SYNTAX INTEGER {
none(0),
nonServiceAffecting(1),
serviceAffecting(2)
}
CmLocation ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Identifies the location associated with the particular information."
SYNTAX INTEGER {
none(0),
both(1),
farEnd(2),
nearEnd(3),
notApplicable(4)
}
CmDirection ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies the direction associated with the particular information."
SYNTAX INTEGER {
none(0),
bidirectional(1),
bothDirections(2),
notApplicable(3),
receiveDirectionOnly(4),
transmitDirectionOnly(5),
uniDirectional(6)
}
--
-- New values may be added to future releases as long as existing
-- values are preserved.
--
CmConditionType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Identifies the type of condition or alarm being reported."
SYNTAX INTEGER {
none(0),
acoopr(1),
hwinitedsysboot(2),
userinitednemireboot(3),
userinitedsysboot(4),
userinitedsysbootdefaultdb(5),
userinitedsysbootdbrestore (6),
userinitedsysrebootswact(7),
sysrecoveryfailed(8),
primntpsvrFailed(9),
bckupntpsvrFailed(10),
swdl-ftip(11),
swdl-ftfail(12),
swdl-ftpass(13),
swdl-instip(14),
swdl-instfail(15),
swdl-instpass(16),
swdl-actip(17),
swdl-actfail(18),
swdl-actpass(19),
swdl-valip(20),
swdl-valfail(21),
swdl-valpass(22),
db-ftip(23),
db-ftfail(24),
db-ftpass(25),
ctneqpt(26),
eqptflt(27),
forced(28),
lockout(29),
manualswitch(30),
wkswtopr(31),
wkswbk(32),
mismatch(33),
psu1fail(34),
psu2fail(35),
eqptremoved(36),
autonegunknown(37),
dyinggasp(38),
efmfail(39),
efmrce(40),
efmrld(41),
efmrls(42),
lnkdeactivated(43),
lnkdownunisolated(44),
lnkdowncablefault(45),
lnkdowncableremoved(46),
lnkdownautonegfailed(47),
lnkdownlpbkfault(48),
lnkdowncabletestfault(49),
lnkdown(50),
rfi(51),
rxjabber(52),
sfpmismatch(53),
sfpremoved(54),
sfptxfault(55),
sfpinserted(56),
fan-a(57),
fan-b(58),
overtemp(59),
undertemp(60),
overvoltage(61),
undervoltage(62),
shelfrmvd(63),
rmtefmlpbkfail(64),
inpwrflt(65),
--
crossconnectccm(66),
erroneousccm(67),
someremotemepccm(68),
somemacstatus(69),
somerdi(70),
ais(71),
syncref(72),
esmcfail(73),
qlmismatch(74),
freqoff(75),
los(76),
lof(77),
qlsqlch(78),
frngsync(79),
fstsync(80),
hldovrsync(81),
losloc(82),
wtr(83),
allsyncref(84),
qlinvalid(85),
snmpdghostunresolved(86),
snmpdghostresourcesbusy(87),
bwexceedednegspeed(88),
shaperbtd(89),
sfpnonqualified(90),
avghldovrfrqnotrdy(91),
lnkdownmasterslavecfg(92),
pwrnoinputunitfault(93),
ipaddrconflict(94),
nomoreresources(95),
syncreflck(96), -- sync reference locked out
syncreffrc(97), -- sync reference forced switch
syncrefman(98), -- sync reference manual switch
syncrefwtr(99), -- sync reference wait to restore
syncrefsw(100), -- sync reference switch
lcpfail(101), -- link control protocol (PPP) failed
lcploopback(102), -- link control protocol detected loopback
authservernotreachable (103), -- authentications server not reachable
excessiveinterrupts(104), -- system detected abnormal, excessive interrupts
dbdowngradeip(105), -- database downgrade in progress
testalarm(106), -- test alarm standing condition
--
gen-filexfer-ip(107), -- generic file transfer in progress
gen-filexfer-fail(108), -- generic file transfer failed
gen-filexfer-pass(109), -- generic file transfer pass
gen-oper-ip(110), -- generic operation in progress
gen-oper-fail(111), -- generic operation fail
gen-oper-pass(112), -- generic operation pass
--
trafficfail(113),
clockfail(114),
rdncyswitchover(115),
rdncyswvermismatch(116),
rdncyoutofsync(117),
rdncylockout(118),
rdncymaintenance(119),
xfptxfault(120),
xfpmismatch(121),
xfpnonqualified(122),
xfpremoved(123),
xfpinserted(124),
lagmbrfail(125),
swdl-proip(126),
swdl-propass(127),
swdl-profail(128),
db-proip(129),
db-propass(130),
db-profail(131),
swdl-rvtip(132),
swdl-rvtpass(133),
swdl-rvtfail(134),
db-corruption(135),
bpmismatch(136),
--
popr-oovar(137), -- precision optical power out-of-variance
popr-oorange(138), -- precision optical power out-of-range
popr-genfail(139), -- precision optical power gen failure
popr-sfpnqual(140),--precision optical power sfp non-qual
popr-rta(141), --precision optical power return-to-avg
--
modemmea(142),
modemnonqualified(143),
modemremoved(144),
nosimcard(145),
--
env-genfail(146), -- environmental gen failure
env-misc(147), -- environmental miscellaneous
env-batterydischarge(148), -- environmental battery discharge
env-batteryfail(149), -- environmental battery failure
env-coolingfanfail(150), -- environmental cooling fan failure
env-enginefail(151), -- environmental engine failure
env-fusefail(152), -- environmental fuse failure
env-hightemp(153), -- environmental high temperature
env-intrusion(154), -- environmental intrusion
env-lowbatteryvoltage(155), -- environmental low battery voltage
env-lowtemp(156), -- environmental low temperature
env-opendoor(157), -- environmental open door
env-powerfail(158), -- environmental power failure
--
intctneqpt(159), -- inter-connect equipment failure
syncnotready(160), -- sync not ready
--
vcgfail(161),
loa(162),
plct(163),
tlct(164),
plcr(165),
tlcr(166),
sqnc(167),
--
ais-l(168),
rfi-l(169),
rei-l(170),
exc-l(171),
deg-l(172),
tim-s(173),
--
ais-p(174),
lop-p(175),
tim-p(176),
uneq-p(177),
plm-p(178),
lom-p(179),
exc-p(180),
deg-p(181),
rei-p(182),
rfi-p(183),
lcascrc(184),
sqm(185),
lom(186),
gidmismatch(187),
mnd(188),
ais-v(189),
lop-v(190),
tim-v(191),
uneq-v(192),
plm-v(193),
exc-v(194),
deg-v(195),
rei-v(196),
rfi-v(197),
rmtinitlpbk(198),
rai(199),
rei(200),
idle(201),
csf(202),
gfplfd(203),
gfpuplmismatch(204),
gfpexhmismatch(205),
vcat-lom(206),
fragileecc(207),
--
elmi-seqnummismatch(208), -- elmi, seq number mismatch
elmi-notoper(209), -- elmi, not operational
--
pw-rlofs(210), -- satop, remote loss of frame state
pw-lof(211), -- satop, loss of frames
pw-latefrm(212), -- satop, late frames
pw-jbovrn(213), -- satop, jitter buffer overruns
--
allsoocsfailed(214), -- ts, all soocs failed
tsholdoverfrqnotready(215), -- ts, hold over freq not ready
tsfreerun(216), -- ts, free run
tsholdover(217),-- ts, hold over
ptsflossofsync(218), --packet timing signal fail(sooc), loss of sync
ptsflossofannounce(219), -- packet timing signal fail, loss of announce
ptsfunusable(220), -- packet timing signal fail, unusable
--
unresolvedsatop(221),
rdi-v(222),
autonegBypass(223),
forcedOffline(224),
hwcfginconsistent(225),
--
sjmtiemaskcross(226),
sjoffsetfail(227),
sjnotimelock(228),
sjnofreqlock(229),
sjmtiemargincross(230),
sjtestreferencefail(231),
sjtestsourcefail(232),
sjtestnotimestamp(233),
sjtestnomessages(234),
gpsantennafail(235),
--
ampNoPeer(236), -- No Peer Available
ampProvFail(237), -- Provisioning Failure
ampCfgFail(238), -- Client Configuration Failure
--
ltpFailure(239),
ltpInprogress(240),
--
pse-power-threshold-exceeded(241),
pse-power-fail(242),
pse-poweroff-overcurrent(243),
pse-poweroff-overvoltage(244),
pse-poweroff-overload(245),
pse-poweroff-overtemp(246),
pse-poweroff-short(247),
--
erpFoPPM(248), -- Failure of Protocol, Protocol Mismatch
erpFoPTO(249), -- Failure of Protocol, Timeout
erpBlockPort0RPL(250), -- Blocking Port 0 - Ring Protection Link
erpBlockPort0SF(251), -- Blocking Port 0 - Signal Fail
erpBlockPort0MS(252), -- Blocking Port 0 - Manual Switch
erpBlockPort0FS(253), -- Blocking Port 0 - Forced Switch
erpBlockPort0WTR(254), -- Blocking Port 0 - Wait To Restore
erpBlockPort1RPL(255), -- Blocking Port 1 - Ring Protection Link
erpBlockPort1SF(256), -- Blocking Port 1 - Signal Fail
erpBlockPort1MS(257), -- Blocking Port 1 - Manual Switch
erpBlockPort1FS(258), -- Blocking Port 1 - Forced Switch
erpBlockPort1WTR(259), -- Blocking Port 1 - Wait To Restore
--
ipv6addr-conflict(260),
macAddrlearntblFull(261),
--
timeClockNotLocked(262),
timeNotTraceAble(263),
timeFreqNotTraceAble(264),
timeHoldOver(265),
timeFreqLock(266),
timeRefLock(267),
timeRefUnavailable(268),
timeRefDegraded(269),
timeRefFrc(270),
tsTimeFrun(271),
tsTimeHoldOver(272),
timeRefUnavailableWTR(273),
timeRefDegradedWTR(274),
rmtInitSat(275),
lldpRemoteTblChg(276),
soocLck(277),
-- gap for alarms added in 5.6CC
ampProvSuccess(278),
ampCfgSuccess(279),
soocSW(280),
soocWTR(281),
sjtealert(282),
dataExportFtpFail(283),
xfpWaveLengthMismatch(284),
cpmrUpgrading(285),
beaconLightFailure(286),
manualSwitchClear(287),
loopbackActive(288),
loopbackRequest(289),
trafficResourceLimitExceeded(290),
--
oduAis(291),
opuAis(292),
otuAis(293),
otnProtMsmtch(294),
otnProtPrtclFail(295),
oduBdi(296),
otuBdi(297),
lossCharSync(298),
berHigh(299),
laserFail(300),
laserCurrentAbnormal(301),
oduLock(302),
autoShutdown(303),
localFault(304),
otuLof(305),
otuLom(306),
oduOci(307),
opuPlm(308),
oduSd(309),
otuSd(310),
opuSf(311),
optPowerHighRx(312),
optPowerLowRx(313),
optPowerHighTx(314),
optPowerLowTx(315),
oduTim(316),
otuTim(317),
sjConstTeThrshld(318),
sjInstTeThrshld(319),
timeRefSW(320),
aadcfailed(321),
ptpfreqfrun(322),
ptptimefrun(323),
ptpfreqhldovr(324),
ptptimehldovr(325),
ptptimenottraceable(326),
ptpfreqnottraceable(327),
synctimeout(328),
announcetimeout(329),
delayresptimeout(330),
multiplepeers(331),
wrongdomain(332),
nosatellitercv(333),
trafficipifoutage(334),
ptpportstatechanged(335),
physicalSelfLpbk(336),
cfCardRWFail(337),
maxexpectedslaves(338),
external-alarm(339),
maskcrossed(340),
oof(341),
signalfail(342),
timenottai(343),
perffuncfailure(344),
ptpportnotoper(345),
leapsecondexpected(346),
keyExchangeFail(347),
keyExchangeAuthPasswordMissing(348),
secureRamCleared(349),
noRouteResources(350),
tamperSwitchOpen(351),
bfdSessionDown(352),
destinationUnresolved(353),
sjmaxtethrshld(354),
trafficArpTableFull(355),
erpRingSegmentation(356), -- ERP Interconnect Ring Segmentation Alarm
gpsrcvrfail(357),
noActiveRoute(358),
vxlanDMac2DIPTableFull(359),
bwExceedLagMemberPortSpeed(360),
greRemoteUnreachable(361),
bweexceedsportspeed(362),
servicediscarded(363),
bmcaError(364),
freeze(365),
gpsFwUpgrade(366),
storageWearout(367),
pps-not-generated(368),
min-sat-1-thrshld-crossed(369),
min-sat-2-thrshld-crossed(370),
gatewayNotReachable(371),
pdop-mask-cross(372),
nc-initInProgress(373),
primaryNtpSvr-auth-failed(374),
backupNtpSvr-auth-failed(375),
clock-class-mismatch(376),
hpg-switch-force(377),
hpg-switch-lockout(378),
hpg-switch-to-3gpp-path(379),
hpg-switch-to-fixed-path(380),
bgp-linkdown(381),
ospf-neighbour-lost(382),
traffic-ndptable-full(383),
dup-link-local-address(384),
dup-unicast-address(385),
ztp-failed(386),
ztp-in-progress(387),
nc-runningConfigLocked(388),
pwrnoinput2(389),
keyExchangeStopped(390),
security-error(391),
pppoe-connection-failed(392),
no-ipv6route-resource(393),
sfp-firmware-revision-mismatch(394),
vrrp-new-master(395),
nontpkeys(396),
timesrcunavailable(397),
syncsrcunavailable(398),
local-cooling-fail(399),
jamming(400),
spoofing(401),
httpsSslCertExpiryPending(402),
httpsSslCertExpired(403),
srgb-collision(404),
sid-collision(405),
sr-index-out-of-range(406),
novalidsymkeybroadcast(407),
patch-panel-mismatch(408),
fan-fail(409),
invalidsymkeypeering(410),
auto-asymmetry-delay-fail(411),
no-certificate(412),
certificate-expired-soon(413),
bpvc(414),
crcf(415),
oofc(416),
psuinputfail1(417),
psuinputfail2(418),
time-clock-degraded-system-time(419),
spoofing-pps(420),
spoofing-loc(421),
invalid-syscfg(422)
}
CmConditionDescr ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A detailed text description of the condition or alarm being reported.
This string may contain any printable ASCII character."
SYNTAX OCTET STRING (SIZE (1..64))
CmAlarmEntityType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Identifies the type of alarm entity types."
SYNTAX INTEGER {
system(1),
hubshelf(2),
cpmrshelf(3),
eth-10-100-1000-ntucard(4),
eth-cpmr-card(5),
nemi-card(6),
scu-card(7),
fan(8),
powersupply(9),
accessport(10),
networkport(11),
--
oneru-ge101-shelf(12),
oneru-ge206-shelf(13),
eth-ge-101-card(14),
eth-ge-206-card(15),
cfmmep(16),
sync(17),
bitsinport(18),
bitsoutport(19),
cfmqosshaper(20),
dcnport(21),
--
oneru-ge201-shelf(22),
eth-ge-201-card(23),
oneru-ge201se-shelf(24),
eth-ge-201se-card(25),
--
oneru-ge206f-shelf(26),
eth-ge-206f-card(27),
--
lag(28),
--eg-x specific condition types
eth-1-10gcard(29),
redundancygroup(30),
protectiongroup(31),
stucard(32),
ethertrafficport(33),
eth-10-gecard(34),
swf-140gcard(35),
aggregationshelf(36),
sticard(37),
amicard(38),
--
usb3gmodem(39),
oneru-ge112-shelf(40),
eth-ge-112-card(41),
oneru-ge114-shelf(42),
eth-ge-114-card(43),
--
oneru-ge206v-shelf(44),
eth-ge-206v-card(45),
ge-4e-cc(46),
ge-4s-cc(47),
oneru-xg210-shelf(48),
eth-xg-210-card(49),
xg-1x-cc(50),
xg-1s-cc(51),
scu-t-card(52),
eth-10-100-1000-ntecard(53),
slot(54),
--
ocnstmport(55),
e1t1port(56),
stsvcpath(57),
vtvcpath(58),
vcg(59),
e3t3port(60),
vc4(61),
vc3(62),
vc12(63),
sts3c(64),
sts1(65),
vt15(66),
t3(67), -- facility
e3(68), -- facility
t1(69), -- facility
e1(70), -- facility
stm1-4-et(71),
eotdmtrafficport(72),
--
pwe3-ocnstm-card(73),
pwe3-e1t1-card(74),
satop(75),
telecom-slave(76),
sooc(77), -- slave only ordinary clock
eth-1-10ghcard(78),
eth-10-gehcard(79),
port-10mhz(80),
ppsport(81),
timeofdayport(82),
--
oneru-t1804-shelf(83),
eth-t1804-card(84),
oneru-t3204-shelf(85),
eth-t3204-card(86),
eotdmnetworkport(87),
oneru-syncprobe-shelf(88),
eth-ge-syncprobe-card(89),
sj-clockprobe(90),
sj-ptpclockprobe(91),
sj-ptpnetworkprobe(92),
gps-receiverport(93),
ampConfig(94),
ge-8s-cc(95),
oneru-ge114h-shelf(96),
eth-ge-114h-card(97),
oneru-ge114ph-shelf(98),
eth-ge-114ph-card(99),
psegroup(100),
pseport(101),
erpGroup(102),
eth-fe-36e-card(103),
mpflow(104),
oneru-ge114sh-shelf(105),
eth-ge-114sh-card(106),
oneru-ge114s-shelf(107),
eth-ge-114s-card(108),
timeclock(109),
satResponderSession(110),
stu-h-card(111),
sti-h-card(112),
ge-8e-cc(113),
oneru-otn210-shelf(114),
eth-otn-210-card(115),
ptpclock(116),
ptpport(117),
oneru-osa5411-shelf(118),
eth-osa5411-card(119),
oneru-ge112pro-shelf(120),
eth-ge-112pro-card(121),
oneru-ge112pro-m-shelf(122),
eth-ge-112pro-m-card(123),
oneru-ge114pro-shelf(124),
eth-ge-114pro-card(125),
oneru-ge114pro-c-shelf(126),
eth-ge-114pro-c-card(127),
oneru-ge114pro-sh-shelf(128),
eth-ge-114pro-sh-card(129),
oneru-ge114pro-csh-shelf(130),
eth-ge-114pro-csh-card(131),
connectGuardFlow(132),
trafficIpIF(133),
vrf(134),
oneru-ge114pro-he-shelf(135),
eth-ge-114pro-he-card(136),
oneru-ge112pro-h-shelf(137),
eth-ge-112pro-h-card(138),
dhcpRelayAgent(139),
oneru-xg210c-shelf(140),
eth-xg-210c-card(141),
ge-8sc-cc(142),
oneru-osa5420-shelf(143),
eth-osa5420-card(144),
oneru-osa5421-shelf(145),
eth-osa5421-card(146),
mci(147),
bits-x16(148),
bfdSession(149),
eomplsPw(150),
oneru-ge114g-shelf(151),
eth-ge-114g-card(152),
wifidongleport(153),
oneru-ge114proVm-h-shelf(154),
eth-ge-114proVm-h-card(155),
oneru-ge114proVm-ch-shelf(156),
eth-ge-114proVm-ch-card(157),
oneru-ge114proVm-csh-shelf(158),
eth-ge-114proVm-csh-card(159),
server-card(160),
oneru-xg116pro-shelf(161),
eth-xg-116pro-card(162),
oneru-xg120pro-shelf(163),
eth-xg-120pro-card(164),
pps-x16(165),
clk-x16(166),
todandpps-x16(167),
vxlanSegment(168),
vtep(169),
ge101pro-shelf(170),
eth-ge-101pro-card(171),
greTunnel(172),
go102pro-s-shelf(173),
go102pro-sp-shelf(174),
onru-cx101pro-30a-shelf(175),
onru-cx102pro-30a-shelf(176),
eth-go102pro-s-card(177),
eth-go102pro-sp-card(178),
eth-cx101pro-30a-card(179),
eth-cx102pro-30a-card(180),
osa-ge-4s(181),
elpgroup(182),
oneru-ge112proVm-shelf(183),
eth-ge-112proVm-card(184),
--oneru-osa5430-shelf(185),
--eth-csm-card(186),
--threeru-osa5440-shelf(187),
--aux-osa(188),
--bits-x16-enhanced(189),
--osa-ge-4s-protected(190),
hybrid-path-group(191),
ge102pro-h-shelf(192),
eth-ge-102pro-h-card(193),
ge102pro-efmh-shelf(194),
eth-ge-102pro-efmh-card(195),
traffic-bgprouter-peer(196),
traffic-ipv6-interface(197),
oneru-xg116pro-h-shelf(198),
eth-xg-116pro-h-card(199),
go102pro-sm-shelf(200),
eth-go102pro-sm-card(201),
vrrp-router(202),
ru1-osa5430-shelf(203),
eth-csm-osa-card(204),
ru3-osa5440-shelf(205),
eth-osa5440-card(206),
aux-osa(207),
bits-x16-enhanced(208),
osa-ge-4s-protected(209),
syncprotectiongroup(210),
timeclockprotectiongroup(211),
mciprotectiongroup(212),
oneru-xg118pro-sh-shelf(213),
eth-xg-118pro-sh-card(214),
ntp-clock(215),
oneru-xg118proac-sh-shelf(216),
eth-xg-118proac-sh-card(217),
oneru-ge114proVm-sh-shelf(218),
eth-ge-114proVm-sh-card(219),
oneru-ge104-shelf(220),
eth-ge-104-card(221),
segment-routing(222),
oneru-xg120pro-sh-shelf(223),
eth-xg-120pro-sh-card(224),
irig-card(225),
irig-port-group(226),
nci(227),
ru1-osa5422-shelf(228),
ru1-softsync-shelf(229),
eth-osa5422-card(230),
eth-softsync-card(231),
mb-gnss-card(232),
composite-clock-card(233),
l3ptpport(234)
}
CmCondEffectType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Identifies the type of condition effect types."
SYNTAX INTEGER {
sc(1),
tc(2),
cl(3)
}
TestAlarmAction ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Whether to raise/clear a test alarm."
SYNTAX INTEGER {
not-applicable(0),
raise(1),
clear(2)
}
EnvAlarmInputMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Identifies the environmental alarm input modes."
SYNTAX INTEGER {
disabled(1), --env alarm disabled
alarmopen(2), --env alarm raised when contact opened
alarmclosed(3) --env alarm raised when contact closed
}
--
-- Scalar definitions.
--
cmAlarmScalars OBJECT IDENTIFIER ::= {alarmObjects 1}
cmAlmLastChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A snapshot of the value of sysUpTime when the alarm situation
last changed on the node (ie. there was a raise or clear).
This value is reset to zero when the agent initializes."
::= { cmAlarmScalars 1 }
cmAlmIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value is assigned globally and sequentially to each new
trap that is sent from the device.
When this value reaches a maximum of 65535, it is wrapped to
the value 1."
::= { cmAlarmScalars 2 }
cmAlmTestAlarmEntity OBJECT-TYPE
SYNTAX VariablePointer
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to specify the entity for which
the test alarm is raised/cleared. This entity can be
OID of a card(unit) or a port (Ethernet Access or Ethernet
Network).
The test alarm is the trap cmNetworkElementAlmTrap with
condition type as testalarm.
If not specified, the value of this object is 0.0."
::= { cmAlarmScalars 3 }
cmAlmTestAlarmAction OBJECT-TYPE
SYNTAX TestAlarmAction
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object can be used to raise/clear the testalarm
on the entity specified by cmAlmTestAlarmEntity."
::= { cmAlarmScalars 4 }
--
-- Table definitions.
--
--
-- System Alarms table.
--
cmSysAlmTable OBJECT-TYPE
SYNTAX SEQUENCE OF CmSysAlmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of entries corresponding to the standing conditions
that exist at the system level.
Entries cannot be created in this table by management
application action."
::= { alarmObjects 2 }
cmSysAlmEntry OBJECT-TYPE
SYNTAX CmSysAlmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing information applicable to a particular
condition."
INDEX { cmAlmIndex }
::= { cmSysAlmTable 1 }
CmSysAlmEntry ::= SEQUENCE {
cmSysAlmNotifCode TrapAlarmSeverity,
cmSysAlmType CmConditionType,
cmSysAlmSrvEff CmServiceEffect,
cmSysAlmTime DateAndTime,
cmSysAlmLocation CmLocation,
cmSysAlmDirection CmDirection,
cmSysAlmDescr CmConditionDescr,
cmSysAlmObject VariablePointer,
cmSysAlmObjectName DisplayString,
cmSysAlmAdditionalInfoObject VariablePointer,
cmSysAlmAdditionalInfoName DisplayString
}
cmSysAlmNotifCode OBJECT-TYPE
SYNTAX TrapAlarmSeverity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the severity of the condition."
::= { cmSysAlmEntry 1 }
cmSysAlmType OBJECT-TYPE
SYNTAX CmConditionType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the type of the condition."
::= { cmSysAlmEntry 2 }
cmSysAlmSrvEff OBJECT-TYPE
SYNTAX CmServiceEffect
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies whether the condition is service affecting
or not."
::= { cmSysAlmEntry 3 }
cmSysAlmTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the system time when the condition occurred."
::= { cmSysAlmEntry 4 }
cmSysAlmLocation OBJECT-TYPE
SYNTAX CmLocation
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the location of the condition. The value
none(0) should be used if location is not applicable."
::= { cmSysAlmEntry 5 }
cmSysAlmDirection OBJECT-TYPE
SYNTAX CmDirection
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the direction of the condition. The value
none(0) should be used if direction is not applicable."
::= { cmSysAlmEntry 6 }
cmSysAlmDescr OBJECT-TYPE
SYNTAX CmConditionDescr
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains a text description of the condition."
::= { cmSysAlmEntry 7 }
cmSysAlmObject OBJECT-TYPE
SYNTAX VariablePointer
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OID of the actual object that raised the alarm."
::= { cmSysAlmEntry 8 }
cmSysAlmObjectName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Symbolic name of the managed object to which the condition
pertains."
::= { cmSysAlmEntry 9 }
cmSysAlmAdditionalInfoObject OBJECT-TYPE
SYNTAX VariablePointer
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides OID of associated entity that caused the alarm.
If there is no associated entity, this value is 0.0."
::= { cmSysAlmEntry 10 }
cmSysAlmAdditionalInfoName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides name of the associated entity to which the
alarm pertains. If there is no such entity, this value is empty."
::= { cmSysAlmEntry 11 }
--
-- System Conditions table.
--
cmSysCondTable OBJECT-TYPE
SYNTAX SEQUENCE OF CmSysCondEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of entries corresponding to the standing conditions
that exist at the system level.
Entries cannot be created in this table by management
application action."
::= { alarmObjects 3 }
cmSysCondEntry OBJECT-TYPE
SYNTAX CmSysCondEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing information applicable to a particular
condition."
INDEX { cmSysCondIndex }
::= { cmSysCondTable 1 }
CmSysCondEntry ::= SEQUENCE {
cmSysCondIndex Integer32,
cmSysCondNotifCode TrapAlarmSeverity,
cmSysCondType CmConditionType,
cmSysCondSrvEff CmServiceEffect,
cmSysCondTime DateAndTime,
cmSysCondLocation CmLocation,
cmSysCondDirection CmDirection,
cmSysCondDescr CmConditionDescr,
cmSysCondEffType CmCondEffectType,
cmSysCondObject VariablePointer,
cmSysCondObjectName DisplayString,
cmSysCondAdditionalInfoObject VariablePointer,
cmSysCondAdditionalInfoName DisplayString
}
cmSysCondIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer index value used to uniquely identify
a standing condition at the system level."
::= { cmSysCondEntry 1 }
cmSysCondNotifCode OBJECT-TYPE
SYNTAX TrapAlarmSeverity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the severity of the condition."
::= { cmSysCondEntry 2 }
cmSysCondType OBJECT-TYPE
SYNTAX CmConditionType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the type of the condition."
::= { cmSysCondEntry 3 }
cmSysCondSrvEff OBJECT-TYPE
SYNTAX CmServiceEffect
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies whether the condition is service affecting
or not."
::= { cmSysCondEntry 4 }
cmSysCondTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the system time when the condition occurred."
::= { cmSysCondEntry 5 }
cmSysCondLocation OBJECT-TYPE
SYNTAX CmLocation
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the location of the condition. The value
none(0) should be used if location is not applicable."
::= { cmSysCondEntry 6 }
cmSysCondDirection OBJECT-TYPE
SYNTAX CmDirection
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the direction of the condition. The value
none(0) should be used if direction is not applicable."
::= { cmSysCondEntry 7 }
cmSysCondDescr OBJECT-TYPE
SYNTAX CmConditionDescr
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains a text description of the condition."
::= { cmSysCondEntry 8 }
cmSysCondEffType OBJECT-TYPE
SYNTAX CmCondEffectType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the condition effect type."
::= { cmSysCondEntry 9 }
cmSysCondObject OBJECT-TYPE
SYNTAX VariablePointer
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OID of the actual object that raised the condition."
::= { cmSysCondEntry 10 }
cmSysCondObjectName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Symbolic name of the managed object to which the condition
pertains."
::= { cmSysCondEntry 11 }
cmSysCondAdditionalInfoObject OBJECT-TYPE
SYNTAX VariablePointer
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides OID of associated entity that caused
the condition. If there is no associated entity, this value is 0.0."
::= { cmSysCondEntry 12 }
cmSysCondAdditionalInfoName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..256))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides name of the associated entity to which the
condition pertains. If there is no such entity, this value is empty."
::= { cmSysCondEntry 13 }
--
-- Network Element Alarm table.
--
cmNetworkElementAlmTable OBJECT-TYPE
SYNTAX SEQUENCE OF CmNetworkElementAlmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of entries corresponding to the standing conditions
that exist at the system level.
Entries cannot be created in this table by management
application action."
::= { alarmObjects 4 }
cmNetworkElementAlmEntry OBJECT-TYPE
SYNTAX CmNetworkElementAlmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing information applicable to a particular
condition."
INDEX { neIndex, cmAlmIndex }
::= { cmNetworkElementAlmTable 1 }
CmNetworkElementAlmEntry ::= SEQUENCE {
cmNetworkElementAlmNotifCode TrapAlarmSeverity,
cmNetworkElementAlmType CmConditionType,
cmNetworkElementAlmSrvEff CmServiceEffect,
cmNetworkElementAlmTime DateAndTime,
cmNetworkElementAlmLocation CmLocation,
cmNetworkElementAlmDirection CmDirection,
cmNetworkElementAlmDescr CmConditionDescr,
cmNetworkElementAlmObject VariablePointer,
cmNetworkElementAlmObjectName DisplayString,
cmNetworkElementAlmAdditionalInfoObject VariablePointer,
cmNetworkElementAlmAdditionalInfoName DisplayString
}
cmNetworkElementAlmNotifCode OBJECT-TYPE
SYNTAX TrapAlarmSeverity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the severity of the condition."
::= { cmNetworkElementAlmEntry 1 }
cmNetworkElementAlmType OBJECT-TYPE
SYNTAX CmConditionType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the type of the condition."
::= { cmNetworkElementAlmEntry 2 }
cmNetworkElementAlmSrvEff OBJECT-TYPE
SYNTAX CmServiceEffect
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies whether the condition is service affecting
or not."
::= { cmNetworkElementAlmEntry 3 }
cmNetworkElementAlmTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the system time when the condition occurred."
::= { cmNetworkElementAlmEntry 4 }
cmNetworkElementAlmLocation OBJECT-TYPE
SYNTAX CmLocation
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the location of the condition. The value
none(0) should be used if location is not applicable."
::= { cmNetworkElementAlmEntry 5 }
cmNetworkElementAlmDirection OBJECT-TYPE
SYNTAX CmDirection
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the direction of the condition. The value
none(0) should be used if direction is not applicable."
::= { cmNetworkElementAlmEntry 6 }
cmNetworkElementAlmDescr OBJECT-TYPE
SYNTAX CmConditionDescr
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains a text description of the condition."
::= { cmNetworkElementAlmEntry 7 }
cmNetworkElementAlmObject OBJECT-TYPE
SYNTAX VariablePointer
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OID of the actual object that raised the alarm."
::= { cmNetworkElementAlmEntry 8 }
cmNetworkElementAlmObjectName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Symbolic name of the managed object to which the condition
pertains.
This object can be any interface on this device or the system
object. If this is an interface, this name will be same
as ifName (IF-MIB)."
::= { cmNetworkElementAlmEntry 9 }
cmNetworkElementAlmAdditionalInfoObject OBJECT-TYPE
SYNTAX VariablePointer
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides OID of associated entity that caused the alarm.
If there is no associated entity, this value is 0.0."
::= { cmNetworkElementAlmEntry 10 }
cmNetworkElementAlmAdditionalInfoName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides name of the associated entity to which the
alarm pertains. If there is no such entity, this value is empty."
::= { cmNetworkElementAlmEntry 11 }
--
-- Network Element Conditions table.
--
cmNetworkElementCondTable OBJECT-TYPE
SYNTAX SEQUENCE OF CmNetworkElementCondEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of entries corresponding to the standing conditions
that exist at the system level.
Entries cannot be created in this table by management
application action."
::= { alarmObjects 5 }
cmNetworkElementCondEntry OBJECT-TYPE
SYNTAX CmNetworkElementCondEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing information applicable to a particular
condition."
INDEX { neIndex, cmNetworkElementCondIndex }
::= { cmNetworkElementCondTable 1 }
CmNetworkElementCondEntry ::= SEQUENCE {
cmNetworkElementCondIndex Integer32,
cmNetworkElementCondNotifCode TrapAlarmSeverity,
cmNetworkElementCondType CmConditionType,
cmNetworkElementCondSrvEff CmServiceEffect,
cmNetworkElementCondTime DateAndTime,
cmNetworkElementCondLocation CmLocation,
cmNetworkElementCondDirection CmDirection,
cmNetworkElementCondDescr CmConditionDescr,
cmNetworkElementCondObject VariablePointer,
cmNetworkElementCondObjectName DisplayString,
cmNetworkElementCondEffType CmCondEffectType,
cmNetworkElementCondAdditionalInfoObject VariablePointer,
cmNetworkElementCondAdditionalInfoName DisplayString
}
cmNetworkElementCondIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer index value used to uniquely identify
a standing condition at a Network Element level."
::= { cmNetworkElementCondEntry 1 }
cmNetworkElementCondNotifCode OBJECT-TYPE
SYNTAX TrapAlarmSeverity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the severity of the condition."
::= { cmNetworkElementCondEntry 2 }
cmNetworkElementCondType OBJECT-TYPE
SYNTAX CmConditionType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the type of the condition."
::= { cmNetworkElementCondEntry 3 }
cmNetworkElementCondSrvEff OBJECT-TYPE
SYNTAX CmServiceEffect
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies whether the condition is service affecting
or not."
::= { cmNetworkElementCondEntry 4 }
cmNetworkElementCondTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the system time when the condition occurred."
::= { cmNetworkElementCondEntry 5 }
cmNetworkElementCondLocation OBJECT-TYPE
SYNTAX CmLocation
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the location of the condition. The value
none(0) should be used if location is not applicable."
::= { cmNetworkElementCondEntry 6 }
cmNetworkElementCondDirection OBJECT-TYPE
SYNTAX CmDirection
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the direction of the condition. The value
none(0) should be used if direction is not applicable."
::= { cmNetworkElementCondEntry 7 }
cmNetworkElementCondDescr OBJECT-TYPE
SYNTAX CmConditionDescr
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains a text description of the condition."
::= { cmNetworkElementCondEntry 8 }
cmNetworkElementCondObject OBJECT-TYPE
SYNTAX VariablePointer
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Symbolic name of the managed object to which the condition
pertains.
This object can be any interface on this device or the system
object. If this is an interface, this name will be same
as ifName (IF-MIB)."
::= { cmNetworkElementCondEntry 9 }
cmNetworkElementCondObjectName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Symbolic name of the managed object to which the condition
pertains.
This object can be any interface on this device or the system
object. If this is an interface, this name will be same
as ifName (IF-MIB)."
::= { cmNetworkElementCondEntry 10 }
cmNetworkElementCondEffType OBJECT-TYPE
SYNTAX CmCondEffectType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the condition effect type."
::= { cmNetworkElementCondEntry 11 }
cmNetworkElementCondAdditionalInfoObject OBJECT-TYPE
SYNTAX VariablePointer
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides OID of associated entity that caused the alarm.
If there is no associated entity, this value is 0.0."
::= { cmNetworkElementCondEntry 12 }
cmNetworkElementCondAdditionalInfoName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides name of the associated entity to which the
alarm pertains. If there is no such entity, this value is empty."
::= { cmNetworkElementCondEntry 13 }
--
-- Alarm Severity Assignment Profile.
--
cmAlarmSeverityAssignmentTable OBJECT-TYPE
SYNTAX SEQUENCE OF CmAlarmSeverityAssignmentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of configurable alarm severity assignment entries for
Enterprise MIB Alarm Conditions."
::= { alarmObjects 6 }
cmAlarmSeverityAssignmentEntry OBJECT-TYPE
SYNTAX CmAlarmSeverityAssignmentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of parameters that set up the alarm severity assignment profiles."
INDEX { cmAlarmSeverityAssignmentEntityType,
cmAlarmSeverityAssignmentCondType,
cmAlarmSeverityAssignmentSrvEff }
::= { cmAlarmSeverityAssignmentTable 1 }
CmAlarmSeverityAssignmentEntry ::= SEQUENCE {
cmAlarmSeverityAssignmentEntityType CmAlarmEntityType,
cmAlarmSeverityAssignmentCondType CmConditionType,
cmAlarmSeverityAssignmentSrvEff CmServiceEffect,
cmAlarmSeverityAssignmentLocation CmLocation,
cmAlarmSeverityAssignmentNotifCode TrapAlarmSeverity,
cmAlarmSeverityAssignmentDirection CmDirection
}
cmAlarmSeverityAssignmentEntityType OBJECT-TYPE
SYNTAX CmAlarmEntityType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alarm Severity Assignment Entity Type."
::= { cmAlarmSeverityAssignmentEntry 1}
cmAlarmSeverityAssignmentCondType OBJECT-TYPE
SYNTAX CmConditionType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the type of the condition."
::= { cmAlarmSeverityAssignmentEntry 2 }
cmAlarmSeverityAssignmentSrvEff OBJECT-TYPE
SYNTAX CmServiceEffect
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies whether the condition is service affecting
or not."
::= { cmAlarmSeverityAssignmentEntry 3 }
cmAlarmSeverityAssignmentLocation OBJECT-TYPE
SYNTAX CmLocation
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the location of the condition. The value
none(0) is used if location is not applicable."
::= { cmAlarmSeverityAssignmentEntry 4 }
cmAlarmSeverityAssignmentNotifCode OBJECT-TYPE
SYNTAX TrapAlarmSeverity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows configuration of the severity of the condition."
::= { cmAlarmSeverityAssignmentEntry 5 }
cmAlarmSeverityAssignmentDirection OBJECT-TYPE
SYNTAX CmDirection
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object identifies the direction of the condition. The value
none(0) should be used if direction is not applicable."
::= { cmAlarmSeverityAssignmentEntry 6 }
--
-- Environmental Alarm Input Table
--
f3EnvAlarmInputTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3EnvAlarmInputEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of configurable Environmental Alarm Inputs."
::= { alarmObjects 7 }
f3EnvAlarmInputEntry OBJECT-TYPE
SYNTAX F3EnvAlarmInputEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of parameters to manage the the environmental alarm inputs."
INDEX { neIndex, shelfIndex, f3EnvAlarmInputIndex }
::= { f3EnvAlarmInputTable 1 }
F3EnvAlarmInputEntry ::= SEQUENCE {
f3EnvAlarmInputIndex Integer32,
f3EnvAlarmInputDescr DisplayString,
f3EnvAlarmInputCondType CmConditionType,
f3EnvAlarmInputNotifCode TrapAlarmSeverity,
f3EnvAlarmInputMode EnvAlarmInputMode,
f3EnvAlarmInputAlmHoldOffEnabled TruthValue
}
f3EnvAlarmInputIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Unique index for each environmental alarm input."
::= { f3EnvAlarmInputEntry 1}
f3EnvAlarmInputDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows SNMP management entities to provide description to the
environmental alarm inputs."
::= { f3EnvAlarmInputEntry 2 }
f3EnvAlarmInputCondType OBJECT-TYPE
SYNTAX CmConditionType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows SNMP management entities to provide the environmental alarm
condition associated with the environmental alarm input."
::= { f3EnvAlarmInputEntry 3 }
f3EnvAlarmInputNotifCode OBJECT-TYPE
SYNTAX TrapAlarmSeverity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows SNMP management entities to provide the notification code
for the environmental alarm input."
::= { f3EnvAlarmInputEntry 4 }
f3EnvAlarmInputMode OBJECT-TYPE
SYNTAX EnvAlarmInputMode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows specification of the environmental alarm input mode.
When 'disabled', environmental alarms are not raised. Value of 'alarmopen'
allows alarm to be raised when environmental alarm dry contacts are opened.
Value of 'alarmclosed' allows alarm to be raised when environmental alarm dry
contacts are closed."
::= { f3EnvAlarmInputEntry 5 }
f3EnvAlarmInputAlmHoldOffEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows enabling/disabling of alarm hold off for this environmental
alarm. When 'disabled', the standard alarm hold off (2.5seconds) does not hold, i.e.
alarms are raised immediately when conditions happen."
::= { f3EnvAlarmInputEntry 6 }
--
-- Notifications, i.e., traps.
--
--
-- System Alarm raise/clear trap.
--
cmSysAlmTrap NOTIFICATION-TYPE
OBJECTS { cmAlmIndex,
cmSysAlmNotifCode,
cmSysAlmType,
cmSysAlmSrvEff,
cmSysAlmTime,
cmSysAlmLocation,
cmSysAlmDirection,
cmSysAlmDescr,
cmSysAlmObject,
cmSysAlmObjectName,
cmSysAlmAdditionalInfoObject,
cmSysAlmAdditionalInfoName
}
STATUS current
DESCRIPTION
"This trap is sent each time an alarm condition is raised and
inserted into to the cmSysAlmTable.
It is also sent each time an
alarm condition is cleared and removed from the
cmSysAlmTable."
::= { alarmNotifications 1 }
cmNetworkElementAlmTrap NOTIFICATION-TYPE
OBJECTS { cmAlmIndex,
cmNetworkElementAlmNotifCode,
cmNetworkElementAlmType,
cmNetworkElementAlmSrvEff,
cmNetworkElementAlmTime,
cmNetworkElementAlmLocation,
cmNetworkElementAlmDirection,
cmNetworkElementAlmDescr,
cmNetworkElementAlmObject,
cmNetworkElementAlmObjectName,
cmNetworkElementAlmAdditionalInfoObject,
cmNetworkElementAlmAdditionalInfoName
}
STATUS current
DESCRIPTION
"This trap is sent each time an alarm condition is raised and
inserted into to the cmNetworkElementAlmTable.
It is also sent each time an
alarm condition is cleared and removed from the
cmNetworkElementAlmTable."
::= { alarmNotifications 2 }
cmSysEvent NOTIFICATION-TYPE
OBJECTS { cmAlmIndex,
cmSysCondType,
cmSysCondTime,
cmSysCondLocation,
cmSysCondDirection,
cmSysCondDescr,
cmSysCondEffType,
cmSysCondObject,
cmSysCondObjectName,
cmSysCondAdditionalInfoObject,
cmSysCondAdditionalInfoName
}
STATUS current
DESCRIPTION
"This trap is sent each time an event condition is raised and
inserted into to the cmSysCondTable.
It is also sent each time an
event condition is cleared and removed from the
cmSysCondTable. Standing conditions/transient conditions
are reported using this notification."
::= { alarmNotifications 3 }
cmNetworkElementEvent NOTIFICATION-TYPE
OBJECTS { cmAlmIndex,
cmNetworkElementCondType,
cmNetworkElementCondTime,
cmNetworkElementCondLocation,
cmNetworkElementCondDirection,
cmNetworkElementCondDescr,
cmNetworkElementCondObject,
cmNetworkElementCondObjectName,
cmNetworkElementCondEffType,
cmNetworkElementCondAdditionalInfoObject,
cmNetworkElementCondAdditionalInfoName
}
STATUS current
DESCRIPTION
"This trap is sent each time an event condition is raised and
inserted into to the cmNetworkElementCondTable.
It is also sent each time an
event condition is cleared and removed from the
cmNetworkElementCondTable. Standing conditions/transient conditions
are reported using this notification."
::= { alarmNotifications 4 }
--
-- Conformance
--
cmAlmCompliances OBJECT IDENTIFIER ::= {alarmConformance 1}
cmAlmGroups OBJECT IDENTIFIER ::= {alarmConformance 2}
cmAlmCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Describes the requirements for conformance to the Alarm
Condition Services."
MODULE -- this module
MANDATORY-GROUPS {
cmAlmObjectGroup, cmAlmNotifGroup, f3EnvAlarmInputGroup
}
::= { cmAlmCompliances 1 }
cmAlmObjectGroup OBJECT-GROUP
OBJECTS {
cmAlmLastChange, cmAlmIndex, cmAlmTestAlarmEntity,
cmAlmTestAlarmAction,
cmSysAlmNotifCode, cmSysAlmType, cmSysAlmSrvEff,
cmSysAlmTime, cmSysAlmLocation, cmSysAlmDirection,
cmSysAlmDescr, cmSysAlmObject, cmSysAlmObjectName,
cmSysAlmAdditionalInfoObject, cmSysAlmAdditionalInfoName,
cmSysCondIndex, cmSysCondNotifCode, cmSysCondType,
cmSysCondSrvEff, cmSysCondTime, cmSysCondLocation,
cmSysCondDirection, cmSysCondDescr, cmSysCondEffType,
cmSysCondObject, cmSysCondObjectName,
cmSysCondAdditionalInfoObject, cmSysCondAdditionalInfoName,
cmNetworkElementAlmNotifCode, cmNetworkElementAlmType,
cmNetworkElementAlmSrvEff, cmNetworkElementAlmTime,
cmNetworkElementAlmLocation, cmNetworkElementAlmDirection,
cmNetworkElementAlmDescr, cmNetworkElementAlmObject,
cmNetworkElementAlmObjectName,
cmNetworkElementAlmAdditionalInfoObject,
cmNetworkElementAlmAdditionalInfoName,
cmNetworkElementCondIndex, cmNetworkElementCondNotifCode,
cmNetworkElementCondType, cmNetworkElementCondSrvEff,
cmNetworkElementCondTime, cmNetworkElementCondLocation,
cmNetworkElementCondDirection, cmNetworkElementCondDescr,
cmNetworkElementCondObject, cmNetworkElementCondObjectName,
cmNetworkElementCondEffType,
cmNetworkElementCondAdditionalInfoObject,
cmNetworkElementCondAdditionalInfoName,
cmAlarmSeverityAssignmentEntityType,
cmAlarmSeverityAssignmentCondType,
cmAlarmSeverityAssignmentSrvEff,
cmAlarmSeverityAssignmentLocation,
cmAlarmSeverityAssignmentNotifCode,
cmAlarmSeverityAssignmentDirection
}
STATUS current
DESCRIPTION
"A collection of objects used to manage the Alarm
conditions/threshold Services."
::= { cmAlmGroups 1 }
cmAlmNotifGroup NOTIFICATION-GROUP
NOTIFICATIONS {
cmSysAlmTrap, cmNetworkElementAlmTrap, cmSysEvent, cmNetworkElementEvent
}
STATUS current
DESCRIPTION
"A collection of notifications related to alarm
conditions/threshold Services."
::= { cmAlmGroups 2 }
f3EnvAlarmInputGroup OBJECT-GROUP
OBJECTS {
f3EnvAlarmInputIndex, f3EnvAlarmInputDescr, f3EnvAlarmInputCondType,
f3EnvAlarmInputNotifCode, f3EnvAlarmInputMode, f3EnvAlarmInputAlmHoldOffEnabled
}
STATUS current
DESCRIPTION
"A collection of objects related to environmental alarm
inputs."
::= { cmAlmGroups 3 }
END
|