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
|
--
-- sle-am-mib.mib
-- MIB generated by MG-SOFT Visual MIB Builder Version 6.0 Build 88
-- Friday, February 12, 2016 at 15:20:46
--
SLE-AM-MIB DEFINITIONS ::= BEGIN
IMPORTS
sleMgmt
FROM DASAN-SMI
SleControlStatusType, SleControlRequestResultType
FROM SLE-TC-MIB
zeroDotZero, TimeTicks, Integer32, Unsigned32, Gauge32,
OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
TEXTUAL-CONVENTION
FROM SNMPv2-TC;
sleAlarmMgr MODULE-IDENTITY
LAST-UPDATED "201402060000Z" -- February 06, 2014 at 00:00 GMT
ORGANIZATION
" "
CONTACT-INFO
" "
DESCRIPTION
"This MIB contains all needed informations about
Alarm Manager."
REVISION "201402060000Z" -- February 06, 2014 at 00:00 GMT
DESCRIPTION
"This MIB module defines the managed objects that support the
monitoring of alarms generated by physical entities contained
by the system, including chassis, slots, modules, ports, power
supplies and fans."
::= { sleMgmt 15 }
--
-- Textual conventions
--
AMAlarmClassId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"alarm class id
1~65535"
SYNTAX INTEGER (1..65535)
AMAlarmId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Current Alarm ID
1~65535"
SYNTAX INTEGER (1..65535)
AMAlarmSeverity ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Severity of Alarm"
SYNTAX INTEGER
{
critical(1),
major(2),
minor(3),
warning(4),
intermediate(5),
default(6)
}
AMTrapState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
" This status explains whether TRAP status is enabled or disabled.
Enable(1) : Alarm Trap State is Enabled. Hence TRAPs will be sent for this.
Disable(0) : Alarm Trap State is Disabled. So Alarms won't be notified to user."
SYNTAX INTEGER
{
enable(1),
disable(0)
}
AMAlarmGuardTime ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"alarm guard time
1~30 (second)
0, no alarm guard time apply"
SYNTAX INTEGER (0..30)
AMAlarmSrc ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"
|type|length|value|type|length|value|....
type (1-byte) : alarm location type
length(1-byte) : alarm location value length
value (length-bytes) : alarm location value"
SYNTAX OCTET STRING (SIZE (68))
AlarmStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
" This is the status of the alarm.
Cleared(0) : Alarm status is cleared
Raised(1) : Alarm status is raised.
Masked(2) : alarm is suppressed.
Disable(3) : Alarm disable
Forced-clear(4) : Init alarm
Event(5) : Event report
Unmasked(6) :Alarm suppression release
"
SYNTAX INTEGER
{
cleared(0),
raised(1),
masked(2),
disabled(3),
forcedClear(4),
event(5),
unmasked(6)
}
AMAlarmReason ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Alarm reason Description string
(include location infomatiln)"
SYNTAX OCTET STRING (SIZE (0..256))
AMDateTime ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"TOD integer value"
SYNTAX Unsigned32
AMAlarmAco ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"ACO control configuration
acoOff(1) : buzzer operation enable.
acoOn(2) : buzzer operation disable.
acoOpr(3) : current buzzer cut."
SYNTAX INTEGER
{
acoOff(1),
acoOn(2),
acoOpr(3)
}
AMAlarmLed ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"LED control configuration
ledOff(1) : LED operation disable.
ledOn(2) : LED operation enable.
ledOpr(3) : current LED off."
SYNTAX INTEGER
{
setLedOff(1),
setLedOn(2),
oprLed(3)
}
--
-- Node definitions
--
sleAMAlarmTrapNeId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (6))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"use for NE idendification when alarm(or event) trap
system MAC address"
::= { sleAlarmMgr 1 }
sleAMConfigBase OBJECT IDENTIFIER ::= { sleAlarmMgr 2 }
sleAMConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF SleAMConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" This table is the class Master Alarm table.
It gets populated when system init is done.
And it contains all the class alarms supported for the device"
::= { sleAMConfigBase 1 }
sleAMConfigEntry OBJECT-TYPE
SYNTAX SleAMConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
INDEX { sleAMConfigAlarmClassId, sleAMConfigAlarmId }
::= { sleAMConfigTable 1 }
SleAMConfigEntry ::=
SEQUENCE {
sleAMConfigAlarmClassId
AMAlarmClassId,
sleAMConfigAlarmId
AMAlarmId,
sleAMConfigAlarmName
OCTET STRING,
sleAMConfigAlarmSeverity
AMAlarmSeverity,
sleAMConfigAlarmEnableState
AMTrapState,
sleAMConfigAlarmRaiseGuardTime
AMAlarmGuardTime,
sleAMConfigAlarmClearGuardTime
AMAlarmGuardTime,
sleAMConfigAlarmLed
INTEGER,
sleAMConfigSpecificId
Integer32
}
sleAMConfigAlarmClassId OBJECT-TYPE
SYNTAX AMAlarmClassId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Class ID starts from 1 to 65535 for the system.
And these IDs are defined by alarm-client"
::= { sleAMConfigEntry 1 }
sleAMConfigAlarmId OBJECT-TYPE
SYNTAX AMAlarmId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alarm ID
Alarm ID starts from 1 to 65535 for the system.
And these IDs are defined by alarm-client"
::= { sleAMConfigEntry 2 }
sleAMConfigAlarmName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Alarm Name string"
::= { sleAMConfigEntry 3 }
sleAMConfigAlarmSeverity OBJECT-TYPE
SYNTAX AMAlarmSeverity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alarm severity: The default severity is pre-defined by each Alarm manager clients
critical(1),
major(2),
minor(3),
warning(4),
intermediate(5),"
::= { sleAMConfigEntry 4 }
sleAMConfigAlarmEnableState OBJECT-TYPE
SYNTAX AMTrapState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alarm Trap State. Based on the trap state,
the alarm will be notified to NMS. If the TRAP STATE is enabled
then the alarm will be notified else wont be notified.
enable (1)
disabe (0) "
::= { sleAMConfigEntry 5 }
sleAMConfigAlarmRaiseGuardTime OBJECT-TYPE
SYNTAX AMAlarmGuardTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alarm raise Soaking time.
When any alarm is raised, this attribute
specifies how much time the alarm should be soaked before notifying
to Alarm manager
range:1 ~ 30, (if '0', no soaking time)"
::= { sleAMConfigEntry 6 }
sleAMConfigAlarmClearGuardTime OBJECT-TYPE
SYNTAX AMAlarmGuardTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alarm clear Soaking time. When any alarm is cleared, this attribute
specifies how much time the alarm should be soaked before notifying
to Alarm manager
range:1 ~ 30, (if '0', no soaking time)"
::= { sleAMConfigEntry 7 }
sleAMConfigAlarmLed OBJECT-TYPE
SYNTAX INTEGER
{
off(0),
on(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Alarm led configuration.
Determinde led operate or not, when alarms occur.
off(0): led not operate
on(1) : led operate"
::= { sleAMConfigEntry 8 }
sleAMConfigSpecificId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Alarm Configuration specific ID(4bytes)
classId and alarmID are combinded with a specificID
* 1st,2nd Bytes - ClassId
* 3rd,4th bytes - alarmID
"
::= { sleAMConfigEntry 9 }
sleAMConfigControl OBJECT IDENTIFIER ::= { sleAMConfigBase 2 }
sleAMConfigControlRequest OBJECT-TYPE
SYNTAX INTEGER
{
setAMConfigTrapEnableState(1),
setAMConfigRaiseGuardTime(2),
setAMConfigClearGuardTime(3),
setAMConfigSeverity(4),
setAMConfigLed(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configuration commands, and user can configure
functions via setting this entry as proper value."
::= { sleAMConfigControl 1 }
sleAMConfigControlStatus OBJECT-TYPE
SYNTAX SleControlStatusType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"status of user command. User have to check this
value as .busy. or .idle. before do setRequest."
::= { sleAMConfigControl 2 }
sleAMConfigControlTimer OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"the wait-time until setRequest
end. In case of short-time command, this value is 0"
::= { sleAMConfigControl 3 }
sleAMConfigControlTimeStamp OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"the time stamp of the last command. (don.t care)"
::= { sleAMConfigControl 4 }
sleAMConfigControlReqResult OBJECT-TYPE
SYNTAX SleControlRequestResultType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Result of the last command."
::= { sleAMConfigControl 5 }
sleAMConfigControlAlarmClassId OBJECT-TYPE
SYNTAX AMAlarmClassId
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Alarm Manager Class ID"
::= { sleAMConfigControl 6 }
sleAMConfigControlAlarmId OBJECT-TYPE
SYNTAX AMAlarmId
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Alarm Manager Alarm Index"
::= { sleAMConfigControl 7 }
sleAMConfigControlSeverity OBJECT-TYPE
SYNTAX AMAlarmSeverity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Alarm Class Severity
critical(1),
major(2),
minor(3),
warning(4),
ignore(5),
default(6)"
::= { sleAMConfigControl 8 }
sleAMConfigControlEnableState OBJECT-TYPE
SYNTAX AMTrapState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Alarm Trap State. Based on the trap state,
the alarm will be notified to NMS. If the TRAP STATE is enabled
then the alarm will be notified else wont be notified.
enable (1)
disabe (0) "
::= { sleAMConfigControl 9 }
sleAMConfigControlRaiseGuardTime OBJECT-TYPE
SYNTAX AMAlarmGuardTime
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Alarm Raise Soaking time. When any alarm is raised, this attribute
specifies how much time the alarm should be soaked before notifying
to Alarm manager
range:1 ~ 30, (if '0', no soaking time)"
::= { sleAMConfigControl 10 }
sleAMConfigControlClearGuardTime OBJECT-TYPE
SYNTAX AMAlarmGuardTime
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Alarm clear Soaking time. When any alarm is cleared, this attribute
specifies how much time the alarm should be soaked before notifying
to Alarm manager
range:1 ~ 30, (if '0', no soaking time)"
::= { sleAMConfigControl 11 }
sleAMConfigControlLed OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Alarm led configuration.
Determinde led operate or not, when alarms occur.
off(0): led not operate
on(1) : led operate"
::= { sleAMConfigControl 12 }
sleAMConfigNotification OBJECT IDENTIFIER ::= { sleAMConfigBase 3 }
sleAMConfigSeverityChanged NOTIFICATION-TYPE
OBJECTS { sleAMAlarmTrapNeId, sleAMConfigControlRequest, sleAMConfigControlTimeStamp, sleAMConfigControlReqResult, sleAMConfigControlAlarmClassId,
sleAMConfigControlAlarmId, sleAMConfigControlSeverity }
STATUS current
DESCRIPTION
" Notification for Alarm severity change"
::= { sleAMConfigNotification 1 }
sleAMConfigEnableStateChanged NOTIFICATION-TYPE
OBJECTS { sleAMAlarmTrapNeId, sleAMConfigControlRequest, sleAMConfigControlTimeStamp, sleAMConfigControlReqResult, sleAMConfigControlAlarmClassId,
sleAMConfigControlAlarmId, sleAMConfigControlEnableState }
STATUS current
DESCRIPTION
" Notification for Class Trap State change"
::= { sleAMConfigNotification 2 }
sleAMConfigRaiseGuardTimeChanged NOTIFICATION-TYPE
OBJECTS { sleAMAlarmTrapNeId, sleAMConfigControlRequest, sleAMConfigControlReqResult, sleAMConfigControlTimeStamp, sleAMConfigControlAlarmClassId,
sleAMConfigControlAlarmId, sleAMConfigControlRaiseGuardTime }
STATUS current
DESCRIPTION
" Notification for Raise Soak time change"
::= { sleAMConfigNotification 3 }
sleAMConfigClearGuardTimeChanged NOTIFICATION-TYPE
OBJECTS { sleAMAlarmTrapNeId, sleAMConfigControlRequest, sleAMConfigControlTimeStamp, sleAMConfigControlReqResult, sleAMConfigControlAlarmClassId,
sleAMConfigControlAlarmId, sleAMConfigControlClearGuardTime }
STATUS current
DESCRIPTION
" Notification for Clear Soak time change"
::= { sleAMConfigNotification 4 }
sleAMConfigLedChanged NOTIFICATION-TYPE
OBJECTS { sleAMAlarmTrapNeId, sleAMConfigControlRequest, sleAMConfigControlTimeStamp, sleAMConfigControlReqResult, sleAMConfigControlAlarmClassId,
sleAMConfigControlAlarmId, sleAMConfigControlLed }
STATUS current
DESCRIPTION
" Notification for Alarm led configuration change"
::= { sleAMConfigNotification 5 }
sleAMCurrentBase OBJECT IDENTIFIER ::= { sleAlarmMgr 3 }
sleAMCurrentTable OBJECT-TYPE
SYNTAX SEQUENCE OF SleAMCurrentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" This table contains the current active
alarms for the Alarm Class. Each Row in this table
gets populated when any Alarm is raised"
::= { sleAMCurrentBase 1 }
sleAMCurrentEntry OBJECT-TYPE
SYNTAX SleAMCurrentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
INDEX { sleAMCurrentSeqId }
::= { sleAMCurrentTable 1 }
SleAMCurrentEntry ::=
SEQUENCE {
sleAMCurrentSeqId
Unsigned32,
sleAMCurrentAlarmSource
AMAlarmSrc,
sleAMCurrentAlarmClassId
AMAlarmClassId,
sleAMCurrentAlarmId
AMAlarmId,
sleAMCurrentAlarmStatus
AlarmStatus,
sleAMCurrentAlarmSeverity
AMAlarmSeverity,
sleAMCurrentAlarmReason
AMAlarmReason,
sleAMCurrentTimeAndDate
TimeTicks,
sleAMCurrentSpecificId
INTEGER
}
sleAMCurrentSeqId OBJECT-TYPE
SYNTAX Unsigned32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"alarm sequence id
key of current alarm table
it generated by alarm-manager automatically
"
::= { sleAMCurrentEntry 1 }
sleAMCurrentAlarmSource OBJECT-TYPE
SYNTAX AMAlarmSrc
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"alarm location infomation
|type|length|value|type|length|value|....
type (1-byte) : alarm location type
length(1-byte) : alarm location value length
value (length-bytes) : alarm location value"
::= { sleAMCurrentEntry 2 }
sleAMCurrentAlarmClassId OBJECT-TYPE
SYNTAX AMAlarmClassId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Class ID starts from 1 to 65535 for the system.
And these IDs are defined by alarm-client"
::= { sleAMCurrentEntry 3 }
sleAMCurrentAlarmId OBJECT-TYPE
SYNTAX AMAlarmId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alarm ID
Alarm ID starts from 1 to 65535 for the system.
And these IDs are defined by alarm-client
"
::= { sleAMCurrentEntry 4 }
sleAMCurrentAlarmStatus OBJECT-TYPE
SYNTAX AlarmStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current Alarm State:
raised (1),
masked(2)"
::= { sleAMCurrentEntry 5 }
sleAMCurrentAlarmSeverity OBJECT-TYPE
SYNTAX AMAlarmSeverity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current Alarm Severity:
critical(1),
major(2),
minor(3),
warning(4)"
::= { sleAMCurrentEntry 6 }
sleAMCurrentAlarmReason OBJECT-TYPE
SYNTAX AMAlarmReason
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"reasion string"
::= { sleAMCurrentEntry 7 }
sleAMCurrentTimeAndDate OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current Alarm Time and Date"
::= { sleAMCurrentEntry 8 }
sleAMCurrentSpecificId OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Current Alarm specific ID(4bytes)
classId and alarmID are combinded with a specificID
* 1st,2nd Bytes - ClassId
* 3rd,4th bytes - alarmID
"
::= { sleAMCurrentEntry 9 }
sleAMCurrentControl OBJECT IDENTIFIER ::= { sleAMCurrentBase 2 }
sleAMCurrentControlRequest OBJECT-TYPE
SYNTAX INTEGER
{
allAlarmClear(1),
alarmClearBySeqId(2),
alarmClearBySource(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configuration commands, and user can configure
functions via setting this entry as proper value.
1: all current alarm clear
2: current alarm clear by SeqId
3: current alarm clear by Source(location)"
::= { sleAMCurrentControl 1 }
sleAMCurrentControlStatus OBJECT-TYPE
SYNTAX SleControlStatusType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"status of user command. User have to check this
value as .busy. or .idle. before do setRequest."
::= { sleAMCurrentControl 2 }
sleAMCurrentControlTimer OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"the wait-time until setRequest
end. In case of short-time command, this value is 0"
::= { sleAMCurrentControl 3 }
sleAMCurrentControlTimeStamp OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"the time stamp of the last command. (don.t care)"
::= { sleAMCurrentControl 4 }
sleAMCurrentControlReqResult OBJECT-TYPE
SYNTAX SleControlRequestResultType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Result of the last command."
::= { sleAMCurrentControl 5 }
sleAMCurrentControlSeqId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
current alarmControl Sequence ID.(0, all mcurrent alarm cleared)
Valid only if the sleAMHistoryControlRequest value is set to 2(alarmHistoryClearBySeqId)."
::= { sleAMCurrentControl 6 }
sleAMCurrentControlSource OBJECT-TYPE
SYNTAX AMAlarmSrc
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"current alarm clear location infomation
|type|length|value|type|length|value|....
type (1-byte) : alarm location type
length(1-byte) : alarm location value length
value (length-bytes) : alarm location value"
::= { sleAMCurrentControl 7 }
sleAMCurrentNotification OBJECT IDENTIFIER ::= { sleAMCurrentBase 3 }
sleAMCurrentAlarmCleared NOTIFICATION-TYPE
OBJECTS { sleAMAlarmTrapNeId, sleAMCurrentControlRequest, sleAMCurrentControlTimeStamp, sleAMCurrentControlReqResult, sleAMCurrentControlSeqId
}
STATUS current
DESCRIPTION
" Notification for current alarm clear"
::= { sleAMCurrentNotification 1 }
sleAlarmTrapAlarm NOTIFICATION-TYPE
OBJECTS { sleAMAlarmTrapNeId, sleAMCurrentSeqId, sleAMCurrentAlarmSource, sleAMCurrentAlarmReason, sleAMCurrentSpecificId,
sleAMCurrentAlarmId, sleAMCurrentAlarmClassId, sleAMCurrentAlarmStatus, sleAMCurrentAlarmSeverity, sleAMCurrentTimeAndDate
}
STATUS current
DESCRIPTION
"Notify Alarm Raise/Clear TRAPS to NMS for each entry in the Table"
::= { sleAMCurrentNotification 2 }
sleAlarmTrapEvent NOTIFICATION-TYPE
OBJECTS { sleAMAlarmTrapNeId, sleAMCurrentSeqId, sleAMCurrentAlarmSource, sleAMCurrentAlarmClassId, sleAMCurrentAlarmId,
sleAMCurrentAlarmStatus, sleAMCurrentAlarmSeverity, sleAMCurrentSpecificId, sleAMCurrentTimeAndDate, sleAMCurrentAlarmReason
}
STATUS current
DESCRIPTION
"Notify Event Occur TRAPS to NMS for each entry in the Table"
::= { sleAMCurrentNotification 3 }
sleAMHistoryBase OBJECT IDENTIFIER ::= { sleAlarmMgr 4 }
sleAMHistoryTable OBJECT-TYPE
SYNTAX SEQUENCE OF SleAMHistoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This Table is used to for keeping the Alarm History"
::= { sleAMHistoryBase 1 }
sleAMHistoryEntry OBJECT-TYPE
SYNTAX SleAMHistoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
INDEX { sleAMHistorySeqId }
::= { sleAMHistoryTable 1 }
SleAMHistoryEntry ::=
SEQUENCE {
sleAMHistorySeqId
Unsigned32,
sleAMHistoryAlarmSource
AMAlarmSrc,
sleAMHistoryAlarmClassId
AMAlarmClassId,
sleAMHistoryAlarmId
AMAlarmId,
sleAMHistoryAlarmStatus
AlarmStatus,
sleAMHistoryAlarmSeverity
AMAlarmSeverity,
sleAMHistoryAlarmReason
AMAlarmReason,
sleAMHistoryAlarmTimeDate
TimeTicks,
sleAMHistorySpecificId
Integer32
}
sleAMHistorySeqId OBJECT-TYPE
SYNTAX Unsigned32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alarm History Sequence ID. This sequence Id is
maintained based on the TRAP sent. "
::= { sleAMHistoryEntry 1 }
sleAMHistoryAlarmSource OBJECT-TYPE
SYNTAX AMAlarmSrc
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
|type|length|value|type|length|value|....
type (1-byte) : alarm location type
length(1-byte) : alarm location value length
value (length-bytes) : alarm location value"
::= { sleAMHistoryEntry 2 }
sleAMHistoryAlarmClassId OBJECT-TYPE
SYNTAX AMAlarmClassId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Class ID starts from 1 to 65535 for the system.
And these IDs are defined by alarm-client"
::= { sleAMHistoryEntry 3 }
sleAMHistoryAlarmId OBJECT-TYPE
SYNTAX AMAlarmId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"History Alarm ID
Alarm ID starts from 1 to 65535 for the system.
And these IDs are defined by alarm-client"
::= { sleAMHistoryEntry 4 }
sleAMHistoryAlarmStatus OBJECT-TYPE
SYNTAX AlarmStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"History Alarm State:
cleared (0),
raised (1),
masked(2)"
::= { sleAMHistoryEntry 5 }
sleAMHistoryAlarmSeverity OBJECT-TYPE
SYNTAX AMAlarmSeverity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"History alarm Severity
critical(1),
major(2),
minor(3),
warning(4)"
::= { sleAMHistoryEntry 6 }
sleAMHistoryAlarmReason OBJECT-TYPE
SYNTAX AMAlarmReason
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"History alarm Reason string"
::= { sleAMHistoryEntry 7 }
sleAMHistoryAlarmTimeDate OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"History Alarm Time and Date"
::= { sleAMHistoryEntry 8 }
sleAMHistorySpecificId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Alarm History specific ID(4bytes)
classId and alarmID are combinded with a specificID
* 1st,2nd Bytes - ClassId
* 3rd,4th bytes - alarmID
"
::= { sleAMHistoryEntry 9 }
sleAMHistoryControl OBJECT IDENTIFIER ::= { sleAMHistoryBase 2 }
sleAMHistoryControlRequest OBJECT-TYPE
SYNTAX INTEGER
{
allAlarmHistoryClear(1),
alarmHistoryClearBySeqId(2),
alarmHistoryClearBySource(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configuration commands, and user can configure
functions via setting this entry as proper value.
clearAlarmHistory : clears the alarms from the History Table
1: all alarm history clear
2: alarm history clear by SeqId
3: alarm history clear by Source(location)"
::= { sleAMHistoryControl 1 }
sleAMHistoryControlStatus OBJECT-TYPE
SYNTAX SleControlStatusType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"status of user command. User have to check this
value as .busy. or .idle. before do setRequest."
::= { sleAMHistoryControl 2 }
sleAMHistoryControlTimer OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"the wait-time until setRequest
end. In case of short-time command, this value is 0"
::= { sleAMHistoryControl 3 }
sleAMHistoryControlTimeStamp OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"the time stamp of the last command. (don.t care)"
::= { sleAMHistoryControl 4 }
sleAMHistoryControlReqResult OBJECT-TYPE
SYNTAX SleControlRequestResultType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Result of the last command."
::= { sleAMHistoryControl 5 }
sleAMHistoryControSeqId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Alarm History Control Sequence ID.
Specify cleared history alarm ID
(0, all alarm history cleared)
"
::= { sleAMHistoryControl 6 }
sleAMHistoryControSource OBJECT-TYPE
SYNTAX AMAlarmSrc
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"alarm history clear location infomation
Valid only if the sleAMHistoryControlRequest value is set to 3(alarmHistoryClearBySource).
|type|length|value|type|length|value|....
type (1-byte) : alarm location type
length(1-byte) : alarm location value length
value (length-bytes) : alarm location value"
::= { sleAMHistoryControl 7 }
sleAMHistoryNotification OBJECT IDENTIFIER ::= { sleAMHistoryBase 3 }
sleAMHistoryAlarmCleared NOTIFICATION-TYPE
OBJECTS { sleAMAlarmTrapNeId, sleAMHistoryControlRequest, sleAMHistoryControlTimeStamp, sleAMHistoryControlReqResult, sleAMHistoryControSeqId
}
STATUS current
DESCRIPTION
" Notification for History Class cleared"
::= { sleAMHistoryNotification 1 }
sleAMAcoBase OBJECT IDENTIFIER ::= { sleAlarmMgr 5 }
sleAMAcoInfoEntry OBJECT IDENTIFIER ::= { sleAMAcoBase 1 }
sleAMAcoInfo OBJECT-TYPE
SYNTAX AMAlarmAco
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ACO control configuration
acoOff(1) : buzzer operation enable.
acoOn(2) : buzzer operation disable.
acoOpr(3) : current buzzer cut."
::= { sleAMAcoInfoEntry 1 }
sleAMAcoControl OBJECT IDENTIFIER ::= { sleAMAcoBase 2 }
sleAMAcoControlRequest OBJECT-TYPE
SYNTAX INTEGER
{
oprAco(1),
setAco(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configuration commands, and user can configure
functions via setting this entry as proper value."
::= { sleAMAcoControl 1 }
sleAMAcogControlStatus OBJECT-TYPE
SYNTAX SleControlStatusType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"status of user command. User have to check this
value as .busy. or .idle. before do setRequest."
::= { sleAMAcoControl 2 }
sleAMAcoControlTimer OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"the wait-time until setRequest
end. In case of short-time command, this value is 0"
::= { sleAMAcoControl 3 }
sleAMAcoControlTimeStamp OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"the time stamp of the last command. (don.t care)"
::= { sleAMAcoControl 4 }
sleAMAcoControlReqResult OBJECT-TYPE
SYNTAX SleControlRequestResultType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Result of the last command."
::= { sleAMAcoControl 5 }
sleAMAcoControlSet OBJECT-TYPE
SYNTAX AMAlarmAco
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"ACO control
acoOff(1) : buzzer operation enable.
acoOn(2) : buzzer operation disable.
acoOpr(3) : current buzzer cut."
::= { sleAMAcoControl 6 }
sleAMAcoNotification OBJECT IDENTIFIER ::= { sleAMAcoBase 3 }
sleAMAcoChanged NOTIFICATION-TYPE
OBJECTS { sleAMAlarmTrapNeId, sleAMAcoControlRequest, sleAMAcoControlTimeStamp, sleAMAcoControlReqResult, sleAMAcoControlSet
}
STATUS current
DESCRIPTION
" Notification for Alarm ACO configuration change"
::= { sleAMAcoNotification 1 }
sleAMLedBase OBJECT IDENTIFIER ::= { sleAlarmMgr 6 }
sleAMLedTable OBJECT-TYPE
SYNTAX SEQUENCE OF SleAMLedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" This table contains the LED status and configuration."
::= { sleAMLedBase 1 }
sleAMLedEntry OBJECT-TYPE
SYNTAX SleAMLedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
INDEX { sleAMLedSeverity }
::= { sleAMLedTable 1 }
SleAMLedEntry ::=
SEQUENCE {
sleAMLedSeverity
INTEGER,
sleAMLedSet
AMAlarmLed,
sleAMLedCount
Integer32
}
sleAMLedSeverity OBJECT-TYPE
SYNTAX INTEGER
{
critical(1),
major(2),
minor(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"LED Alarm Severity
critical(1),
major(2),
minor(3),"
::= { sleAMLedEntry 1 }
sleAMLedSet OBJECT-TYPE
SYNTAX AMAlarmLed
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"ACO control configuration
acoOff(1) : buzzer operation enable.
acoOn(2) : buzzer operation disable.
acoOpr(3) : current buzzer cut."
::= { sleAMLedEntry 2 }
sleAMLedCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"alarm count of the associated led"
::= { sleAMLedEntry 3 }
sleAMLedControl OBJECT IDENTIFIER ::= { sleAMLedBase 2 }
sleAMLedControlRequest OBJECT-TYPE
SYNTAX INTEGER
{
oprLed(1),
setLed(2),
ledCount(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configuration commands, and user can configure
functions via setting this entry as proper value."
::= { sleAMLedControl 1 }
sleAMLedControlStatus OBJECT-TYPE
SYNTAX SleControlStatusType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"status of user command. User have to check this
value as .busy. or .idle. before do setRequest."
::= { sleAMLedControl 2 }
sleAMLedControlTimer OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"the wait-time until setRequest
end. In case of short-time command, this value is 0"
::= { sleAMLedControl 3 }
sleAMLedControlTimeStamp OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"the time stamp of the last command. (don.t care)"
::= { sleAMLedControl 4 }
sleAMLedControlReqResult OBJECT-TYPE
SYNTAX SleControlRequestResultType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Result of the last command."
::= { sleAMLedControl 5 }
sleAMLedControlSeverity OBJECT-TYPE
SYNTAX INTEGER
{
all(0),
critical(1),
major(2),
minor(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"LED Alarm Severity
critical(1),
major(2),
minor(3),"
::= { sleAMLedControl 6 }
sleAMLedControlSet OBJECT-TYPE
SYNTAX AMAlarmLed
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"LED control configuration
ledOff(1) : LED operation disable.
ledOn(2) : LED operation enable.
ledOpr(3) : current LED off."
::= { sleAMLedControl 7 }
sleAMLedNotification OBJECT IDENTIFIER ::= { sleAMLedBase 3 }
sleAMLedChanged NOTIFICATION-TYPE
OBJECTS { sleAMAlarmTrapNeId, sleAMLedControlRequest, sleAMLedControlTimeStamp, sleAMLedControlReqResult, sleAMLedControlSeverity,
sleAMLedControlSet }
STATUS current
DESCRIPTION
" Notification for LED configuration change"
::= { sleAMLedNotification 1 }
END
--
-- sle-am-mib.mib
--
|