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
|
-- ==================================================================
-- Copyright (C) 2017 by HUAWEI TECHNOLOGIES. All rights reserved.
--
-- Description: HUAWEI ALARM MIB
-- Reference:
-- Version: V2.14
-- History:
-- V1.0 2009-03-20 publish
-- ==================================================================
HUAWEI-ALARM-MIB DEFINITIONS ::= BEGIN
IMPORTS
hwDatacomm
FROM HUAWEI-MIB
OBJECT-GROUP, MODULE-COMPLIANCE, NOTIFICATION-GROUP
FROM SNMPv2-CONF
Integer32, Unsigned32, Counter64, OBJECT-TYPE, MODULE-IDENTITY,
NOTIFICATION-TYPE
FROM SNMPv2-SMI
RowStatus, DateAndTime
FROM SNMPv2-TC;
hwAlarmMIB MODULE-IDENTITY
LAST-UPDATED "201707141136Z" -- July 14, 2017 at 11:36 GMT
ORGANIZATION "Huawei Technologies Co.,Ltd."
CONTACT-INFO
"Huawei Industrial Base
Bantian, Longgang
Shenzhen 518129
People's Republic of China
Website: http://www.huawei.com
Email: support@huawei.com"
DESCRIPTION
"The MIB module for creating and deleting bulk files of
SNMP data for file transfer."
REVISION "201707141136Z" -- July 14, 2017 at 11:36 GMT
DESCRIPTION
"Revert to the revision 2.10."
REVISION "201702160943Z" -- February 16, 2017 at 9:43 GMT
DESCRIPTION
"Revert to the revision 2.10."
REVISION "201310280943Z" -- October 28, 2013 at 9:43 GMT
DESCRIPTION
"Revert to the revision 2.10."
REVISION "201310181643Z" -- October 18, 2013 at 16:43 GMT
DESCRIPTION
"Add history alarm MIB."
REVISION "200912051150Z" -- December 05, 2009 at 11:50 GMT
DESCRIPTION
"The initial revision of this MIB module ."
::= { hwDatacomm 180 }
--
-- Node definitions
--
hwAlarmObjects OBJECT IDENTIFIER ::= { hwAlarmMIB 1 }
hwSnmpTargetAddrExtTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwSnmpTargetAddrExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Define snmp target Address extend table."
::= { hwAlarmObjects 1 }
hwSnmpTargetAddrExtEntry OBJECT-TYPE
SYNTAX HwSnmpTargetAddrExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of the extended snmp target address table."
INDEX { IMPLIED hwSnmpTargetAddrExtIndex }
::= { hwSnmpTargetAddrExtTable 1 }
HwSnmpTargetAddrExtEntry ::=
SEQUENCE {
hwSnmpTargetAddrExtIndex
OCTET STRING,
hwSnmpTargetSlaveAddressList
OCTET STRING,
hwSnmpTargetAddrReliability
INTEGER,
hwSnmpTargetAddrAlarmReliability
INTEGER,
hwSnmpTargetAddrEventReliability
INTEGER,
hwSnmpTargetAddrExtRowStatus
RowStatus
}
hwSnmpTargetAddrExtIndex OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"the extended target address table index."
::= { hwSnmpTargetAddrExtEntry 1 }
hwSnmpTargetSlaveAddressList OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Address of slave target host."
::= { hwSnmpTargetAddrExtEntry 2 }
hwSnmpTargetAddrReliability OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If enable, then the extend VBs will be added to the alarm parameters. "
DEFVAL { enable }
::= { hwSnmpTargetAddrExtEntry 3 }
hwSnmpTargetAddrAlarmReliability OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Alarm reliability function enable flag."
DEFVAL { enable }
::= { hwSnmpTargetAddrExtEntry 4 }
hwSnmpTargetAddrEventReliability OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Event reliability function enable flag. "
DEFVAL { enable }
::= { hwSnmpTargetAddrExtEntry 5 }
hwSnmpTargetAddrExtRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status of the target extend table."
::= { hwSnmpTargetAddrExtEntry 6 }
hwMinAlarmSyncIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimal index value for alarm synchronization."
::= { hwAlarmObjects 2 }
hwMaxAlarmSyncIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximal index value for alarm synchronization. "
::= { hwAlarmObjects 3 }
hwAlarmSyncTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwAlarmSyncEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Alarm synchronization table. "
::= { hwAlarmObjects 4 }
hwAlarmSyncEntry OBJECT-TYPE
SYNTAX HwAlarmSyncEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Alarm synchronization table entry."
INDEX { hwSnmpTargetAddrExtIndex, hwAlarmSyncIndex }
::= { hwAlarmSyncTable 1 }
HwAlarmSyncEntry ::=
SEQUENCE {
hwAlarmSyncIndex
Unsigned32,
hwAlarmSyncId
Counter64,
hwAlarmSyncPara
OCTET STRING
}
hwAlarmSyncIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Alarm synchronization index."
::= { hwAlarmSyncEntry 1 }
hwAlarmSyncId OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alarm id "
::= { hwAlarmSyncEntry 2 }
hwAlarmSyncPara OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..4096))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the information contained
in the binding variable list of the alarm message."
::= { hwAlarmSyncEntry 3 }
hwMinEventSyncIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimal index value for event synchronization."
::= { hwAlarmObjects 5 }
hwMaxEventSyncIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximal index value for event synchronization. "
::= { hwAlarmObjects 6 }
hwEventSyncTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwEventSyncEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The event synchronization table."
::= { hwAlarmObjects 7 }
hwEventSyncEntry OBJECT-TYPE
SYNTAX HwEventSyncEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The event synchronization table entry."
INDEX { hwSnmpTargetAddrExtIndex, hwEventSyncIndex }
::= { hwEventSyncTable 1 }
HwEventSyncEntry ::=
SEQUENCE {
hwEventSyncIndex
Unsigned32,
hwEventSyncId
Counter64,
hwEventSyncPara
OCTET STRING
}
hwEventSyncIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The event synchronization index value."
::= { hwEventSyncEntry 1 }
hwEventSyncId OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The event id."
::= { hwEventSyncEntry 2 }
hwEventSyncPara OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..4096))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the information contained
in the binding variable list of an event."
::= { hwEventSyncEntry 3 }
hwAlarmActiveTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwAlarmActiveEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The active alarm table."
::= { hwAlarmObjects 8 }
hwAlarmActiveEntry OBJECT-TYPE
SYNTAX HwAlarmActiveEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries appear in this table when alarms are raised. They
are removed when the alarm is cleared."
INDEX { hwSnmpTargetAddrExtIndex, hwActiveAlarmIndex }
::= { hwAlarmActiveTable 1 }
HwAlarmActiveEntry ::=
SEQUENCE {
hwActiveAlarmIndex
Unsigned32,
hwActiveAlarmId
Counter64,
hwActiveAlarmPara
OCTET STRING,
hwActiveAlarmRowStatus
RowStatus
}
hwActiveAlarmIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A strictly monotonically increasing integer which acts as the index of all alarms and events.
It wraps back to 1 after it reaches its maximum value."
::= { hwAlarmActiveEntry 1 }
hwActiveAlarmId OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The id of an alarm."
::= { hwAlarmActiveEntry 2 }
hwActiveAlarmPara OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..4096))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the parameters of an active alarm."
::= { hwAlarmActiveEntry 3 }
hwActiveAlarmRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the row status."
::= { hwAlarmActiveEntry 4 }
hwEventTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwEventEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The event table. "
::= { hwAlarmObjects 9 }
hwEventEntry OBJECT-TYPE
SYNTAX HwEventEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries appear in this table when events are raised."
INDEX { hwSnmpTargetAddrExtIndex, hwEventIndex }
::= { hwEventTable 1 }
HwEventEntry ::=
SEQUENCE {
hwEventIndex
Unsigned32,
hwEventId
Counter64,
hwEventPara
OCTET STRING,
hwEventRowStatus
RowStatus
}
hwEventIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A strictly monotonically increasing integer
which acts as the index of all alarms and events.
It wraps back to 1 after it reaches its maximum value."
::= { hwEventEntry 1 }
hwEventId OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the OID of an event."
::= { hwEventEntry 2 }
hwEventPara OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..4096))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the parameter information of an event."
::= { hwEventEntry 3 }
hwEventRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the row status."
::= { hwEventEntry 4 }
hwAlarmDateAndTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the time when an alarm is generated or cleared."
::= { hwAlarmObjects 18 }
hwAlarmOrEventFlag OBJECT-TYPE
SYNTAX INTEGER
{
alarm(1),
event(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the type of alarm messages.
1: Alarm
2: Event
"
::= { hwAlarmObjects 19 }
hwAlarmReasonInfo OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The reason for the alarm."
::= { hwAlarmObjects 20 }
hwAlarmSeverity OBJECT-TYPE
SYNTAX INTEGER
{
critical(1),
major(2),
minor(3),
warning(4),
indeterminate(5),
cleared(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alarm severity."
::= { hwAlarmObjects 25 }
hwSnmpTargetSyncIndexTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwSnmpTargetSyncIndexEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The synchronization index of snmp targets table."
::= { hwAlarmObjects 28 }
hwSnmpTargetSyncIndexEntry OBJECT-TYPE
SYNTAX HwSnmpTargetSyncIndexEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of the synchronization index table."
INDEX { hwSnmpTargetAddrExtIndex }
::= { hwSnmpTargetSyncIndexTable 1 }
HwSnmpTargetSyncIndexEntry ::=
SEQUENCE {
hwMinAlmSyncIndex
Unsigned32,
hwMaxAlmSyncIndex
Unsigned32,
hwMinEvtSyncIndex
Unsigned32,
hwMaxEvtSyncIndex
Unsigned32
}
hwMinAlmSyncIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimal index value for alarm synchronization."
::= { hwSnmpTargetSyncIndexEntry 1 }
hwMaxAlmSyncIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximal index value for alarm synchronization. "
::= { hwSnmpTargetSyncIndexEntry 2 }
hwMinEvtSyncIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimal index value for event synchronization."
::= { hwSnmpTargetSyncIndexEntry 3 }
hwMaxEvtSyncIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximal index value for event synchronization. "
::= { hwSnmpTargetSyncIndexEntry 4 }
hwAlarmActiveVsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwAlarmActiveVsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The active alarm management table for LSVS support version. "
::= { hwAlarmObjects 31 }
hwAlarmActiveVsEntry OBJECT-TYPE
SYNTAX HwAlarmActiveVsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The active alarm table for VS support version. "
AUGMENTS { hwAlarmActiveEntry }
::= { hwAlarmActiveVsTable 1 }
HwAlarmActiveVsEntry ::=
SEQUENCE {
hwAlarmActiveVsId
Unsigned32
}
hwAlarmActiveVsId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The VS id of the alarm. "
::= { hwAlarmActiveVsEntry 9 }
hwEventVsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwEventVsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The event table for LSVS support version. "
::= { hwAlarmObjects 33 }
hwEventVsEntry OBJECT-TYPE
SYNTAX HwEventVsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The event entry."
AUGMENTS { hwEventEntry }
::= { hwEventVsTable 1 }
HwEventVsEntry ::=
SEQUENCE {
hwEventVsId
Unsigned32
}
hwEventVsId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The VS id of the event. "
::= { hwEventVsEntry 9 }
hwAlarmSyncVsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwAlarmSyncVsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Alarm synchronization table. "
::= { hwAlarmObjects 36 }
hwAlarmSyncVsEntry OBJECT-TYPE
SYNTAX HwAlarmSyncVsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Alarm synchronization table entry."
AUGMENTS { hwAlarmSyncEntry }
::= { hwAlarmSyncVsTable 1 }
HwAlarmSyncVsEntry ::=
SEQUENCE {
hwAlarmSyncVsId
Unsigned32
}
hwAlarmSyncVsId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alarm VS id."
::= { hwAlarmSyncVsEntry 3 }
hwEventSyncVsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwEventSyncVsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The event synchronization table."
::= { hwAlarmObjects 39 }
hwEventSyncVsEntry OBJECT-TYPE
SYNTAX HwEventSyncVsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The event synchronization table entry."
AUGMENTS { hwEventSyncEntry }
::= { hwEventSyncVsTable 1 }
HwEventSyncVsEntry ::=
SEQUENCE {
hwEvevtSyncVsId
Unsigned32
}
hwEvevtSyncVsId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The VS id of the event."
::= { hwEventSyncVsEntry 3 }
hwAlarmNotifications OBJECT IDENTIFIER ::= { hwAlarmMIB 2 }
hwAlarmTargetHostDel NOTIFICATION-TYPE
OBJECTS { hwSnmpTargetAddrExtIndex }
STATUS current
DESCRIPTION
"The notification for the deletion of the target host. "
::= { hwAlarmNotifications 1 }
hwAlarmStorm NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"The alarm storm notification."
::= { hwAlarmNotifications 2 }
hwAlarmConformance OBJECT IDENTIFIER ::= { hwAlarmMIB 3 }
hwAlarmCompliances OBJECT IDENTIFIER ::= { hwAlarmConformance 1 }
hwAlarmCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which
implement the Huawei Alarm mib."
MODULE -- this module
MANDATORY-GROUPS { hwAlarmReliabilityGroup }
::= { hwAlarmCompliances 1 }
hwAlarmGroups OBJECT IDENTIFIER ::= { hwAlarmConformance 2 }
hwAlarmReliabilityGroup OBJECT-GROUP
OBJECTS { hwSnmpTargetSlaveAddressList, hwSnmpTargetAddrEventReliability, hwSnmpTargetAddrAlarmReliability, hwSnmpTargetAddrReliability, hwSnmpTargetAddrExtRowStatus
}
STATUS current
DESCRIPTION
"The objects for alarm reliability and snmp target address list."
::= { hwAlarmGroups 1 }
hwActiveInfoGroup OBJECT-GROUP
OBJECTS { hwActiveAlarmId, hwActiveAlarmPara, hwEventRowStatus, hwActiveAlarmRowStatus, hwEventId,
hwEventPara }
STATUS current
DESCRIPTION
"The nodes for querying the active alarm information."
::= { hwAlarmGroups 7 }
hwTrapInfoSyncGroup OBJECT-GROUP
OBJECTS { hwMinAlarmSyncIndex, hwMaxAlarmSyncIndex, hwAlarmSyncId, hwAlarmSyncPara, hwMinEventSyncIndex,
hwMaxEventSyncIndex, hwEventSyncId, hwEventSyncPara, hwAlarmDateAndTime, hwAlarmCorrAnalyzeSuppressionRootCauseIndication,
hwAlarmCorrAnalyzeSuppressionParentSequence, hwAlarmReasonInfo, hwAlarmSeverity, hwAlarmOrEventFlag }
STATUS current
DESCRIPTION
"All information of trap synchronization."
::= { hwAlarmGroups 8 }
hwActiveInfoVsGroup OBJECT-GROUP
OBJECTS { hwAlarmActiveVsId, hwEventVsId }
STATUS current
DESCRIPTION
"The VS id of the active alarm or event."
::= { hwAlarmGroups 9 }
hwTrapSyncVsGroup OBJECT-GROUP
OBJECTS { hwAlarmSyncVsId, hwEvevtSyncVsId, hwMinAlmSyncIndex, hwMaxAlmSyncIndex, hwMinEvtSyncIndex,
hwMaxEvtSyncIndex }
STATUS current
DESCRIPTION
"The VS id and the synchronization sequence number nodes."
::= { hwAlarmGroups 10 }
hwAlarmTrapInfoGroup NOTIFICATION-GROUP
NOTIFICATIONS { hwAlarmTargetHostDel, hwAlarmStorm }
STATUS current
DESCRIPTION
"Alarm trap nodes."
::= { hwAlarmGroups 11 }
hwTrapSuppressionGroup OBJECT-GROUP
OBJECTS { hwAlarmDelaySuppressionEnable, hwAlarmDelaySuppressionCausePersistPeriod, hwAlarmDelaySuppressionClearPersistPeriod,
hwAlarmCorrAnalyzeSuppressionEnable, hwAlarmCorrAnalyzeSuppressionStatus, hwEventDelaySuppressionEnable, hwEventDelaySuppressionCausePersistPeriod }
STATUS current
DESCRIPTION
"The trap suppression nodes."
::= { hwAlarmGroups 12 }
hwTrapInfoGroup OBJECT-GROUP
OBJECTS { hwAlarmAttrSeverity, hwEventAttrSeverity }
STATUS current
DESCRIPTION
"The basal information of trap nodes."
::= { hwAlarmGroups 13 }
hwAlarmConfig OBJECT IDENTIFIER ::= { hwAlarmMIB 5 }
hwAlarmAttr OBJECT IDENTIFIER ::= { hwAlarmConfig 1 }
hwAlarmAttrTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwAlarmAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains attribute of alarms."
::= {hwAlarmAttr 1}
hwAlarmAttrEntry OBJECT-TYPE
SYNTAX HwAlarmAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry of hwAlarmAttrTable."
INDEX {hwAlarmName}
::= {hwAlarmAttrTable 1}
HwAlarmAttrEntry::=
SEQUENCE {
hwAlarmName
OCTET STRING,
hwAlarmAttrSeverity
INTEGER
}
hwAlarmName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of registered alarms."
::= { hwAlarmAttrEntry 1 }
hwAlarmAttrSeverity OBJECT-TYPE
SYNTAX INTEGER
{
critical(1),
major(2),
minor(3),
warning(4),
indeterminate(5),
cleared(6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The severity of alarms."
::= { hwAlarmAttrEntry 2 }
hwAlarmMask OBJECT IDENTIFIER ::= { hwAlarmConfig 3 }
hwAlarmMaskBasedOnIfnameTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwAlarmMaskBasedOnIfnameEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Define alarm mask table, which is based on interface."
::= {hwAlarmMask 1}
hwAlarmMaskBasedOnIfnameEntry OBJECT-TYPE
SYNTAX HwAlarmMaskBasedOnIfnameEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry of hwAlarmMaskBasedOnIfnameTable."
INDEX {hwAlarmMaskIfName}
::= {hwAlarmMaskBasedOnIfnameTable 1}
HwAlarmMaskBasedOnIfnameEntry::=
SEQUENCE {
hwAlarmMaskIfName
OCTET STRING,
hwAlarmMaskBasedOnIfnameRowStatus
RowStatus
}
hwAlarmMaskIfName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface name for alarm mask."
::= { hwAlarmMaskBasedOnIfnameEntry 1 }
hwAlarmMaskBasedOnIfnameRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status of the alarm mask based on interface table."
::= { hwAlarmMaskBasedOnIfnameEntry 51 }
hwAlarmMaskBasedOnEntityTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwAlarmMaskBasedOnEntityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Define alarm mask table, which is based on entity index."
::= {hwAlarmMask 2}
hwAlarmMaskBasedOnEntityEntry OBJECT-TYPE
SYNTAX HwAlarmMaskBasedOnEntityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry of hwAlarmMaskBasedOnEntityTable."
INDEX {hwAlarmMaskEntPhysicalIndex}
::= {hwAlarmMaskBasedOnEntityTable 1}
HwAlarmMaskBasedOnEntityEntry::=
SEQUENCE {
hwAlarmMaskEntPhysicalIndex
Integer32,
hwAlarmMaskEntPhysicalName
OCTET STRING,
hwAlarmMaskBasedOnEntityRowStatus
RowStatus
}
hwAlarmMaskEntPhysicalIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The physical index of entity for alarm mask."
::= { hwAlarmMaskBasedOnEntityEntry 1 }
hwAlarmMaskEntPhysicalName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The physical name of entity for alarm mask."
::= { hwAlarmMaskBasedOnEntityEntry 2 }
hwAlarmMaskBasedOnEntityRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status of the alarm mask based on entity table."
::= { hwAlarmMaskBasedOnEntityEntry 51 }
hwAlarmDelay OBJECT IDENTIFIER ::= { hwAlarmConfig 4 }
hwAlarmDelaySuppressionEnable OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The switch of alarm delay suppression."
DEFVAL { enable }
::= { hwAlarmDelay 1 }
hwAlarmDelaySuppressionTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwAlarmDelaySuppressionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Define alarm delay suppression table."
::= { hwAlarmDelay 2 }
hwAlarmDelaySuppressionEntry OBJECT-TYPE
SYNTAX HwAlarmDelaySuppressionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of the alarm delay suppression table."
INDEX { hwAlarmName }
::= { hwAlarmDelaySuppressionTable 1 }
HwAlarmDelaySuppressionEntry::=
SEQUENCE {
hwAlarmDelaySuppressionCausePersistPeriod
Integer32,
hwAlarmDelaySuppressionClearPersistPeriod
Integer32
}
hwAlarmDelaySuppressionCausePersistPeriod OBJECT-TYPE
SYNTAX Integer32 (0..600)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The cause persist period of alarm delay suppression."
::= { hwAlarmDelaySuppressionEntry 1 }
hwAlarmDelaySuppressionClearPersistPeriod OBJECT-TYPE
SYNTAX Integer32 (0..600)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The clear persist period of alarm delay suppression."
::= { hwAlarmDelaySuppressionEntry 2 }
hwAlarmCorrAnalyze OBJECT IDENTIFIER ::= { hwAlarmConfig 5 }
hwAlarmCorrAnalyzeSuppressionEnable OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The switch of alarm correlation analyze suppression."
DEFVAL { disable }
::= { hwAlarmCorrAnalyze 1 }
hwAlarmCorrAnalyzeSuppressionRootCauseIndication OBJECT-TYPE
SYNTAX INTEGER
{
independent(0),
rootcause(1),
nonrootcause(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If alarm has passed correaltion analysis, this indication is
rootcause or nonrootcause, default is independent."
::= { hwAlarmCorrAnalyze 2 }
hwAlarmCorrAnalyzeSuppressionParentSequence OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The parent sequence of alarm, whose indication is nonrootcause."
::= { hwAlarmCorrAnalyze 3 }
hwAlarmCorrAnalyzeSuppressionTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwAlarmCorrAnalyzeSuppressionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Define alarm correlation analyze suppression table."
::= { hwAlarmCorrAnalyze 4 }
hwAlarmCorrAnalyzeSuppressionEntry OBJECT-TYPE
SYNTAX HwAlarmCorrAnalyzeSuppressionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of alarm correlation analyze suppression table."
INDEX { hwSnmpTargetAddrExtIndex }
::= { hwAlarmCorrAnalyzeSuppressionTable 1 }
HwAlarmCorrAnalyzeSuppressionEntry ::=
SEQUENCE {
hwAlarmCorrAnalyzeSuppressionStatus
INTEGER
}
hwAlarmCorrAnalyzeSuppressionStatus OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of alarm correlation suppression for each target host."
::= { hwAlarmCorrAnalyzeSuppressionEntry 1 }
hwEventConfig OBJECT IDENTIFIER ::= { hwAlarmMIB 6 }
hwEventAttr OBJECT IDENTIFIER ::= { hwEventConfig 1 }
hwEventAttrTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwEventAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains attribute of events."
::= {hwEventAttr 1}
hwEventAttrEntry OBJECT-TYPE
SYNTAX HwEventAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry of hwEventAttrTable."
INDEX {hwEventName}
::= {hwEventAttrTable 1}
HwEventAttrEntry::=
SEQUENCE {
hwEventName OCTET STRING,
hwEventAttrSeverity INTEGER
}
hwEventName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of registered events."
::= { hwEventAttrEntry 1 }
hwEventAttrSeverity OBJECT-TYPE
SYNTAX INTEGER
{
critical(1),
major(2),
minor(3),
warning(4),
indeterminate(5),
cleared(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The severity of evens."
::= { hwEventAttrEntry 2 }
hwEventDelay OBJECT IDENTIFIER ::= { hwEventConfig 4 }
hwEventDelaySuppressionEnable OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The switch of event delay suppression."
DEFVAL { enable }
::= { hwEventDelay 1 }
hwEventDelaySuppressionTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwEventDelaySuppressionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Define event delay suppression table."
::= { hwEventDelay 2 }
hwEventDelaySuppressionEntry OBJECT-TYPE
SYNTAX HwEventDelaySuppressionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of event delay suppression table."
INDEX { hwEventName }
::= { hwEventDelaySuppressionTable 1 }
HwEventDelaySuppressionEntry::=
SEQUENCE {
hwEventDelaySuppressionCausePersistPeriod
Integer32
}
hwEventDelaySuppressionCausePersistPeriod OBJECT-TYPE
SYNTAX Integer32 (0..600)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The cause persist period of event delay suppression."
::= { hwEventDelaySuppressionEntry 1 }
END
--
-- HUAWEI-ALARM-MIB.mib
--
|