forked from AlKosmos/Zabbix-Tripp-Lite-PDU-15
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TRIPPLITE-PRODUCTS.MIB
11394 lines (10082 loc) · 367 KB
/
TRIPPLITE-PRODUCTS.MIB
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
-- ------------------------------------------------------
-- TRIPP LITE PRODUCTS MIB
-- Copyright (c) 1999-2018 Tripp Lite
-- All rights reserved
--
-- Revision History:
-- 03/13/2013 Consolidated for PAL v12.06
-- 04/14/2014 Consolidated for PAL v15.00
-- 12/04/2014 Created ATS section
-- 03/19/2015 Created tlpPduHeatsink and tlpAtsHeatsink
-- 04/20/2015 Added tlpAtsConfigVoltageRangeTable
-- 06/08/2015 Added tlpAtsInputBadVoltageThreshold
-- 08/19/2015 Added tlpAtsConfigThresholdTable
-- 10/16/2015 Added tlpAtsConfigSource#ReturnTime
-- 11/10/2015 Refactored tlpUps
-- 11/25/2015 Refactored UPS, PDU and ATS input sections
-- 01/08/2016 Added tlpAtsConfigVoltageRangeLimitsTable
-- 01/20/2016 Added tlpDeviceIdentUptime
-- 01/25/2016 Redefined tlpUpsAlarmLoadLevelAboveThreshold
-- 02/02/2016 Reworked tlpAgentAttributes
-- 03/31/2016 Expanded well known alarms
-- 06/22/2016 Refactored MIB to extend from tripplite.mib
-- 07/11/2016 Expanded tlpNotify for non-alarm notifications
-- 01/17/2017 Changed tlpUpsBatteryDetailCurrent to signed
-- 04/03/2017 Refactored Cooling section
-- 04/19/2017 Refactored tlpAtsConfigVoltageRangeTable
-- 05/23/2017 Added more objects to Cooling section
-- 07/31/2017 Added tlpPduConfigPhaseThresholdTable,tlpAtsConfigPhaseThresholdTable
--- and new alarms to support "Output Current Below Threshold" events
-- 08/30/2017 Updated the description of tlpPduIdentNumBreakers and tlpAtsIdentNumBreakers
-- 09/28/2017 Added tlpCoolingCompressorStatus
-- 11/30/2017 Added tlpAtsOutputFrequency and tlpPduOutputFrequency
-- 01/15/2018 Updated/Corrected some descriptions and typos
-- 03/19/2018 Added tlpCoolingWaterStatus
-- 04/25/2018 Obsoleted tlpAgentSnmpContactPrivPassword and tlpAgentSnmpContactAuthPassword
-- 04/30/2018 Added tlpUpsOutputVARating
-- 05/08/2018 Updated the description of tlpCoolingFanSpeed
-- 05/10/2018 Updated the UNIT definition of tlpUpsDeviceTemperatureF, tlpUpsDeviceTemperatureC,
-- tlpPduInputLowTransferVoltageLowerBound, tlpPduInputLowTransferVoltageUpperBound,
-- tlpPduInputHighTransferVoltageLowerBound and tlpPduInputHighTransferVoltageUpperBound
-- 07/17/2018 Added tlpPduOutputCalculatedPowerKVA, tlpPduOutputCalculatedPowerKW tlpPduOutputCalculated24hrEnergy,
-- tlpAtsOutputCalculatedPowerKVA, tlpAtsOutputCalculatedPowerKW and tlpAtsOutputCalculated24hrEnergy
---------------
TRIPPLITE-PRODUCTS DEFINITIONS ::= BEGIN
IMPORTS
DisplayString,
TruthValue,
TimeStamp,
RowStatus
FROM SNMPv2-TC
sysUpTime
FROM SNMPv2-MIB
OBJECT-GROUP,
NOTIFICATION-GROUP
FROM SNMPv2-CONF
MODULE-IDENTITY,
OBJECT-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE,
Gauge32,
Integer32,
Unsigned32,
enterprises,
IpAddress,
TimeTicks
FROM SNMPv2-SMI
tripplite
FROM TRIPPLITE;
tlpProducts MODULE-IDENTITY
LAST-UPDATED "201807171430Z"
ORGANIZATION "Tripp Lite"
CONTACT-INFO
"Software Engineering
Tripp Lite
1111 W. 35th St.
Chicago, IL 60609"
DESCRIPTION
"This MIB module defines MIB objects which provide mechanisms for
remote management capabilities of Tripp Lite PowerAlert and related
software."
REVISION "201807131430Z"
DESCRIPTION
"Added tlpPduOutputCalculatedPowerKVA, tlpPduOutputCalculatedPowerKW, tlpPduOutputCalculated24hrEnergy,
tlpAtsOutputCalculatedPowerKVA, tlpAtsOutputCalculatedPowerKW and tlpAtsOutputCalculated24hrEnergy"
REVISION "201805101430Z"
DESCRIPTION
"Updated the UNIT definition of tlpUpsDeviceTemperatureF, tlpUpsDeviceTemperatureC,
tlpPduInputLowTransferVoltageLowerBound, tlpPduInputLowTransferVoltageUpperBound,
tlpPduInputHighTransferVoltageLowerBound and tlpPduInputHighTransferVoltageUpperBound"
REVISION "201805081330Z"
DESCRIPTION
"Updated the description of tlpCoolingFanSpeed"
REVISION "201804301530Z"
DESCRIPTION
"Added tlpUpsOutputVARating"
REVISION "201804251330Z"
DESCRIPTION
"Obsoleted tlpAgentSnmpContactPrivPassword and tlpAgentSnmpContactAuthPassword"
REVISION "201803190730Z"
DESCRIPTION
"Added tlpCoolingWaterStatus"
REVISION "201801151130Z"
DESCRIPTION
"Updated/Corrected some descriptions and typos"
REVISION "201712291330Z"
DESCRIPTION
"Updated the output current OIDs description with regards to precision"
REVISION "201711301130Z"
DESCRIPTION
"Added tlpAtsOutputFrequency and tlpPduOutputFrequency"
REVISION "201709290800Z"
DESCRIPTION
"Added tlpCoolingCompressorStatus"
REVISION "201708300900Z"
DESCRIPTION
"Updated the description of tlpPduIdentNumBreakers and tlpAtsIdentNumBreakers"
REVISION "201707310900Z"
DESCRIPTION
"Added tlpPduConfigThresholdTable and new alarms to support Output Current Below Threshold events"
REVISION "201705231423Z"
DESCRIPTION
"Added more objects to Cooling section"
REVISION "201704192230Z"
DESCRIPTION
"Refactored tlpAtsConfigVoltageRangeTable"
REVISION "201704031533Z"
DESCRIPTION
"Refactored Cooling section"
REVISION "201702281600Z"
DESCRIPTION
"Corrected spelling errors."
REVISION "201701171250Z"
DESCRIPTION
"Changed tlpUpsBatteryDetailCurrent to signed with units of 0.01A.
This value was previous not reported by a device using prior units
of 0.1A; therefore, there no conflict exists with this change."
REVISION "201607111215Z"
DESCRIPTION
"Expanded tlpNotify for non-alarm notifications"
REVISION "201606221115Z"
DESCRIPTION
"Refactored MIB to extend from tripplite.mib"
REVISION "201603161210Z"
DESCRIPTION
"Expanded well known alarms"
REVISION "201602021115Z"
DESCRIPTION
"Redefined tlpUpsAlarmLoadLevelAboveThreshold"
REVISION "201601251230Z"
DESCRIPTION
"Redefined Reworked tlpAgentAttributes"
REVISION "201601201200Z"
DESCRIPTION
"Added tlpDeviceIdentUptime"
REVISION "201601081140Z"
DESCRIPTION
"Added tlpAtsConfigVoltageRangeLimitsTable"
REVISION "201511251300Z"
DESCRIPTION
"Refactored UPS, PDU and ATS input sections"
REVISION "201511101300Z"
DESCRIPTION
"Refactored tlpUps"
REVISION "201510161230Z"
DESCRIPTION
"Added tlpAtsConfigSource#ReturnTime"
REVISION "201508191200Z"
DESCRIPTION
"Added tlpAtsConfigThresholdTable"
REVISION "201412041000Z"
DESCRIPTION
"Created ATS device-specific section"
REVISION "201404140900Z"
DESCRIPTION
"Consolidated and Released for PAL v12.07.007x"
::= { tripplite 1 }
-- tlpProducts OBJECT IDENTIFIER ::= { tripplite 1 }
tlpHardware OBJECT IDENTIFIER ::= { tlpProducts 1 }
tlpSoftware OBJECT IDENTIFIER ::= { tlpProducts 2 }
tlpAlarms OBJECT IDENTIFIER ::= { tlpProducts 3 }
tlpNotify OBJECT IDENTIFIER ::= { tlpProducts 4 }
tlpDevice OBJECT IDENTIFIER ::= { tlpHardware 1 }
tlpDeviceDetail OBJECT IDENTIFIER ::= { tlpHardware 2 }
tlpDeviceTypes OBJECT IDENTIFIER ::= { tlpHardware 3 }
tlpUps OBJECT IDENTIFIER ::= { tlpDeviceTypes 1 }
tlpPdu OBJECT IDENTIFIER ::= { tlpDeviceTypes 2 }
tlpEnvirosense OBJECT IDENTIFIER ::= { tlpDeviceTypes 3 }
tlpAts OBJECT IDENTIFIER ::= { tlpDeviceTypes 4 }
tlpCooling OBJECT IDENTIFIER ::= { tlpDeviceTypes 5 }
tlpKvm OBJECT IDENTIFIER ::= { tlpDeviceTypes 6 }
tlpRackTrack OBJECT IDENTIFIER ::= { tlpDeviceTypes 7 }
tlpSwitch OBJECT IDENTIFIER ::= { tlpDeviceTypes 8 }
tlpUpsIdent OBJECT IDENTIFIER ::= { tlpUps 1 }
tlpUpsDevice OBJECT IDENTIFIER ::= { tlpUps 2 }
tlpUpsDetail OBJECT IDENTIFIER ::= { tlpUps 3 }
tlpUpsControl OBJECT IDENTIFIER ::= { tlpUps 4 }
tlpUpsConfig OBJECT IDENTIFIER ::= { tlpUps 5 }
tlpUpsBattery OBJECT IDENTIFIER ::= { tlpUpsDetail 1 }
tlpUpsInput OBJECT IDENTIFIER ::= { tlpUpsDetail 2 }
tlpUpsOutput OBJECT IDENTIFIER ::= { tlpUpsDetail 3 }
tlpUpsBypass OBJECT IDENTIFIER ::= { tlpUpsDetail 4 }
tlpUpsOutlet OBJECT IDENTIFIER ::= { tlpUpsDetail 5 }
tlpUpsWatchdog OBJECT IDENTIFIER ::= { tlpUpsDetail 6 }
tlpPduIdent OBJECT IDENTIFIER ::= { tlpPdu 1 }
tlpPduDevice OBJECT IDENTIFIER ::= { tlpPdu 2 }
tlpPduDetail OBJECT IDENTIFIER ::= { tlpPdu 3 }
tlpPduControl OBJECT IDENTIFIER ::= { tlpPdu 4 }
tlpPduConfig OBJECT IDENTIFIER ::= { tlpPdu 5 }
tlpPduInput OBJECT IDENTIFIER ::= { tlpPduDetail 1 }
tlpPduOutput OBJECT IDENTIFIER ::= { tlpPduDetail 2 }
tlpPduOutlet OBJECT IDENTIFIER ::= { tlpPduDetail 3 }
tlpPduCircuit OBJECT IDENTIFIER ::= { tlpPduDetail 4 }
tlpPduBreaker OBJECT IDENTIFIER ::= { tlpPduDetail 5 }
tlpPduHeatsink OBJECT IDENTIFIER ::= { tlpPduDetail 6 }
tlpEnvIdent OBJECT IDENTIFIER ::= { tlpEnvirosense 1 }
-- tlpEnvDevice OBJECT IDENTIFIER ::= { tlpEnvirosense 2 }
tlpEnvDetail OBJECT IDENTIFIER ::= { tlpEnvirosense 3 }
-- tlpEnvControl OBJECT IDENTIFIER ::= { tlpEnvirosense 4 }
tlpEnvConfig OBJECT IDENTIFIER ::= { tlpEnvirosense 5 }
tlpAtsIdent OBJECT IDENTIFIER ::= { tlpAts 1 }
tlpAtsDevice OBJECT IDENTIFIER ::= { tlpAts 2 }
tlpAtsDetail OBJECT IDENTIFIER ::= { tlpAts 3 }
tlpAtsControl OBJECT IDENTIFIER ::= { tlpAts 4 }
tlpAtsConfig OBJECT IDENTIFIER ::= { tlpAts 5 }
tlpAtsInput OBJECT IDENTIFIER ::= { tlpAtsDetail 1 }
tlpAtsOutput OBJECT IDENTIFIER ::= { tlpAtsDetail 2 }
tlpAtsOutlet OBJECT IDENTIFIER ::= { tlpAtsDetail 3 }
tlpAtsCircuit OBJECT IDENTIFIER ::= { tlpAtsDetail 4 }
tlpAtsBreaker OBJECT IDENTIFIER ::= { tlpAtsDetail 5 }
tlpAtsHeatsink OBJECT IDENTIFIER ::= { tlpAtsDetail 6 }
tlpCoolingIdent OBJECT IDENTIFIER ::= { tlpCooling 1 }
tlpCoolingDevice OBJECT IDENTIFIER ::= { tlpCooling 2 }
tlpCoolingDetail OBJECT IDENTIFIER ::= { tlpCooling 3 }
tlpCoolingControl OBJECT IDENTIFIER ::= { tlpCooling 4 }
tlpCoolingConfig OBJECT IDENTIFIER ::= { tlpCooling 5 }
tlpCoolingTemperature OBJECT IDENTIFIER ::= { tlpCoolingDetail 1 }
tlpCoolingPressure OBJECT IDENTIFIER ::= { tlpCoolingDetail 2 }
tlpKvmIdent OBJECT IDENTIFIER ::= { tlpKvm 1 }
tlpKvmDevice OBJECT IDENTIFIER ::= { tlpKvm 2 }
tlpKvmDetail OBJECT IDENTIFIER ::= { tlpKvm 3 }
tlpKvmControl OBJECT IDENTIFIER ::= { tlpKvm 4 }
tlpKvmConfig OBJECT IDENTIFIER ::= { tlpKvm 5 }
tlpRackTrackIdent OBJECT IDENTIFIER ::= { tlpRackTrack 1 }
tlpRackTrackDevice OBJECT IDENTIFIER ::= { tlpRackTrack 2 }
tlpRackTrackDetail OBJECT IDENTIFIER ::= { tlpRackTrack 3 }
tlpRackTrackControl OBJECT IDENTIFIER ::= { tlpRackTrack 4 }
tlpRackTrackConfig OBJECT IDENTIFIER ::= { tlpRackTrack 5 }
tlpSwitchIdent OBJECT IDENTIFIER ::= { tlpSwitch 1 }
tlpSwitchDevice OBJECT IDENTIFIER ::= { tlpSwitch 2 }
tlpSwitchDetail OBJECT IDENTIFIER ::= { tlpSwitch 3 }
tlpSwitchControl OBJECT IDENTIFIER ::= { tlpSwitch 4 }
tlpSwitchConfig OBJECT IDENTIFIER ::= { tlpSwitch 5 }
tlpAgentDetails OBJECT IDENTIFIER ::= { tlpSoftware 1 }
tlpAgentSettings OBJECT IDENTIFIER ::= { tlpSoftware 2 }
tlpAgentContacts OBJECT IDENTIFIER ::= { tlpSoftware 3 }
tlpAgentIdent OBJECT IDENTIFIER ::= { tlpAgentDetails 1}
tlpAgentAttributes OBJECT IDENTIFIER ::= { tlpAgentDetails 2}
tlpAgentConfig OBJECT IDENTIFIER ::= { tlpAgentSettings 1}
tlpAgentEmailContacts OBJECT IDENTIFIER ::= { tlpAgentContacts 1}
tlpAgentSnmpContacts OBJECT IDENTIFIER ::= { tlpAgentContacts 2}
tlpAlarmsWellKnown OBJECT IDENTIFIER ::= { tlpAlarms 3 }
tlpAlarmControl OBJECT IDENTIFIER ::= { tlpAlarms 4 }
tlpAgentAlarms OBJECT IDENTIFIER ::= { tlpAlarmsWellKnown 1 }
tlpDeviceAlarms OBJECT IDENTIFIER ::= { tlpAlarmsWellKnown 2 }
tlpUpsAlarms OBJECT IDENTIFIER ::= { tlpAlarmsWellKnown 3 }
tlpPduAlarms OBJECT IDENTIFIER ::= { tlpAlarmsWellKnown 4 }
tlpEnvAlarms OBJECT IDENTIFIER ::= { tlpAlarmsWellKnown 5 }
tlpAtsAlarms OBJECT IDENTIFIER ::= { tlpAlarmsWellKnown 6 }
tlpCoolingAlarms OBJECT IDENTIFIER ::= { tlpAlarmsWellKnown 7 }
tlpKvmAlarms OBJECT IDENTIFIER ::= { tlpAlarmsWellKnown 8 }
tlpRackTrackAlarms OBJECT IDENTIFIER ::= { tlpAlarmsWellKnown 9 }
tlpSwitchAlarms OBJECT IDENTIFIER ::= { tlpAlarmsWellKnown 10 }
tlpNotifications OBJECT IDENTIFIER ::= { tlpNotify 1 }
tlpNotificationsEvent OBJECT IDENTIFIER ::= { tlpNotify 2 }
tlpNotificationsEventParameters OBJECT IDENTIFIER ::= { tlpNotify 3 }
tlpDeviceNumDevices OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of devices that this agent is currently managing."
::= { tlpDevice 1 }
tlpDeviceTable OBJECT-TYPE
SYNTAX SEQUENCE OF TlpDeviceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of device table entries. The number of entries
is given by the value of tlpDevicesNumDevices."
::= { tlpDevice 2 }
tlpDeviceEntry OBJECT-TYPE
SYNTAX TlpDeviceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing information applicable to a particular device
managed by this agent."
INDEX { tlpDeviceIndex }
::= { tlpDeviceTable 1 }
TlpDeviceEntry ::= SEQUENCE {
tlpDeviceIndex Unsigned32,
tlpDeviceRowStatus RowStatus,
tlpDeviceType OBJECT IDENTIFIER,
tlpDeviceManufacturer DisplayString,
tlpDeviceModel DisplayString,
tlpDeviceName DisplayString,
tlpDeviceID INTEGER,
tlpDeviceLocation DisplayString,
tlpDeviceRegion DisplayString,
tlpDeviceStatus INTEGER }
tlpDeviceIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The table row index for the device."
::= { tlpDeviceEntry 1 }
tlpDeviceRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Used with table edits to indicate the status of a given row in
tlpDeviceTable."
::= { tlpDeviceEntry 2 }
tlpDeviceType OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of device. One of the appropriate hardware types:
ups, pdu, envirosense, etc."
::= { tlpDeviceEntry 3 }
tlpDeviceManufacturer OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the manufacturer."
::= { tlpDeviceEntry 4 }
tlpDeviceModel OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The model designation."
::= { tlpDeviceEntry 5 }
tlpDeviceName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A user-supplied name for the device."
::= { tlpDeviceEntry 6 }
tlpDeviceID OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A user-supplied ID for the device."
::= { tlpDeviceEntry 7 }
tlpDeviceLocation OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A user-supplied location for the device."
::= { tlpDeviceEntry 8 }
tlpDeviceRegion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A user-supplied region for the device."
::= { tlpDeviceEntry 9 }
tlpDeviceStatus OBJECT-TYPE
SYNTAX INTEGER {
none(0),
critical(1),
warning(2),
info(3),
status(4),
offline(5),
custom(6),
configuration(7) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The currently most critical alarm status for the device."
::= { tlpDeviceEntry 10 }
tlpDeviceIdentTable OBJECT-TYPE
SYNTAX SEQUENCE OF TlpDeviceIdentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The identity details of each device in device table. The number
of entries is given by the value of tlpDevicesNumDevices."
::= { tlpDeviceDetail 1 }
tlpDeviceIdentEntry OBJECT-TYPE
SYNTAX TlpDeviceIdentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing details for a particular device."
INDEX { tlpDeviceIndex }
::= { tlpDeviceIdentTable 1 }
TlpDeviceIdentEntry ::= SEQUENCE {
tlpDeviceIdentProtocol DisplayString,
tlpDeviceIdentCommPortType INTEGER,
tlpDeviceIdentCommPortName DisplayString,
tlpDeviceIdentFirmwareVersion DisplayString,
tlpDeviceIdentSerialNum DisplayString,
tlpDeviceIdentDateInstalled DisplayString,
tlpDeviceIdentHardwareVersion DisplayString,
tlpDeviceIdentCurrentUptime DisplayString,
tlpDeviceIdentTotalUptime DisplayString }
tlpDeviceIdentProtocol OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Tripplite protocol used to communicate with the device."
::= { tlpDeviceIdentEntry 1 }
tlpDeviceIdentCommPortType OBJECT-TYPE
SYNTAX INTEGER {
unknown(0),
serial(1),
usb(2),
hid(3),
simulated(4),
unittest(5) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of communications port used to connect with the device."
::= { tlpDeviceIdentEntry 2 }
tlpDeviceIdentCommPortName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the communications port."
::= { tlpDeviceIdentEntry 3 }
tlpDeviceIdentFirmwareVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The firmware version of the device."
::= { tlpDeviceIdentEntry 4 }
tlpDeviceIdentSerialNum OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of the device."
::= { tlpDeviceIdentEntry 5 }
tlpDeviceIdentDateInstalled OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The installation date for this device in the format of mm/dd/yyyy."
::= { tlpDeviceIdentEntry 6 }
tlpDeviceIdentHardwareVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hardware revision of the device. This value will return ERROR_NO_SUCH_NAME
if not supported by the device."
::= { tlpDeviceIdentEntry 7 }
tlpDeviceIdentCurrentUptime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The device uptime since its last startup. The format of this value is a comma-
delimited string representing days, hours and minutes. For example, the value of
123,4,5 represents 123 days, 4 hours and 5 minutes. This value will return
ERROR_NO_SUCH_NAME if not supported by the device."
::= { tlpDeviceIdentEntry 8 }
tlpDeviceIdentTotalUptime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cumulative (total) uptime for the device. The format of this value is a comma-
delimited string representing days, hours and minutes. For example, the value of
123,4,5 represents 123 days, 4 hours and 5 minutes. This value will return
ERROR_NO_SUCH_NAME if not supported by the device."
::= { tlpDeviceIdentEntry 9 }
-- ups
tlpUpsIdentNumUps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ups devices that this agent is currently managing."
::= { tlpUpsIdent 1 }
tlpUpsIdentTable OBJECT-TYPE
SYNTAX SEQUENCE OF TlpUpsIdentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The identity details of each ups in device table. This is a
sparse dependent table, and will contain some subset of devices
that are upss."
::= { tlpUpsIdent 2 }
tlpUpsIdentEntry OBJECT-TYPE
SYNTAX TlpUpsIdentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing details for a particular ups."
INDEX { tlpDeviceIndex }
::= { tlpUpsIdentTable 1 }
TlpUpsIdentEntry ::= SEQUENCE {
tlpUpsIdentNumInputs Unsigned32,
tlpUpsIdentNumOutputs Unsigned32,
tlpUpsIdentNumBypass Unsigned32,
tlpUpsIdentNumPhases Unsigned32,
tlpUpsIdentNumOutlets Unsigned32,
tlpUpsIdentNumOutletGroups Unsigned32,
tlpUpsIdentNumBatteryPacks Unsigned32 }
tlpUpsIdentNumInputs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of input lines supported by the ups."
::= { tlpUpsIdentEntry 1 }
tlpUpsIdentNumOutputs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of output lines supported by the ups."
::= { tlpUpsIdentEntry 2 }
tlpUpsIdentNumBypass OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of bypass lines supported by the ups."
::= { tlpUpsIdentEntry 3 }
tlpUpsIdentNumPhases OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of phases supported by the ups."
::= { tlpUpsIdentEntry 4 }
tlpUpsIdentNumOutlets OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of receptacles supported by the ups."
::= { tlpUpsIdentEntry 5 }
tlpUpsIdentNumOutletGroups OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of receptacle groups supported by the ups."
::= { tlpUpsIdentEntry 6 }
tlpUpsIdentNumBatteryPacks OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of battery packs, internal and external combined,
supported by the ups."
::= { tlpUpsIdentEntry 7 }
tlpUpsSupportsTable OBJECT-TYPE
SYNTAX SEQUENCE OF TlpUpsSupportsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The supported details of each ups in device table. This is a
sparse dependent table, and will contain some subset of devices
that are upss."
::= { tlpUpsIdent 3 }
tlpUpsSupportsEntry OBJECT-TYPE
SYNTAX TlpUpsSupportsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing supported details for a particular ups."
INDEX { tlpDeviceIndex }
::= { tlpUpsSupportsTable 1 }
TlpUpsSupportsEntry ::= SEQUENCE {
tlpUpsSupportsEnergywise TruthValue,
tlpUpsSupportsRampShed TruthValue,
tlpUpsSupportsOutletGroup TruthValue,
tlpUpsSupportsOutletCurrentPower TruthValue,
tlpUpsSupportsOutletVoltage TruthValue }
tlpUpsSupportsEnergywise OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether the ups supports Cisco EnergyWise."
::= { tlpUpsSupportsEntry 1 }
tlpUpsSupportsRampShed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether the ups supports ramping and shedding."
::= { tlpUpsSupportsEntry 2 }
tlpUpsSupportsOutletGroup OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether the ups supports outlet groups."
::= { tlpUpsSupportsEntry 3 }
tlpUpsSupportsOutletCurrentPower OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether the ups reports individual receptacle current
and power measurements. Devices that do not support individual
receptacle measurements will always return ERROR_NO_SUCH_NAME for
tlpUpsOutletCurrent and tlpUpsOutletPower."
::= { tlpUpsSupportsEntry 4 }
tlpUpsSupportsOutletVoltage OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether the ups reports individual receptacle voltage
measurements. Devices that do not support individual receptacle
measurements will always return ERROR_NO_SUCH_NAME for
tlpUpsOutletVoltage."
::= { tlpUpsSupportsEntry 5 }
tlpUpsDeviceTable OBJECT-TYPE
SYNTAX SEQUENCE OF TlpUpsDeviceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The device details of each ups in device table. This is a
sparse dependent table, and will contain some subset of devices
that are upss."
::= { tlpUpsDevice 1 }
tlpUpsDeviceEntry OBJECT-TYPE
SYNTAX TlpUpsDeviceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing device details for a particular ups."
INDEX { tlpDeviceIndex }
::= { tlpUpsDeviceTable 1 }
TlpUpsDeviceEntry ::= SEQUENCE {
tlpUpsDeviceMainLoadState INTEGER,
tlpUpsDeviceMainLoadControllable TruthValue,
tlpUpsDeviceMainLoadCommand INTEGER,
tlpUpsDevicePowerOnDelay Integer32,
tlpUpsDeviceTestDate DisplayString,
tlpUpsDeviceTestResultsStatus INTEGER,
tlpUpsDeviceTemperatureC Integer32,
tlpUpsDeviceTemperatureF Integer32 }
tlpUpsDeviceMainLoadState OBJECT-TYPE
SYNTAX INTEGER {
unknown(0),
off(1),
on(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current state of the main output of the device."
::= { tlpUpsDeviceEntry 1 }
tlpUpsDeviceMainLoadControllable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether or not the main output is controllable, and whether
the ups can be turned off and on."
::= { tlpUpsDeviceEntry 2 }
tlpUpsDeviceMainLoadCommand OBJECT-TYPE
SYNTAX INTEGER {
idle(0),
turnOff(1),
turnOn(2),
cycle(3) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Reading this value will always return 0. Setting this value to
turnOff(1) will turn off the main output of the ups. Setting this
value to turnOn(2) will turn on the main output of the ups. Setting
this value to cycle(3) will turn off the main output, then turn it
back on."
::= { tlpUpsDeviceEntry 3 }
tlpUpsDevicePowerOnDelay OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configurable delay value, which sets the amount of additional
time a given device will wait before it connects to a valid AC
source. By default the delay value is set to 0."
::= { tlpUpsDeviceEntry 4 }
tlpUpsDeviceTestDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The date of the last self-test run on the ups, in the format YYYY-MM-DD."
::= { tlpUpsDeviceEntry 5 }
tlpUpsDeviceTestResultsStatus OBJECT-TYPE
SYNTAX INTEGER {
noTest(0),
doneAndPassed(1),
doneAndWarning(2),
doneAndError(3),
aborted(4),
inProgress(5),
noTestInitiated(6),
badBattery(7),
overCurrent(8),
batteryFailed(9) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The result of the last self-test run on the ups."
::= { tlpUpsDeviceEntry 6 }
tlpUpsDeviceTemperatureC OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 degrees Celsius"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ambient temperature at or near the ups casing. Temperature
measurements are not supported on all models. If not supported,
this value will always return ERROR_NO_SUCH_NAME."
::= { tlpUpsDeviceEntry 7 }
tlpUpsDeviceTemperatureF OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 degrees Fahrenheit"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ambient temperature at or near the ups casing. Temperature
measurements are not supported on all models. If not supported,
this value will always return ERROR_NO_SUCH_NAME."
::= { tlpUpsDeviceEntry 8 }
tlpUpsBatterySummaryTable OBJECT-TYPE
SYNTAX SEQUENCE OF TlpUpsBatterySummaryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The battery system summary of each ups in the device
table. This is a sparse dependent table, and will contain the
number of entries based upon the number of upss managed by
the agent as reported by tlpUpsIdentNumUps."
::= { tlpUpsBattery 1 }
tlpUpsBatterySummaryEntry OBJECT-TYPE
SYNTAX TlpUpsBatterySummaryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing information applicable to a particular
battery system managed by this agent."
INDEX { tlpDeviceIndex }
::= { tlpUpsBatterySummaryTable 1 }
TlpUpsBatterySummaryEntry ::= SEQUENCE {
tlpUpsBatteryStatus INTEGER,
tlpUpsSecondsOnBattery Unsigned32,
tlpUpsEstimatedMinutesRemaining Unsigned32,
tlpUpsEstimatedChargeRemaining INTEGER,
tlpUpsBatteryRunTimeRemaining TimeTicks }
tlpUpsBatteryStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
batteryNormal(2),
batteryLow(3),
batteryDepleted(4) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The indication of the capacity remaining in the UPS system's
batteries. A value of batteryNormal indicates that the
remaining run-time is greater than tlpUpsConfigLowBattTime. A
value of batteryLow indicates that the remaining battery run-time
is less than or equal to tlpUpsConfigLowBattTime. A value of
batteryDepleted indicates that the UPS will be unable to sustain
the present load when and if the utility power is lost (including
the possibility that the utility power is currently absent and
the UPS is unable to sustain the output)."
::= { tlpUpsBatterySummaryEntry 1 }
tlpUpsSecondsOnBattery OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the unit is on battery power, the elapsed time since the UPS
last switched to battery power, or the time since the network
management subsystem was last restarted, whichever is less. Zero
shall be returned if the unit is not on battery power."
::= { tlpUpsBatterySummaryEntry 2 }
tlpUpsEstimatedMinutesRemaining OBJECT-TYPE
SYNTAX Unsigned32
UNITS "minutes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An estimate of the time to battery charge depletion
under the present load conditions if the utility power
is off and remains off, or if it were to be lost and
remain off."
::= { tlpUpsBatterySummaryEntry 3 }
tlpUpsEstimatedChargeRemaining OBJECT-TYPE
SYNTAX INTEGER (0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An estimate of the battery charge remaining expressed
as a percent of full charge."
::= { tlpUpsBatterySummaryEntry 4 }
tlpUpsBatteryRunTimeRemaining OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The run time remaining before batteries are exhausted. If the device
does not support run time remaining, then the agent reports
ERROR_NO_SUCH_NAME."
::= { tlpUpsBatterySummaryEntry 5 }
tlpUpsBatteryDetailTable OBJECT-TYPE
SYNTAX SEQUENCE OF TlpUpsBatteryDetailEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The battery detail of each ups in the device table. This is a sparse
dependent table, and will contain the number of entries based upon the
number of upss managed by the agent as reported by tlpUpsIdentNumUps."
::= { tlpUpsBattery 2 }
tlpUpsBatteryDetailEntry OBJECT-TYPE
SYNTAX TlpUpsBatteryDetailEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing information applicable to a particular
battery system managed by this agent."
INDEX { tlpDeviceIndex }
::= { tlpUpsBatteryDetailTable 1 }
TlpUpsBatteryDetailEntry ::= SEQUENCE {
tlpUpsBatteryDetailVoltage Unsigned32,
tlpUpsBatteryDetailCurrent Integer32,
tlpUpsBatteryDetailCapacity INTEGER,
tlpUpsBatteryDetailCharge INTEGER,
tlpUpsBatteryDetailChargerStatus INTEGER }
tlpUpsBatteryDetailVoltage OBJECT-TYPE
SYNTAX Unsigned32
UNITS "0.1 Volt DC"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The magnitude of the present battery voltage."
::= { tlpUpsBatteryDetailEntry 1 }
tlpUpsBatteryDetailCurrent OBJECT-TYPE
SYNTAX Integer32
UNITS "0.01 Amps DC"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present battery current."
::= { tlpUpsBatteryDetailEntry 2 }
tlpUpsBatteryDetailCapacity OBJECT-TYPE
SYNTAX INTEGER (0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The estimated remaining battery capacity expressed as a percent of
full capacity."
::= { tlpUpsBatteryDetailEntry 3 }
tlpUpsBatteryDetailCharge OBJECT-TYPE
SYNTAX INTEGER {
floating(0),
charging(1),
resting(2),
discharging(3),
normal(4),
standby(5) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Denotes the charge state of the battery."
::= { tlpUpsBatteryDetailEntry 4 }
tlpUpsBatteryDetailChargerStatus OBJECT-TYPE
SYNTAX INTEGER {