summaryrefslogtreecommitdiff
path: root/MIBS/wisi/WISI-GTSENSORS-MIB
blob: 4ec52099185b05884a28638d05446c2520615942 (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
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

WISI-GTSENSORS-MIB DEFINITIONS ::= BEGIN
--============================================================================--

IMPORTS
	MODULE-COMPLIANCE, NOTIFICATION-GROUP, OBJECT-GROUP
		FROM SNMPv2-CONF

	MODULE-IDENTITY, NOTIFICATION-TYPE, OBJECT-TYPE,
	Counter32, Integer32, Unsigned32
		FROM SNMPv2-SMI

	DisplayString
		FROM SNMPv2-TC

	gtModule
		FROM WISI-GTMODULES-MIB

	gtUnit
		FROM WISI-TANGRAM-MIB;

--------------------------------------------------------------------------------

gtSensorsMIB MODULE-IDENTITY
	LAST-UPDATED "201609080000Z"
	ORGANIZATION "WISI Communications GmbH & Co. KG"
	CONTACT-INFO
		"https://wisiconnect.tv/"
	DESCRIPTION
		"This MIB module represents the various sensors that are
		installed in a system or standalone unit, such as temperature
		sensors, power supply voltage/current measurements and fan RPM
		sensors."

	REVISION "201609080000Z"
	DESCRIPTION
		"Made the fan control object read-only. Update contact
		information and module description."
	REVISION "201307011400Z"
	DESCRIPTION
		"Trap for PSU failure added."
	REVISION "201306271400Z"
	DESCRIPTION
		"Descriptions added."
	REVISION "201306261400Z"
	DESCRIPTION
		"Clear Traps added."
	REVISION "201212121320Z"
	DESCRIPTION
		"Updated contact details."
	REVISION "201112151200Z"
	DESCRIPTION
		"Initial version."
::= { gtUnit 3 }

--------------------------------------------------------------------------------

gtSensorsNotifications OBJECT IDENTIFIER ::= { gtSensorsMIB 0 }
gtSensorsObjects OBJECT IDENTIFIER ::= { gtSensorsMIB 1 }
gtSensorsConformance OBJECT IDENTIFIER ::= { gtSensorsMIB 2 }
gtSensorsCompliances OBJECT IDENTIFIER ::= { gtSensorsConformance 1 }
gtSensorsGroups OBJECT IDENTIFIER ::= { gtSensorsConformance 2 }

--============================================================================--

gtSensorsNotifyFanPlugin NOTIFICATION-TYPE
    STATUS  current
    DESCRIPTION
	    "The gtSensorsNotifyFanPlugin notification indicates that
	    a new fan unit has been plugged-in."
::= { gtSensorsNotifications 1 }

gtSensorsNotifyFanPlugout NOTIFICATION-TYPE
    STATUS  current
    DESCRIPTION
	    "The gtSensorsNotifyFanPlugout notification indicates that
	    a fan unit has been plugged-out."
::= { gtSensorsNotifications 2 }

gtSensorsNotifyPSUPlugin NOTIFICATION-TYPE
    STATUS  current
    DESCRIPTION
	    "The gtSensorsNotifyPSUPlugin notification indicates that
	    a new PSU (Power Supply Unit) has been plugged-in."
::= { gtSensorsNotifications 3 }

gtSensorsNotifyPSUPlugout NOTIFICATION-TYPE
    STATUS  current
    DESCRIPTION
	    "The gtSensorsNotifyPSUPlugout notification indicates that
	    a PSU (Power Supply Unit) has been plugged-out."
::= { gtSensorsNotifications 4 }

gtSensorsNotifyTemperature NOTIFICATION-TYPE
    STATUS  current
    DESCRIPTION
	    "The gtSensorsNotifyTemperature notification indicates that
	    temperature on GT11 board is above upper limit."
::= { gtSensorsNotifications 5 }

gtSensorsNotifyFanSpeed NOTIFICATION-TYPE
    STATUS  current
    DESCRIPTION
	    "The gtSensorsNotifyFanSpeed notification indicates that
	    at least one of the fans RPM on fanbay is below lower limit."
::= { gtSensorsNotifications 6 }

gtSensorsNotifyPSUCurrent NOTIFICATION-TYPE
    STATUS  current
    DESCRIPTION
	    "The gtSensorsNotifyPSUCurrent notification indicates that
	    a PSU (Power Supply Unit) output current is out of range limit."
::= { gtSensorsNotifications 7 }

gtSensorsNotifyPSUVoltage NOTIFICATION-TYPE
    STATUS  current
    DESCRIPTION
	    "The gtSensorsNotifyPSUVoltage notification indicates that
	    a PSU (Power Supply Unit) output voltage is out of range limit."
::= { gtSensorsNotifications 8 }

gtSensorsNotifyPSUTemperature NOTIFICATION-TYPE
    STATUS  current
    DESCRIPTION
	    "The gtSensorsNotifyPSUTemperature notification indicates that
	    a PSU (Power Supply Unit) temperature is above upper limit."
::= { gtSensorsNotifications 9 }

gtSensorsNotifyPSUTemperatureClear NOTIFICATION-TYPE
    STATUS  current
    DESCRIPTION
	    "The gtSensorsNotifyPSUTempHighClear notification indicates that
	    a PSU (Power Supply Unit) temperature has decreased below upper limit."
::= { gtSensorsNotifications 10 }


gtSensorsNotifyBOARDTemperatureClear NOTIFICATION-TYPE
    STATUS  current
    DESCRIPTION
	    "The gtSensorsNotifyBOARDTempHighClear notification indicates that
	    temperature on GT11 board has decreased below upper limit"
::= { gtSensorsNotifications 11 }


gtSensorsNotifyPSUFailure NOTIFICATION-TYPE
    STATUS  current
    DESCRIPTION
	    "The gtSensorsNotifyPSUFailure notification indicates that
	    a PSU (Power Supply Unit) internal voltage dropped below limit."
::= { gtSensorsNotifications 12 }


gtSensorsNotifyPSUFailureClear NOTIFICATION-TYPE
    STATUS  current
    DESCRIPTION
	    "The gtSensorsNotifyPSUFailureClear notification indicates that
	    a PSU (Power Supply Unit) internal voltage has increased above lower limit."
::= { gtSensorsNotifications 13 }


--============================================================================--

gtNumTemps OBJECT-TYPE
	SYNTAX Unsigned32 (0..255)
	MAX-ACCESS read-only
	STATUS current
	DESCRIPTION
		"The gtNumTemps entity represents the number of
		temperature sensors within the GT01/GN50 rack unit.
		The related entries are provided by gtTempsTable."
::= { gtSensorsObjects 1 }

--------------------------------------------------------------------------------

gtTempsTable OBJECT-TYPE
	SYNTAX SEQUENCE OF GtTempsEntry
	MAX-ACCESS not-accessible
	STATUS current
	DESCRIPTION
		"The gtTempsTable table contains a list of all
		temperature sensors within the GT01/GN50 rack unit.
		The number of entries is provided by gtNumTemps."
::= { gtSensorsObjects 2 }

gtTempsEntry OBJECT-TYPE
	SYNTAX GtTempsEntry
	MAX-ACCESS not-accessible
	STATUS current
	DESCRIPTION
		"The gtTempsEntry table entry represents a
		temperature sensors within the GT01/GN50 rack unit.
		The number of entries is provided by gtNumTemps."
	INDEX {
		gtModule,
		gtTemp
	}
::= { gtTempsTable 1 }

GtTempsEntry ::= SEQUENCE {
	gtTemp Unsigned32,
	gtTempName DisplayString,
	gtTempValue Integer32
}

gtTemp OBJECT-TYPE
	SYNTAX Unsigned32 (1..15)
	MAX-ACCESS not-accessible
	STATUS current
	DESCRIPTION
		"The gtTemp entity represents the numeric index of a
		temperature sensors within the GT01/GN50 rack unit."
::= { gtTempsEntry 1 }

gtTempName OBJECT-TYPE
	SYNTAX DisplayString (SIZE (16))
	MAX-ACCESS read-only
	STATUS current
	DESCRIPTION
		"The gtTempName entity represents the symbolic name of a
		temperature sensors within the GT01/GN50 rack unit."
::= { gtTempsEntry 2 }

gtTempValue OBJECT-TYPE
	SYNTAX Integer32 (-60..195)
	UNITS "'C"
	MAX-ACCESS read-only
	STATUS current
	DESCRIPTION
		"The gtTempValue entity represents the measured value of a
		temperature sensors within the GT01/GN50 rack unit."
::= { gtTempsEntry 3 }

--------------------------------------------------------------------------------

gtNumFans OBJECT-TYPE
	SYNTAX Unsigned32 (0..255)
	MAX-ACCESS read-only
	STATUS current
	DESCRIPTION
		"The gtNumFans entity represents the number of
		cooling fans within the GT01/GN50 rack unit.
		The related entries are provided by gtFansTable."
::= { gtSensorsObjects 3 }

--------------------------------------------------------------------------------

gtFansTable OBJECT-TYPE
	SYNTAX SEQUENCE OF GtFansEntry
	MAX-ACCESS not-accessible
	STATUS current
	DESCRIPTION
		"The gtFansTable table contains a list of all
		cooling fans within the GT01/GN50 rack unit.
		The number of entries is provided by gtNumFans."
::= { gtSensorsObjects 4 }

gtFansEntry OBJECT-TYPE
	SYNTAX GtFansEntry
	MAX-ACCESS not-accessible
	STATUS current
	DESCRIPTION
		"The gtFansEntry table entry represents an
		cooling fan within the GT01/GN50 rack unit.
		The number of entries is provided by gtNumFans."
	INDEX {
		gtFan
	}
::= { gtFansTable 1 }

GtFansEntry ::= SEQUENCE {
	gtFan Unsigned32,
	gtFanName DisplayString,
	gtFanControl Unsigned32,
	gtFanSpeed Unsigned32,
	gtFanUptime Counter32,
	gtFanLifetime Counter32
}

gtFan OBJECT-TYPE
	SYNTAX Unsigned32 (1..15)
	MAX-ACCESS not-accessible
	STATUS current
	DESCRIPTION
		"The gtFan entity represents the numeric index
		of a cooling fan within the GT01/GN50 rack unit."
::= { gtFansEntry 1 }

gtFanName OBJECT-TYPE
	SYNTAX DisplayString (SIZE (16))
	MAX-ACCESS read-only
	STATUS current
	DESCRIPTION
		"The gtFanName entity represents the symbolic name
		of a cooling fan within the GT01/GN50 rack unit."
::= { gtFansEntry 2 }

gtFanControl OBJECT-TYPE
	SYNTAX Unsigned32 (0..15000)
	UNITS "rpm"
	MAX-ACCESS read-only
	STATUS current
	DESCRIPTION
		"The gtFanControl entity represents the RPM setting
		of a cooling fan within the GT01/GN50 rack unit."
::= { gtFansEntry 3 }

gtFanSpeed OBJECT-TYPE
	SYNTAX Unsigned32 (0..15000)
	UNITS "rpm"
	MAX-ACCESS read-only
	STATUS current
	DESCRIPTION
		"The gtFanSpeed entity represents the revolutions per minute
		of a cooling fan within the GT01/GN50 rack unit."
::= { gtFansEntry 4 }

gtFanUptime OBJECT-TYPE
	SYNTAX Counter32
	UNITS "s"
	MAX-ACCESS read-only
	STATUS current
	DESCRIPTION
		"The gtFanUptime entity represents the current uptime
		of a cooling fan within the GT01/GN50 rack unit."
::= { gtFansEntry 5 }

gtFanLifetime OBJECT-TYPE
	SYNTAX Counter32
	UNITS "s"
	MAX-ACCESS read-only
	STATUS current
	DESCRIPTION
		"The gtFanLifetime entity represents the accumulated lifetime
		of a cooling fan within the GT01/GN50 rack unit."
::= { gtFansEntry 6 }

--------------------------------------------------------------------------------

gtNumPSUs OBJECT-TYPE
	SYNTAX Unsigned32 (0..255)
	MAX-ACCESS read-only
	STATUS current
	DESCRIPTION
		"The gtNumPSUs entity represents the number of
		power supply units within the GT01/GN50 rack unit.
		The related entries are provided by gtPSUsTable."
::= { gtSensorsObjects 5 }

--------------------------------------------------------------------------------

gtPSUsTable OBJECT-TYPE
    SYNTAX SEQUENCE OF GtPSUsEntry
	MAX-ACCESS not-accessible
	STATUS current
	DESCRIPTION
		"The gtPSUsTable table contains a list of all
		power supply units within the GT01/GN50 rack unit.
		The number of entries is provided by gtNumPSUs."
::= { gtSensorsObjects 6 }

gtPSUsEntry OBJECT-TYPE
	SYNTAX GtPSUsEntry
	MAX-ACCESS not-accessible
	STATUS current
	DESCRIPTION
		"The gtPSUsEntry table entry represents a
		power supply unit within the GT01/GN50 rack unit.
		The number of entries is provided by gtNumPSUs."
	INDEX {
		gtPSU
	}
::= { gtPSUsTable 1 }

GtPSUsEntry ::= SEQUENCE {
	gtPSU Unsigned32,
	gtPSUName DisplayString,
	gtPSUPower Unsigned32,
	gtPSUCurrent Unsigned32,
	gtPSUVoltageInt Unsigned32,
	gtPSUVoltageOR Unsigned32,
	gtPSUVoltageExt Unsigned32,
	gtPSUTemperature Integer32
}

gtPSU OBJECT-TYPE
	SYNTAX Unsigned32 (1..15)
	MAX-ACCESS not-accessible
	STATUS current
	DESCRIPTION
		"The gtPSU entity represents the numeric index
		of a power supply unit within the GT01/GN50 rack unit."
::= { gtPSUsEntry 1 }

gtPSUName OBJECT-TYPE
	SYNTAX DisplayString (SIZE (16))
	MAX-ACCESS read-only
	STATUS current
	DESCRIPTION
		"The gtPSUName entity represents the symbolic name
		of a power supply unit within the GT01/GN50 rack unit."
::= { gtPSUsEntry 2 }

gtPSUPower OBJECT-TYPE
	SYNTAX Unsigned32 (0..300000)
	UNITS "mW"
	MAX-ACCESS read-only
	STATUS current
	DESCRIPTION
		"The gtPSUPower entity represents the maximum output
		of a power supply unit within the GT01/GN50 rack unit."
::= { gtPSUsEntry 3 }

gtPSUCurrent OBJECT-TYPE
	SYNTAX Unsigned32 (0..25000)
	UNITS "mA"
	MAX-ACCESS read-only
	STATUS current
	DESCRIPTION
		"The gtPSUCurrent entity represents the output current
		of a power supply unit within the GT01/GN50 rack unit."
::= { gtPSUsEntry 4 }

gtPSUVoltageInt OBJECT-TYPE
	SYNTAX Unsigned32 (0..16000)
	UNITS "mV"
	MAX-ACCESS read-only
	STATUS current
	DESCRIPTION
		"The gtPSUVoltageInt entity represents the internal voltage
		of a power supply unit within the GT01/GN50 rack unit."
::= { gtPSUsEntry 5 }

gtPSUVoltageOR OBJECT-TYPE
	SYNTAX Unsigned32 (0..16000)
	UNITS "mV"
	MAX-ACCESS read-only
	STATUS current
	DESCRIPTION
		"The gtPSUVoltageOR entity represents the OR voltage drop
		of a power supply unit within the GT01/GN50 rack unit."
::= { gtPSUsEntry 6 }

gtPSUVoltageExt OBJECT-TYPE
	SYNTAX Unsigned32 (0..16000)
	UNITS "mV"
	MAX-ACCESS read-only
	STATUS current
	DESCRIPTION
		"The gtPSUVoltageExt entity represents the external voltage
		of a power supply unit within the GT01/GN50 rack unit."
::= { gtPSUsEntry 7 }

gtPSUTemperature OBJECT-TYPE
	SYNTAX Integer32 (-60..195)
	UNITS "'C"
	MAX-ACCESS read-only
	STATUS current
	DESCRIPTION
		"The gtPSUTemperature entity represents the temperature 
		of a power supply unit within the GT01/GN50 rack unit."
::= { gtPSUsEntry 8 }

--============================================================================--

gtSensorsMIBCompliance MODULE-COMPLIANCE
	STATUS current
	DESCRIPTION
		"The compliance statement for GTSENSORSv2 entities
		which implement the GTSENSORSv2 MIB."
	MODULE
	MANDATORY-GROUPS {
		gtSensorsV1Group,
		gtSensorsSystemGroup,
		gtSensorsStatsGroup,
		gtSensorsTrapGroup,
		gtSensorsSetGroup,
		gtSensorsBasicNotificationsGroup
	}
::= { gtSensorsCompliances 1 }

--------------------------------------------------------------------------------

gtSensorsV1Group OBJECT-GROUP
	OBJECTS {
		gtTempName,
		gtTempValue,
		gtFanName,
		gtFanControl,
		gtFanSpeed,
		gtPSUName,
		gtPSUPower,
		gtPSUCurrent,
		gtPSUVoltageInt,
		gtPSUVoltageOR,
		gtPSUVoltageExt,
                gtPSUTemperature        
	}
	STATUS current
	DESCRIPTION
		"The gtSensorsV1Group group is mandatory only for those
		GTSENSORSv2 entities which also implement GTSENSORSv1."
::= { gtSensorsGroups 1 }

--------------------------------------------------------------------------------

gtSensorsSystemGroup OBJECT-GROUP
	OBJECTS {
		gtTempName,
		gtTempValue,
		gtFanName,
		gtFanSpeed,
		gtPSUName,
		gtPSUPower,
		gtPSUCurrent,
		gtPSUVoltageInt,
		gtPSUVoltageOR,
		gtPSUVoltageExt,
                gtPSUTemperature
	}
	STATUS current
	DESCRIPTION
		"The gtSensorsSystemGroup group defines GTSENSORSv2 entities
		which are mandatory."
::= { gtSensorsGroups 2 }

--------------------------------------------------------------------------------

gtSensorsStatsGroup OBJECT-GROUP
	OBJECTS {
		gtNumTemps,
		gtNumFans,
		gtFanUptime,
		gtFanLifetime,
		gtNumPSUs
	}
	STATUS current
	DESCRIPTION
		"The gtSensorsStatsGroup group defines GTSENSORSv2 entities
		which provide statistical information."
::= { gtSensorsGroups 3 }

--------------------------------------------------------------------------------

gtSensorsTrapGroup OBJECT-GROUP
	OBJECTS {
		gtTempValue,
		gtFanControl,
		gtFanSpeed,
		gtPSUCurrent,
		gtPSUVoltageInt
	}
	STATUS current
	DESCRIPTION
		"The gtSensorsTrapGroup group defines GTSENSORSv2 trap objects
		which are mandatory."
::= { gtSensorsGroups 4 }

--------------------------------------------------------------------------------

gtSensorsSetGroup OBJECT-GROUP
	OBJECTS {
		gtFanControl
	}
	STATUS current
	DESCRIPTION
		"The gtSensorsSetGroup group defines GTSENSORSv2 entities
		which can be set the manager."
::= { gtSensorsGroups 5 }

--------------------------------------------------------------------------------

gtSensorsBasicNotificationsGroup NOTIFICATION-GROUP
	NOTIFICATIONS {
		gtSensorsNotifyFanPlugin,
		gtSensorsNotifyFanPlugout,
		gtSensorsNotifyPSUPlugin,
		gtSensorsNotifyPSUPlugout,
                gtSensorsNotifyTemperature,
                gtSensorsNotifyFanSpeed,
                gtSensorsNotifyPSUCurrent,
                gtSensorsNotifyPSUVoltage,
                gtSensorsNotifyPSUTemperature
	}
	STATUS current
	DESCRIPTION
		"The gtSensorsBasicNotificationsGroup group defines
		GTSENSORSv2 notification objects which are mandatory."
::= { gtSensorsGroups 6 }

--============================================================================--
END