summaryrefslogtreecommitdiff
path: root/MIBS/ciena/CIENA-WS-PLATFORM-ALARM-MIB
blob: 7ccc657b913722c97f457dbf2125f020feee8708 (plain)
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
CIENA-WS-PLATFORM-ALARM-MIB DEFINITIONS ::= BEGIN

IMPORTS
    cienaWsPlatformConfig
        FROM CIENA-WS-MIB
    StringMaxl16, StringMaxl32, StringMaxl44
        FROM CIENA-WS-PLATFORM-TYPEDEFS-MIB
    MODULE-COMPLIANCE, OBJECT-GROUP
        FROM SNMPv2-CONF
    Integer32, MODULE-IDENTITY, OBJECT-TYPE, Unsigned32
        FROM SNMPv2-SMI
    TEXTUAL-CONVENTION, TruthValue, DisplayString
        FROM SNMPv2-TC;

cienaWsPlatformAlarmMIB MODULE-IDENTITY
    LAST-UPDATED "201809200000Z"
    ORGANIZATION "Ciena Corporation"
    CONTACT-INFO "Web URL: http://www.ciena.com/
Postal:  7035 Ridge Road
        Hanover, Maryland 21076
        U.S.A.
Phone:   +1 800-921-1144
Fax:     +1 410-694-5750"
    DESCRIPTION "This module defines Alarm data for Waveserver Ai."
    REVISION "201809200000Z"
    DESCRIPTION "Changed the name of the MIB to include Platform in the name. Added intermittent to alarmReason typedef."
    REVISION "201808140000Z"
    DESCRIPTION "Added MIB definition."
    ::= { cienaWsPlatformConfig 4 }

AlarmReason ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION "None"
    SYNTAX INTEGER { reset(1), set(2), acknowledge(5), clear(6), delete(7), config(9), intermittent(10) }

AlarmSeverity ::= TEXTUAL-CONVENTION
    STATUS current
    DESCRIPTION "None"
    SYNTAX INTEGER { cleared(1), critical(3), major(4), minor(5), warning(6), info(8) }

activeAlarmTable OBJECT-TYPE
    SYNTAX SEQUENCE OF ActiveAlarmEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION "Active alarms"
    ::= { cienaWsPlatformAlarmMIB 3 }

activeAlarmEntry OBJECT-TYPE
    SYNTAX ActiveAlarmEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION "Entry for ActiveAlarmTable."
    INDEX { activeAlarmInstanceId }
    ::= { activeAlarmTable 1 }

ActiveAlarmEntry ::= SEQUENCE { 
    activeAlarmInstanceId Integer32,
    activeAlarmAcknowledged TruthValue,
    activeAlarmTableId Unsigned32,
    activeAlarmSeverity AlarmSeverity,
    activeAlarmLocalDateTime StringMaxl32,
    activeAlarmInstance StringMaxl32,
    activeAlarmDescription StringMaxl44,
    activeAlarmIntermittent TruthValue,
    activeAlarmSiteIdentifier Unsigned32,
    activeAlarmGroupIdentifier Unsigned32,
    activeAlarmMemberIdentifier Unsigned32 
}

activeAlarmInstanceId OBJECT-TYPE
    SYNTAX Integer32(1..2147483647)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION "The alarm Instance ID"
    ::= { activeAlarmEntry 1 }

activeAlarmAcknowledged OBJECT-TYPE
    SYNTAX TruthValue
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "Alarm has been acknowledged."
    ::= { activeAlarmEntry 2 }

activeAlarmTableId OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "The alarm table ID."
    ::= { activeAlarmEntry 3 }

activeAlarmSeverity OBJECT-TYPE
    SYNTAX AlarmSeverity
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "The alarm severity."
    ::= { activeAlarmEntry 4 }

activeAlarmLocalDateTime OBJECT-TYPE
    SYNTAX StringMaxl32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "The local date and time when alarm was raised."
    ::= { activeAlarmEntry 5 }

activeAlarmInstance OBJECT-TYPE
    SYNTAX StringMaxl32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "The object instance the alarm is raised against."
    ::= { activeAlarmEntry 6 }

activeAlarmDescription OBJECT-TYPE
    SYNTAX StringMaxl44
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "The alarm description."
    ::= { activeAlarmEntry 7 }

activeAlarmIntermittent OBJECT-TYPE
    SYNTAX TruthValue
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "Alarm condition is intermittent."
    ::= { activeAlarmEntry 8 }

activeAlarmSiteIdentifier OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "An integer to uniquely identify the site where this Waveserver is located."
    ::= { activeAlarmEntry 9 }

activeAlarmGroupIdentifier OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "An integer to uniquely identify a group of Waveservers within a site."
    ::= { activeAlarmEntry 10 }

activeAlarmMemberIdentifier OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "An integer to uniquely identify a Waveserver chassis within a group of Waveservers."
    ::= { activeAlarmEntry 11 }

historyAlarmTable OBJECT-TYPE
    SYNTAX SEQUENCE OF HistoryAlarmEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION "Alarm history"
    ::= { cienaWsPlatformAlarmMIB 4 }

historyAlarmEntry OBJECT-TYPE
    SYNTAX HistoryAlarmEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION "Entry for HistoryAlarmTable."
    INDEX { historyAlarmId }
    ::= { historyAlarmTable 1 }

HistoryAlarmEntry ::= SEQUENCE { 
    historyAlarmId Integer32,
    historyAlarmReason AlarmReason,
    historyAlarmInstanceId Unsigned32,
    historyAlarmTableId Unsigned32,
    historyAlarmSeverity AlarmSeverity,
    historyAlarmLocalDateTime StringMaxl32,
    historyAlarmInstance StringMaxl32,
    historyAlarmDescription StringMaxl44,
    historyAlarmSiteIdentifier Unsigned32,
    historyAlarmGroupIdentifier Unsigned32,
    historyAlarmMemberIdentifier Unsigned32 
}

historyAlarmId OBJECT-TYPE
    SYNTAX Integer32(1..2147483647)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION "The alarm history ID"
    ::= { historyAlarmEntry 1 }

historyAlarmReason OBJECT-TYPE
    SYNTAX AlarmReason
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "The reason for the alarm condition."
    ::= { historyAlarmEntry 2 }

historyAlarmInstanceId OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "The alarm instance ID."
    ::= { historyAlarmEntry 3 }

historyAlarmTableId OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "The alarm table ID."
    ::= { historyAlarmEntry 4 }

historyAlarmSeverity OBJECT-TYPE
    SYNTAX AlarmSeverity
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "The alarm severity."
    ::= { historyAlarmEntry 5 }

historyAlarmLocalDateTime OBJECT-TYPE
    SYNTAX StringMaxl32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "The local date and time when alarm was raised."
    ::= { historyAlarmEntry 6 }

historyAlarmInstance OBJECT-TYPE
    SYNTAX StringMaxl32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "The object instance the alarm is raised against."
    ::= { historyAlarmEntry 7 }

historyAlarmDescription OBJECT-TYPE
    SYNTAX StringMaxl44
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "The alarm description."
    ::= { historyAlarmEntry 8 }

historyAlarmSiteIdentifier OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "An integer to uniquely identify the site where this Waveserver is located."
    ::= { historyAlarmEntry 9 }

historyAlarmGroupIdentifier OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "An integer to uniquely identify a group of Waveservers within a site."
    ::= { historyAlarmEntry 10 }

historyAlarmMemberIdentifier OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "An integer to uniquely identify a Waveserver chassis within a group of Waveservers."
    ::= { historyAlarmEntry 11 }

definedAlarmTable OBJECT-TYPE
    SYNTAX SEQUENCE OF DefinedAlarmEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION "Defined Alarm Table"
    ::= { cienaWsPlatformAlarmMIB 5 }

definedAlarmEntry OBJECT-TYPE
    SYNTAX DefinedAlarmEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION "Entry for AlarmDefinedTable."
    INDEX { definedAlarmId }
    ::= { definedAlarmTable 1 }

DefinedAlarmEntry ::= SEQUENCE { 
    definedAlarmId      Integer32,
    definedAlarmTableId Integer32,
    definedAlarmEnabled TruthValue,
    definedAlarmActive TruthValue,
    definedAlarmThreshold Unsigned32,
    definedAlarmCap Unsigned32,
    definedAlarmSeverity AlarmSeverity,
    definedAlarmInstance StringMaxl16,
    definedAlarmDescription StringMaxl44 
}

definedAlarmId OBJECT-TYPE
    SYNTAX Integer32(1..2147483647)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION "The alarm table ID."
    ::= { definedAlarmEntry 1 }

definedAlarmTableId OBJECT-TYPE
    SYNTAX Integer32(1..2147483647)
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "The alarm table ID."
    ::= { definedAlarmEntry 2 }

definedAlarmEnabled OBJECT-TYPE
    SYNTAX TruthValue
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "Alarm is enabled."
    ::= { definedAlarmEntry 3 }

definedAlarmActive OBJECT-TYPE
    SYNTAX TruthValue
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "Alarm is active."
    ::= { definedAlarmEntry 4 }

definedAlarmThreshold OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "The alarm threshold."
    ::= { definedAlarmEntry 5 }

definedAlarmCap OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "The alarm cap."
    ::= { definedAlarmEntry 6 }

definedAlarmSeverity OBJECT-TYPE
    SYNTAX AlarmSeverity
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "The alarm severity."
    ::= { definedAlarmEntry 7 }

definedAlarmInstance OBJECT-TYPE
    SYNTAX StringMaxl16
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "The object instance the alarm is raised against."
    ::= { definedAlarmEntry 8 }

definedAlarmDescription OBJECT-TYPE
    SYNTAX StringMaxl44
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "The alarm description."
    ::= { definedAlarmEntry 9 }

alarmStatisticsTable OBJECT-TYPE
    SYNTAX SEQUENCE OF AlarmStatisticsEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION "Waveserver Alarm Statistics."
    ::= { cienaWsPlatformAlarmMIB 6 }

alarmStatisticsEntry OBJECT-TYPE
    SYNTAX AlarmStatisticsEntry
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION "Entry for AlarmStatisticsTable."
    INDEX { alarmStatisticsIndex }
    ::= { alarmStatisticsTable 1 }

AlarmStatisticsEntry ::= SEQUENCE { 
    alarmStatisticsIndex Integer32,
    alarmStatisticsActive TruthValue,
    alarmStatisticsDisabled TruthValue,
    alarmStatisticsCount Unsigned32,
    alarmStatisticsCumulative Unsigned32,
    alarmStatisticsType StringMaxl32 
}

alarmStatisticsIndex OBJECT-TYPE
    SYNTAX Integer32(1..2147483647)
    MAX-ACCESS not-accessible
    STATUS current
    DESCRIPTION "The alarm statistics table index."
    ::= { alarmStatisticsEntry 1 }

alarmStatisticsActive OBJECT-TYPE
    SYNTAX TruthValue
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "There is alarm active for the alarm type"
    ::= { alarmStatisticsEntry 2 }

alarmStatisticsDisabled OBJECT-TYPE
    SYNTAX TruthValue
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "There is alarm disabled for the alarm type"
    ::= { alarmStatisticsEntry 3 }

alarmStatisticsCount OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "The count of active alarms for the alarm type"
    ::= { alarmStatisticsEntry 4 }

alarmStatisticsCumulative OBJECT-TYPE
    SYNTAX Unsigned32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "The cumulative count of active alarms for the alarm type "
    ::= { alarmStatisticsEntry 5 }

alarmStatisticsType OBJECT-TYPE
    SYNTAX StringMaxl32
    MAX-ACCESS read-only
    STATUS current
    DESCRIPTION "The alarm type."
    ::= { alarmStatisticsEntry 6 }



-- Conformance statements
cienaWsPlatformAlarmObjects OBJECT IDENTIFIER
    ::= { cienaWsPlatformAlarmMIB 1 }

cienaWsPlatformAlarmConformance OBJECT IDENTIFIER
    ::= { cienaWsPlatformAlarmMIB 2 }

cienaWsPlatformAlarmGroups OBJECT IDENTIFIER
    ::= { cienaWsPlatformAlarmConformance 1 }

cienaWsPlatformAlarmGroup OBJECT-GROUP
    OBJECTS { 
        activeAlarmAcknowledged,
        activeAlarmTableId,
        activeAlarmSeverity,
        activeAlarmLocalDateTime,
        activeAlarmInstance,
        activeAlarmDescription,
	activeAlarmIntermittent,
        activeAlarmSiteIdentifier,
        activeAlarmGroupIdentifier,
        activeAlarmMemberIdentifier,
        historyAlarmReason,
        historyAlarmInstanceId,
        historyAlarmTableId,
        historyAlarmSeverity,
        historyAlarmLocalDateTime,
        historyAlarmInstance,
        historyAlarmDescription,
        historyAlarmSiteIdentifier,
        historyAlarmGroupIdentifier,
        historyAlarmMemberIdentifier,
	definedAlarmTableId,
        definedAlarmEnabled,
        definedAlarmActive,
        definedAlarmThreshold,
        definedAlarmCap,
        definedAlarmSeverity,
        definedAlarmInstance,
        definedAlarmDescription,
        alarmStatisticsActive,
        alarmStatisticsDisabled,
        alarmStatisticsCount,
        alarmStatisticsCumulative,
        alarmStatisticsType
    }
    STATUS current
    DESCRIPTION "Conformance Group"
    ::= { cienaWsPlatformAlarmGroups 1 }

cienaWsPlatformAlarmCompliances OBJECT IDENTIFIER
    ::= { cienaWsPlatformAlarmConformance 2 }

cienaWsPlatformAlarmCompliance MODULE-COMPLIANCE
    STATUS current
    DESCRIPTION "Compliance"
    MODULE MANDATORY-GROUPS { cienaWsPlatformAlarmGroup }
    ::= { cienaWsPlatformAlarmCompliances 1 }

END -- End module