summaryrefslogtreecommitdiff
path: root/MIBS/ddn/SFA-INFO
blob: 39b4247d08b088266f5a58d2f5ada839d6efa107 (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
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
SFA-INFO DEFINITIONS ::= BEGIN

IMPORTS
    OBJECT-TYPE  FROM  RFC-1212
    enterprises  FROM  RFC1155-SMI;


datadirect  OBJECT IDENTIFIER ::= { enterprises 6894 }
unit        OBJECT IDENTIFIER ::= { datadirect 2 }
eventLog    OBJECT IDENTIFIER ::= { unit 10 }

  -- DisplayString: comment out the next line if your MIB compiler complains
  -- that it is already defined.
DisplayString  ::= OCTET STRING  -- containing displayable octets (aka ASCII)

-- temperature indicator

tempNumber OBJECT-TYPE
    SYNTAX INTEGER
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
            "The number of temperature sensors in the system."
    ::= { unit 1 }

tempTable OBJECT-TYPE
    SYNTAX SEQUENCE OF TempEntry
    ACCESS not-accessible
    STATUS mandatory
    DESCRIPTION
            "A list of temperature sensor entries.  The number of
            entries is given by the value of tempNumber."
    ::= { unit 2 }

tempEntry OBJECT-TYPE
    SYNTAX TempEntry
    ACCESS not-accessible
    STATUS mandatory
    DESCRIPTION
            "A temp entry containing temperature sensor status."
    INDEX { tempIndex }
    ::= { tempTable 1 }

TempEntry ::=
    SEQUENCE {
              tempIndex  INTEGER,
              tempEncId  OCTET STRING (SIZE(0..16)),
              tempEncPos INTEGER,
              tempStatus INTEGER
             }

tempIndex OBJECT-TYPE
    SYNTAX INTEGER
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "A unique value for each temperature sensor.  Its value 
        ranges between 1 and the value of tempNumber."
    ::= { tempEntry 1 }

tempEncId OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE(0..16))
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "A unique value displaying the enclosure ID number of the
         temperature sensor."
    ::= { tempEntry 2 }

tempEncPos OBJECT-TYPE
    SYNTAX INTEGER
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "A unique value displaying the position number of the
         temperature sensor."
    ::= { tempEntry 3 }

tempStatus   OBJECT-TYPE
    SYNTAX INTEGER {
                    normal (1),
                    warning (2),
                    critical (3)
                   }
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
         "The current temperature status of the unit."
    ::= { tempEntry 4 }       



-- fan indicators

fanNumber OBJECT-TYPE
    SYNTAX INTEGER
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
            "The number of fans in the system."
    ::= { unit 3 }

fanTable OBJECT-TYPE
    SYNTAX SEQUENCE OF FanEntry
    ACCESS not-accessible
    STATUS mandatory
    DESCRIPTION
            "A list of fan entries.  The number of
            entries is given by the value of fanNumber."
    ::= { unit 4 }

fanEntry OBJECT-TYPE
    SYNTAX FanEntry
    ACCESS not-accessible
    STATUS mandatory
    DESCRIPTION
            "A fan entry containing fan status."
    INDEX { fanIndex }
    ::= { fanTable 1 }

FanEntry ::=
    SEQUENCE {
              fanIndex   INTEGER,
              fanEncId   OCTET STRING (SIZE(0..16)),
              fanEncPos  INTEGER,
              fanStatus  INTEGER
             }

fanIndex OBJECT-TYPE
    SYNTAX INTEGER
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "A unique value for each fan.  Its value 
        ranges between 1 and the value of fanNumber."
    ::= { fanEntry 1 }

fanEncId OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE(0..16))
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "A unique value displaying the enclosure ID number of the
         fan."
    ::= { fanEntry 2 }

fanEncPos OBJECT-TYPE
    SYNTAX INTEGER
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "A unique value displaying the position number of the
         fan."
    ::= { fanEntry 3 }

fanStatus   OBJECT-TYPE
    SYNTAX INTEGER {
                    healthy (1),
                    failure (2)
                   }
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
         "The current fan status of the unit."
    ::= { fanEntry 4 }       



-- power indicators

powerNumber OBJECT-TYPE
    SYNTAX INTEGER
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
            "The number of power supplies in the system."
    ::= { unit 5 }

powerTable OBJECT-TYPE
    SYNTAX SEQUENCE OF PowerEntry
    ACCESS not-accessible
    STATUS mandatory
    DESCRIPTION
            "A list of power supply entries.  The number of
            entries is given by the value of powerNumber."
    ::= { unit 6 }

powerEntry OBJECT-TYPE
    SYNTAX PowerEntry
    ACCESS not-accessible
    STATUS mandatory
    DESCRIPTION
            "A power entry containing power supply status."
    INDEX { powerIndex }
    ::= { powerTable 1 }

PowerEntry ::=
    SEQUENCE {
              powerIndex  INTEGER,
              powerEncId  OCTET STRING (SIZE(0..16)),
              powerEncPos INTEGER,
              powerStatus INTEGER
             }

powerIndex OBJECT-TYPE
    SYNTAX INTEGER
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "A unique value for each power supply.  Its value 
        ranges between 1 and the value of powerNumber."
    ::= { powerEntry 1 }

powerEncId OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE(0..16))
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "A unique value displaying the enclosure ID number of the
         power supply."
    ::= { powerEntry 2 }

powerEncPos OBJECT-TYPE
    SYNTAX INTEGER
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "A unique value displaying the position number of the
         power supply."
    ::= { powerEntry 3 }

powerStatus   OBJECT-TYPE
    SYNTAX INTEGER {
                    healthy (1),
                    failure (2)
                   }
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
         "The current power supply status of the unit."
    ::= { powerEntry 4 }       


-- pool status indicators

poolNumber OBJECT-TYPE
    SYNTAX INTEGER
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
            "The number of pools in system."
    ::= { unit 7 }

poolTable OBJECT-TYPE
    SYNTAX SEQUENCE OF PoolEntry
    ACCESS not-accessible
    STATUS mandatory
    DESCRIPTION
            "A list of pool entries.  The number of
            entries is given by the value of poolNumber."
    ::= { unit 8 }

poolEntry OBJECT-TYPE
    SYNTAX PoolEntry
    ACCESS not-accessible
    STATUS mandatory
    DESCRIPTION
            "A pool entry containing a pool's status."
    INDEX { poolIndex }
    ::= { poolTable 1 }

PoolEntry ::=
    SEQUENCE {
              poolIndex    INTEGER,
              poolId       INTEGER,
              poolType     INTEGER,
              poolNumDisks INTEGER
             }

poolIndex OBJECT-TYPE
    SYNTAX INTEGER 
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "A unique value for each pool.  Its value 
        ranges between 1 and the value of poolNumber."
    ::= { poolEntry 1 }

poolId OBJECT-TYPE
    SYNTAX INTEGER
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "An integer which give the pool id as displayed in the OID."
    ::= { poolEntry 2 }

poolType OBJECT-TYPE
    SYNTAX INTEGER {
                    storage (1),
                    spare (2),
                    unassigned (3)
                   }
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
         "The type of pool."
    ::= { poolEntry 3 }       

poolNumDisks OBJECT-TYPE
    SYNTAX INTEGER
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "The number of disks in the corresponding pool."
    ::= { poolEntry 4 }

-- physical disk status indicators
physicalDiskTable OBJECT-TYPE
    SYNTAX SEQUENCE OF PhysicalDiskEntry
    ACCESS not-accessible
    STATUS mandatory
    DESCRIPTION    
        "A list of disk entries.  The number of 
         entries is given by the value of poolNumDisks."
    ::= { unit 9 }

physicalDiskEntry OBJECT-TYPE
    SYNTAX PhysicalDiskEntry
    ACCESS not-accessible
    STATUS mandatory
    DESCRIPTION    
         "The information related to a disk's status."
    INDEX { physDiskIndex }
    ::= { physicalDiskTable 1 }

PhysicalDiskEntry ::=
    SEQUENCE {
              physDiskIndex  INTEGER,
              physDiskPoolId INTEGER,
              physDiskId     INTEGER,
              physDiskWWN    OCTET STRING (SIZE(0..16)),
              physDiskEnc    OCTET STRING (SIZE(0..16)),
              physDiskSlot   INTEGER,
              physDiskState  INTEGER
             }

physDiskIndex OBJECT-TYPE
    SYNTAX INTEGER
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "A unique value for each physical disk within a pool."
    ::= { physicalDiskEntry 1 }

physDiskPoolId OBJECT-TYPE
    SYNTAX INTEGER
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "An integer which give the pool id as displayed in the OID."
    ::= { physicalDiskEntry 2 }

physDiskId OBJECT-TYPE
    SYNTAX INTEGER
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
         "An integer which give the physical disk id as displayed in the OID."
    ::= { physicalDiskEntry 3 }

physDiskWWN OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE(0..16))
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
         "A string which gives the WWN of the physical disk."
    ::= { physicalDiskEntry 4 }

physDiskEnc OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE(0..16))
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
         "A string which gives the physical disk enclosure number."
    ::= { physicalDiskEntry 5 }

physDiskSlot OBJECT-TYPE
    SYNTAX INTEGER
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
            "An integer which give the physical disk position number."
    ::= { physicalDiskEntry 6 }

physDiskState OBJECT-TYPE
    SYNTAX INTEGER {
                    normal (1),
                    failed (2),
                    predictedfailure (3),
                    unknown (4)
                   }
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "An integer which gives the state of a physical disk."
    ::= { physicalDiskEntry 7 }

-- other Information
systemName OBJECT-TYPE
    SYNTAX OCTET STRING (SIZE(0..31))
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION    
        "The name that has been assigned to the system." 
    ::= { unit 30 }


-- trap log indicators


  -- #######################################################################
  --
  -- Event Group - to map the errLog
  --
  -- NOTE
  -- Logically, eventLogTable is separate from the error log since it is
  -- essentially a view of the error log within a particular time window.
  -- The syntax chosen for the log levels is matched with the syslog
  -- severities from RFC3164 except noting that none is zero instead of
  -- emergency being zero.
  --
  -- #######################################################################
 
  eventLogTrapLevel      OBJECT-TYPE
        SYNTAX          INTEGER {
                                 none          (0),
                                 emergency     (1),
                                 alert         (2),
                                 critical      (3),
                                 error         (4),
                                 warning       (5),
                                 notice        (6),
                                 informational (7),
                                 debug         (8)
                                }
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION     "This object specifies the eventLogTrap level in
                         conjunction with an event's severity level. When an event
                         occurs and if its severity level is at or below the value
                         specified by this object instance, the agent will send
                         the associated eventLogTrap to configured recipients."
  ::= { eventLog 1 }
  
  eventLogNumEntries     OBJECT-TYPE
        SYNTAX          INTEGER (0..30)
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION     "The number of entries in the Event Table."
  ::= { eventLog 2 }
 
  eventLogTable          OBJECT-TYPE
        SYNTAX          SEQUENCE OF UnitEventEntry
        ACCESS          not-accessible
        STATUS          mandatory
        DESCRIPTION     "The table of event entries."
  ::= { eventLog 3 }
 
  eventLogEntry          OBJECT-TYPE
        SYNTAX          UnitEventEntry
        ACCESS          not-accessible
        STATUS          mandatory
        DESCRIPTION     "An entry of the event table."
        INDEX           { eventLogIndex }
 
  ::= { eventLogTable 1 }
 
  UnitEventEntry  ::= SEQUENCE {
                              eventLogIndex       INTEGER,
                              eventLogLevel       INTEGER,
                              eventLogDescr       DisplayString
                               }

  eventLogIndex          OBJECT-TYPE
        SYNTAX          INTEGER (1..30)
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION     "This object identifies the event entry."
  ::= { eventLogEntry 1 }
 
  eventLogLevel          OBJECT-TYPE
        SYNTAX          INTEGER {
                                 none          (0),
                                 emergency     (1),
                                 alert         (2),
                                 critical      (3),
                                 error         (4),
                                 warning       (5),
                                 notice        (6),
                                 informational (7),
                                 debug         (8)
                                }
        ACCESS          read-only
        STATUS          mandatory
        DESCRIPTION     "This object identifies the severity level of this
        event entry."
  ::= { eventLogEntry 2 }
 
  eventLogDescr          OBJECT-TYPE
        SYNTAX          DisplayString
        ACCESS          read-only
        STATUS          mandatory
         DESCRIPTION     "This object identifies the textual description of
                          the event."
  ::= { eventLogEntry 3 }
 
  --
  -- End of 6620 Event Group
  --


END