summaryrefslogtreecommitdiff
path: root/MIBS/calix/AXOS-ALARM-MIB
blob: 4477863b5357063e0b5c3559ab462bf03d1e7eae (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
AXOS-ALARM-MIB DEFINITIONS ::= BEGIN

IMPORTS
    NOTIFICATION-TYPE, MODULE-IDENTITY, OBJECT-TYPE, Integer32
        FROM SNMPv2-SMI
    DisplayString
	    FROM SNMPv2-TC
    axosModules
        FROM CALIX-PRODUCT-MIB;

    axosAlarmModule MODULE-IDENTITY
        LAST-UPDATED "201604250000Z"
        ORGANIZATION "Calix"
        CONTACT-INFO
            "       Calix Networks, Inc.

	    Postal: 1035 North McDowell Boulevard
	            Petaluma, CA  94954-1173
		    USA

	     Phone: +1 707 766 3000
	       Fax: +1 707 766 3100

	    E-mail: mib-info@calix.com"
        DESCRIPTION
            "Describes active alarm table for Calix Axos
             based products"
        REVISION "201604250000Z"
        DESCRIPTION
            "Initial revision"
    ::= { axosModules 2 }

    axosAlarm           OBJECT IDENTIFIER ::= {axosAlarmModule 1}
    axosActiveAlarms    OBJECT IDENTIFIER ::= {axosAlarm 1}
    axosEventAttributes OBJECT IDENTIFIER ::= {axosAlarm 3}

--Alarm Table

axosAlarmTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF AxosAlarmEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION "This table holds all the active alarms"
    ::= { axosActiveAlarms 1 }
     
axosAlarmEntry OBJECT-TYPE
    SYNTAX      AxosAlarmEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION "List of attributes regarding alarm table"
    INDEX { axosIndex }
    ::= { axosAlarmTable 1 }

AxosAlarmEntry ::= SEQUENCE {
    axosIndex                 Integer32,
    axosAlarmIndex            Integer32,
    axosAlarmName             DisplayString,
    axosAlarmType             INTEGER,
    axosAlarmCategory         INTEGER,
    axosAlarmInstanceId       DisplayString,
    axosAlarmSeverity         INTEGER,
    axosAlarmServiceAffecting INTEGER,
    axosAlarmAddress          DisplayString,
    axosAlarmText             DisplayString,
    axosAlarmTimeStamp        DisplayString,
    axosAlarmTime             Integer32,
    axosAlarmAdditionalInfo   DisplayString
    }
 
axosAlarmIndex OBJECT-TYPE
    SYNTAX      Integer32 (0..2147483647)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Alarm index from device sequence number"
    ::= { axosAlarmEntry 1 }

axosAlarmName OBJECT-TYPE
    SYNTAX      DisplayString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Unique name for this alarm. This should match the
                Netconf/Yang notification type."
    ::= { axosAlarmEntry 2 }

axosAlarmType OBJECT-TYPE
    SYNTAX      INTEGER {
                       communication(0),
                       qos(1),
                       processing-error(2),
                       equipment(3),
                       environmental(4),
                       operational-violation(5),
                       integrity-violation(6),
                       informational(7)
                   }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "ITU Event type."
    ::= { axosAlarmEntry 3 }

axosAlarmCategory OBJECT-TYPE
    SYNTAX      INTEGER {
                        general(0),
                        security(1), 
                        dbchange(2),
                        qos(3),
                        environmental(4),
                        tca(5),
                        ntp(6),
                        oam(7),
                        erps(8),
                        g8032(9),
                        rstp(10),
                        port(11),
                        lag(12),
                        lacp(13),
                        arc(14),
                        dhcp(15),
                        ntwkclk(16),
                        pm(17),
                        configuration(18),
                        isis(19),
                        ospf(20),
                        bgp(21),
                        pon(22),
                        bondedgroup(23),
                        cardimgmgmt(24),
                        ontimgmgmt(25),
                        slot(26),
                        subscriber(27),
                        mpls(28),
                        l2vpn(29),
                        aeont(30),
                        bfd(31),
                        vrrp(32),
                        pim(33),
                        connection(34),
                        mfib(35)
                    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Category of the alarm"
    ::= { axosAlarmEntry 4 }

axosAlarmInstanceId OBJECT-TYPE
    SYNTAX      DisplayString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Non-volatile instance id for this alarm"
    ::= { axosAlarmEntry 5 }

axosAlarmSeverity OBJECT-TYPE
    SYNTAX      INTEGER {
                    critical(0),
                    major(1),
                    minor(2),
                    warning(3),
                    unknown(4),
                    info(5), -- shouldn't be in active alarm list
                    clear(6),-- shouldn't be in active alarm list
                    none(7)  -- shouldn't be in active alarm list
                    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Severity of the alarm"
    ::= { axosAlarmEntry 6 }

axosAlarmServiceAffecting OBJECT-TYPE
    SYNTAX      INTEGER {
                    yes(1),
                    no(2)
                    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Indicated the nature of the alarm i.e. service
                 affecting or not"
    ::= { axosAlarmEntry 7 }
 
axosAlarmAddress OBJECT-TYPE
    SYNTAX      DisplayString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "This is the entity that the alarm is raised
                 against. e.g. a port identifier"
    ::= { axosAlarmEntry 8 }

axosAlarmText OBJECT-TYPE
   SYNTAX      DisplayString
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION "Alarm description"
   ::= { axosAlarmEntry 9 } 

axosAlarmTimeStamp OBJECT-TYPE
    SYNTAX      DisplayString(SIZE (1..50))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Timestamp indicating the set/clear time of the
                alarm"
    ::= { axosAlarmEntry 10 }

axosAlarmTime OBJECT-TYPE
   SYNTAX      Integer32
   MAX-ACCESS  read-only
   STATUS      current
   DESCRIPTION "UTC time - this provides a UNIX Epoch fomat of the axosAlarmTimeStamp adjusted for UTC."
   ::= { axosAlarmEntry 11 } 

axosAlarmAdditionalInfo OBJECT-TYPE
    SYNTAX      DisplayString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Any additional info relevnat to this alarm may
                be provided here"
    ::= { axosAlarmEntry 12 }
 
axosIndex OBJECT-TYPE
    SYNTAX      Integer32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Index for this alarm in this table"
    ::= { axosAlarmEntry 13 }


--Alarm Severity Count Group

axosAlarmCount      OBJECT IDENTIFIER ::= {axosActiveAlarms 2}

axosAlarmCountTotal OBJECT-TYPE
    SYNTAX      Integer32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The count of all active alarms"
    ::= { axosAlarmCount 1 }

axosAlarmCountCritical OBJECT-TYPE
    SYNTAX      Integer32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The count of critical alarms"
    ::= { axosAlarmCount 2 }

axosAlarmCountMajor OBJECT-TYPE
    SYNTAX      Integer32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The count of major alarms"
    ::= { axosAlarmCount 3 }

axosAlarmCountMinor OBJECT-TYPE
    SYNTAX      Integer32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The count of minor alarms"
    ::= { axosAlarmCount 4 }

axosAlarmCountWarning OBJECT-TYPE
    SYNTAX      Integer32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The count of warning alarms (reported conditions)"
    ::= { axosAlarmCount 5 }

axosAlarmCountInfo OBJECT-TYPE
    SYNTAX      Integer32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "The count of info alarms (unreported conditions)"
    ::= { axosAlarmCount 6 }

-- Event attributes group

axosEventAdditionalInfo1 OBJECT-TYPE
    SYNTAX      DisplayString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Generic Display string to be used to pass event info"
    ::= { axosEventAttributes 1 }

axosEventAdditionalInfo2 OBJECT-TYPE
    SYNTAX      DisplayString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Generic Display string to be used to pass event info"
    ::= { axosEventAttributes 2 }

axosEventAdditionalInfo3 OBJECT-TYPE
    SYNTAX      DisplayString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Generic Display string to be used to pass event info"
    ::= { axosEventAttributes 3 }

axosEventAdditionalInfo4 OBJECT-TYPE
    SYNTAX      DisplayString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Generic Display string to be used to pass event info"
    ::= { axosEventAttributes 4 }

axosEventAdditionalInfo5 OBJECT-TYPE
    SYNTAX      DisplayString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Generic Display string to be used to pass event info"
    ::= { axosEventAttributes 5 }

axosEventAdditionalInfo6 OBJECT-TYPE
    SYNTAX      DisplayString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Generic Display string to be used to pass event info"
    ::= { axosEventAttributes 6 }

axosEventAdditionalInfo7 OBJECT-TYPE
    SYNTAX      DisplayString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION "Generic Display string to be used to pass event info"
    ::= { axosEventAttributes 7 }

END