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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
|
TRIPPLITE-12X DEFINITIONS ::= BEGIN
IMPORTS
TRAP-TYPE
FROM RFC-1215
DisplayString,
TruthValue,
TimeStamp,
TimeInterval,
DateAndTime,
AutonomousType,
VariablePointer,
RowStatus
FROM SNMPv2-TC
OBJECT-GROUP,
NOTIFICATION-GROUP
FROM SNMPv2-CONF
MODULE-IDENTITY,
OBJECT-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE,
Gauge32,
Integer32,
IpAddress
FROM SNMPv2-SMI
PositiveInteger,
NonNegativeInteger
FROM UPS-MIB
tripplite
FROM TRIPPLITE;
tlPowerAlert MODULE-IDENTITY
LAST-UPDATED "201702281600Z"
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 Tripplite PowerAlert and related
software."
REVISION "201702281600Z"
"Corrected spelling errors"
REVISION "201507290000Z"
DESCRIPTION
"Removed obsolete legacy PowerAlert 11 sections"
REVISION "201410170930Z"
DESCRIPTION
"Added tlUpsAggregatePowerFactor"
REVISION "201409181000Z"
DESCRIPTION
"Added additional tlUpsInputSource... elements"
REVISION "201408060830Z"
DESCRIPTION
"Added additional elements to tlUpsOutputCircuitTable"
REVISION "201405080830Z"
DESCRIPTION
"Added tlUpsInputSourceSelect"
REVISION "201404091000Z"
DESCRIPTION
"Added missing well known alarms"
REVISION "201310301300Z"
DESCRIPTION
"Consolidated and Released for PAL v12.06.006x"
::= { tripplite 90 }
--------------------------------------------------------------------------
-- Enumerations
--------------------------------------------------------------------------
tlEnumerations OBJECT IDENTIFIER ::= { tripplite 2 }
tlOperatingSystems OBJECT IDENTIFIER ::= { tlEnumerations 1 }
hpux9 OBJECT IDENTIFIER ::= { tlOperatingSystems 1 }
sunos4 OBJECT IDENTIFIER ::= { tlOperatingSystems 2 }
solaris OBJECT IDENTIFIER ::= { tlOperatingSystems 3 }
osf OBJECT IDENTIFIER ::= { tlOperatingSystems 4 }
ultrix OBJECT IDENTIFIER ::= { tlOperatingSystems 5 }
hpux10 OBJECT IDENTIFIER ::= { tlOperatingSystems 6 }
netbsd1 OBJECT IDENTIFIER ::= { tlOperatingSystems 7 }
freebsd OBJECT IDENTIFIER ::= { tlOperatingSystems 8 }
irix OBJECT IDENTIFIER ::= { tlOperatingSystems 9 }
linux OBJECT IDENTIFIER ::= { tlOperatingSystems 10 }
bsdi OBJECT IDENTIFIER ::= { tlOperatingSystems 11 }
openbsd OBJECT IDENTIFIER ::= { tlOperatingSystems 12 }
win32 OBJECT IDENTIFIER ::= { tlOperatingSystems 13 }
hpux11 OBJECT IDENTIFIER ::= { tlOperatingSystems 14 }
win9x OBJECT IDENTIFIER ::= { tlOperatingSystems 50 }
winnt OBJECT IDENTIFIER ::= { tlOperatingSystems 51 }
solspark OBJECT IDENTIFIER ::= { tlOperatingSystems 52 }
solintel OBJECT IDENTIFIER ::= { tlOperatingSystems 53 }
aix OBJECT IDENTIFIER ::= { tlOperatingSystems 54 }
sco OBJECT IDENTIFIER ::= { tlOperatingSystems 55 }
osx OBJECT IDENTIFIER ::= { tlOperatingSystems 56 }
unknown OBJECT IDENTIFIER ::= { tlOperatingSystems 255 }
--------------------------------------------------------------------------
-- Power Alert System Settings
--------------------------------------------------------------------------
-- tlPowerAlert OBJECT IDENTIFIER ::= { tripplite 90 }
tlPASystem OBJECT IDENTIFIER ::= { tlPowerAlert 1 }
tlPAContacts OBJECT IDENTIFIER ::= { tlPASystem 1 }
tlPAEmailContacts OBJECT IDENTIFIER ::= { tlPAContacts 1 }
tlPANumberOfEmailContacts OBJECT-TYPE
SYNTAX NonNegativeInteger
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number email contacts currently defined."
::= { tlPAEmailContacts 1 }
tlPAEmailContactsTable OBJECT-TYPE
SYNTAX SEQUENCE OF TlPAEmailContactEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list email contact entries. The number of entries is
given by the value of tlPANumberOfEmailContacts."
::= { tlPAEmailContacts 2 }
tlPAEmailContactEntry OBJECT-TYPE
SYNTAX TlPAEmailContactEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing email contacts information."
INDEX { tlPAEmailContactIndex }
::= { tlPAEmailContactsTable 1 }
TlPAEmailContactEntry ::= SEQUENCE {
tlPAEmailContactIndex PositiveInteger,
tlPAEmailContactRowStatus RowStatus,
tlPAEmailContactName DisplayString,
tlPAEmailContactAddress DisplayString
}
tlPAEmailContactIndex OBJECT-TYPE
SYNTAX PositiveInteger
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the index number of the email contact."
::= { tlPAEmailContactEntry 1 }
tlPAEmailContactRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status for the tlPAEmailContactTable row"
::= { tlPAEmailContactEntry 2 }
tlPAEmailContactName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the email contact."
::= { tlPAEmailContactEntry 3 }
tlPAEmailContactAddress OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The address of the email contact."
::= { tlPAEmailContactEntry 4 }
tlPASnmpContacts OBJECT IDENTIFIER ::= { tlPAContacts 2 }
tlPANumberOfSnmpContacts OBJECT-TYPE
SYNTAX NonNegativeInteger
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number SNMP contacts currently defined."
::= { tlPASnmpContacts 1 }
tlPASnmpContactsTable OBJECT-TYPE
SYNTAX SEQUENCE OF TlPASnmpContactEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list SNMP contact entries. The number of entries is
given by the value of tlPANumberOfSnmpContacts."
::= { tlPASnmpContacts 2 }
tlPASnmpContactEntry OBJECT-TYPE
SYNTAX TlPASnmpContactEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing SNMP contacts information."
INDEX { tlPASnmpContactIndex }
::= { tlPASnmpContactsTable 1 }
TlPASnmpContactEntry ::= SEQUENCE {
tlPASnmpContactIndex PositiveInteger,
tlPASnmpContactRowStatus RowStatus,
tlPASnmpContactName DisplayString,
tlPASnmpContactIpAddress DisplayString,
tlPASnmpContactPort PositiveInteger,
tlPASnmpContactSnmpVersion INTEGER,
tlPASnmpContactSecurityName DisplayString,
tlPASnmpContactPrivPassword DisplayString,
tlPASnmpContactAuthPassword DisplayString
}
tlPASnmpContactIndex OBJECT-TYPE
SYNTAX PositiveInteger
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the index number of this SNMP contact."
::= { tlPASnmpContactEntry 1 }
tlPASnmpContactRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status for the tlPASnmpContactTable row"
::= { tlPASnmpContactEntry 2 }
tlPASnmpContactName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the SNMP contact."
::= { tlPASnmpContactEntry 3 }
tlPASnmpContactIpAddress OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address of the SNMP contact."
::= { tlPASnmpContactEntry 4 }
tlPASnmpContactPort OBJECT-TYPE
SYNTAX PositiveInteger
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The port of the SNMP contact."
::= { tlPASnmpContactEntry 5 }
tlPASnmpContactSnmpVersion OBJECT-TYPE
SYNTAX INTEGER {
snmpv1(1),
snmpv2c(2),
snmpv3(3) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The SNMP contact version to use for sending traps."
::= { tlPASnmpContactEntry 6 }
tlPASnmpContactSecurityName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The SNMP contact security name."
::= { tlPASnmpContactEntry 7 }
tlPASnmpContactPrivPassword OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The SNMP contact priv password to use for sending V3 traps."
::= { tlPASnmpContactEntry 8 }
tlPASnmpContactAuthPassword OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The SNMP contact auth password to use for sending V3 traps."
::= { tlPASnmpContactEntry 9 }
--------------------------------------------------------------------------
-- UPS Device
--------------------------------------------------------------------------
tlUPS OBJECT IDENTIFIER ::= { tripplite 100 }
tlUpsObjects OBJECT IDENTIFIER ::= { tlUPS 1 }
tlUpsIdent OBJECT IDENTIFIER ::= { tlUpsObjects 1 }
tlUpsIdentUpsSoftwareChecksum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A checksum for the UPS software."
::= { tlUpsIdent 1 }
tlUpsIdentSerialNum OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Serial number for the UPS."
::= { tlUpsIdent 2 }
tlUpsIdentID OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A user-supplied ID for the UPS."
::= { tlUpsIdent 3 }
tlUpsSnmpCardSerialNum OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Serial number for the UPS."
::= { tlUpsIdent 4 }
tlUpsSelectedDeviceID OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The device ID selected to be used for retrieving data for this mib.
As the snmp web card has only one device, this is read only for it"
::= { tlUpsIdent 5 }
tlUpsLocation OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The device location string."
::= { tlUpsIdent 6 }
tlUpsBattery OBJECT IDENTIFIER ::= { tlUpsObjects 2 }
tlUpsBatteryAge OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The age of the battery in years. This is equal to
the current date minus tlConfigBattReplDate."
::= { tlUpsBattery 1 }
tlUpsTemperatureF OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The temperature of the battery, in Farenheight degrees. This is
calculated from upsBatteryTemperature, which is in Celsius degrees."
::= { tlUpsBattery 2 }
tlUpsExternalBatteryAge OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The age of external battery in years. This is equal to
the current date minus tlConfigExternalBattReplDate."
::= { tlUpsBattery 3 }
tlUpsInput OBJECT IDENTIFIER ::= { tlUpsObjects 3 }
tlUpsInputNumVoltages OBJECT-TYPE
SYNTAX NonNegativeInteger
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of input voltages. Phase to phase
or phase to neutral. This variable indicates the
number of rows in the input table."
::= { tlUpsInput 1 }
tlUpsInputVoltageTable OBJECT-TYPE
SYNTAX SEQUENCE OF TlUpsInputVoltageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of voltage input table entries. The number of entries
is given by the value of tlUpsInputNumVoltages."
::= { tlUpsInput 2 }
tlUpsInputVoltageEntry OBJECT-TYPE
SYNTAX TlUpsInputVoltageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing information applicable to a
particular input voltage."
INDEX { tlUpsInputVoltageIndex }
::= { tlUpsInputVoltageTable 1 }
TlUpsInputVoltageEntry ::= SEQUENCE {
tlUpsInputVoltageIndex PositiveInteger,
tlUpsInputVoltageType NonNegativeInteger,
tlUpsInputVoltage NonNegativeInteger
}
tlUpsInputVoltageIndex OBJECT-TYPE
SYNTAX PositiveInteger
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The input voltage identifier."
::= { tlUpsInputVoltageEntry 1 }
tlUpsInputVoltageType OBJECT-TYPE
SYNTAX INTEGER {
phaseToNeutral(0),
phaseToPhase(1) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Whether voltage measured is phase to
phase or phase to neutral."
::= { tlUpsInputVoltageEntry 2 }
tlUpsInputVoltage OBJECT-TYPE
SYNTAX NonNegativeInteger
UNITS "RMS Volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The magnitude of the present input voltage.
A value of 6553 indicates Unknown."
::= { tlUpsInputVoltageEntry 3 }
tlUpsInputSourceSelect OBJECT-TYPE
SYNTAX INTEGER {
inputSourceA(0),
inputSourceB(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The determination as to which of two AC input
lines is designated as the primary input source.
The other is designated as the secondary input
source. This value will always return inputSourceA(0)
for devices with a single input source. Setting
this value is supported only on selected models."
::= { tlUpsInput 3 }
tlUpsPhaseImbalance OBJECT-TYPE
SYNTAX INTEGER
UNITS "Percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Percentage of imbalance of the 3 phases."
::= { tlUpsInput 4 }
tlUpsInputSourceAvailability OBJECT-TYPE
SYNTAX INTEGER {
none(0),
inputSourceA(1),
inputSourceB(2),
inputSourceAB(3) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The determination as to which of two AC input lines
are available. The agent will return either inputSourceA(1)
or inputSourceB(2) if only one line is available, or
inputSourceAB(3) if both lines are available. The agent
will never return none(0) since the device will be powered
off if neither line is available."
::= { tlUpsInput 5 }
tlUpsInputSourceInUse OBJECT-TYPE
SYNTAX INTEGER {
inputSourceA(0),
inputSourceB(1) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The determination as to which one of two AC input lines is
in use."
::= { tlUpsInput 6 }
tlUpsInputSourceTransitionCount OBJECT-TYPE
SYNTAX PositiveInteger
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the device transitions between primary and
secondary sources. Most devices are limied to 65533 transitions,
after which the value will not increment."
::= { tlUpsInput 7 }
tlUpsOutput OBJECT IDENTIFIER ::= { tlUpsObjects 4 }
tlUpsOutputPowerTotal OBJECT-TYPE
SYNTAX PositiveInteger
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The power capacity of the device."
::= { tlUpsOutput 5 }
tlUpsOutputCircuits OBJECT-TYPE
SYNTAX NonNegativeInteger
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of output circuits. This variable
indicates the number of rows in the output circuit table."
::= { tlUpsOutput 6 }
tlUpsOutputCircuitTable OBJECT-TYPE
SYNTAX SEQUENCE OF TlUpsOutputCircuitEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of output currents table entries. The number of entries
is given by the value of tlUpsOutputNumCircuits."
::= { tlUpsOutput 7 }
tlUpsOutputCircuitEntry OBJECT-TYPE
SYNTAX TlUpsOutputCircuitEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing information applicable to a
particular output circuit."
INDEX { tlUpsOutputCircuitIndex }
::= { tlUpsOutputCircuitTable 1 }
TlUpsOutputCircuitEntry ::= SEQUENCE {
tlUpsOutputCircuitIndex PositiveInteger,
tlUpsOutputCircuitStatus INTEGER,
tlUpsOutputCircuitLoadCurrent NonNegativeInteger,
tlUpsOutputCircuitVoltage NonNegativeInteger,
tlUpsOutputCircuitPower NonNegativeInteger,
tlUpsOutputCircuitPowerFactor NonNegativeInteger
}
tlUpsOutputCircuitIndex OBJECT-TYPE
SYNTAX PositiveInteger
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The output circuit identifier."
::= { tlUpsOutputCircuitEntry 1 }
tlUpsOutputCircuitStatus OBJECT-TYPE
SYNTAX INTEGER {
open(0),
closed(1) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Whether the breaker is open or closed."
::= { tlUpsOutputCircuitEntry 2 }
tlUpsOutputCircuitLoadCurrent OBJECT-TYPE
SYNTAX NonNegativeInteger
UNITS "0.1 Amperes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The magnitude of the present output current in
tenths of an amp. A value of 65534 indicates Unknown."
::= { tlUpsOutputCircuitEntry 3 }
tlUpsOutputCircuitVoltage OBJECT-TYPE
SYNTAX NonNegativeInteger
UNITS "0.1 Volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The magnitude of the present circuit voltage in
tenths of an volt."
::= { tlUpsOutputCircuitEntry 4 }
tlUpsOutputCircuitPower OBJECT-TYPE
SYNTAX NonNegativeInteger
UNITS "Watts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The magnitude of the present power in watts.
tenths of an amp."
::= { tlUpsOutputCircuitEntry 5 }
tlUpsOutputCircuitPowerFactor OBJECT-TYPE
SYNTAX NonNegativeInteger
UNITS "Percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The power factor of all receptacles in a given circuit as
a %."
::= { tlUpsOutputCircuitEntry 6 }
tlUpsAggregatePowerFactor OBJECT-TYPE
SYNTAX PositiveInteger
UNITS "0.1 Watts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The aggregrate power factor of all phases."
::= { tlUpsOutput 8 }
-- tlUpsBypass [unused] OBJECT IDENTIFIER ::= { tlUpsObjects 5 }
tlUpsAlarm OBJECT IDENTIFIER ::= { tlUpsObjects 6 }
tlUpsAlarmsPresent OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present number of active alarm conditions."
::= { tlUpsAlarm 1 }
tlUpsAlarmTable OBJECT-TYPE
SYNTAX SEQUENCE OF TlUpsAlarmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of alarm table entries."
::= { tlUpsAlarm 2 }
tlUpsAlarmEntry OBJECT-TYPE
SYNTAX TlUpsAlarmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing information applicable to a particular alarm."
INDEX { tlUpsAlarmId }
::= { tlUpsAlarmTable 1 }
TlUpsAlarmEntry ::= SEQUENCE {
tlUpsAlarmId PositiveInteger,
tlUpsAlarmDescr AutonomousType,
tlUpsAlarmTime TimeStamp,
tlUpsAlarmDetail DisplayString,
tlUpsAlarmDeviceId PositiveInteger,
tlUpsAlarmDeviceName DisplayString,
tlUpsAlarmLocation DisplayString,
tlUpsAlarmGroup INTEGER,
tlUpsAlarmIp IpAddress,
tlUpsAlarmMac DisplayString
}
tlUpsAlarmId OBJECT-TYPE
SYNTAX PositiveInteger
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique identifier for an alarm condition."
::= { tlUpsAlarmEntry 1 }
tlUpsAlarmDescr OBJECT-TYPE
SYNTAX AutonomousType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A description of the alarm condition."
::= { tlUpsAlarmEntry 2 }
tlUpsAlarmTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when the alarm condition was detected."
::= { tlUpsAlarmEntry 3 }
tlUpsAlarmDetail OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A textual description of the alarm condition."
::= { tlUpsAlarmEntry 4 }
tlUpsAlarmDeviceId OBJECT-TYPE
SYNTAX PositiveInteger
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A numeric identifier for the device on which the alarm is active."
::= { tlUpsAlarmEntry 5 }
tlUpsAlarmDeviceName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A string identifier for the device on which the alarm is active."
::= { tlUpsAlarmEntry 6 }
tlUpsAlarmLocation OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The location of the device on which the alarm is active."
::= { tlUpsAlarmEntry 7 }
tlUpsAlarmGroup OBJECT-TYPE
SYNTAX INTEGER {
critical(1),
warning(2),
info(3),
status(4),
offline(5),
custom(6) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The category/group of this alarm."
::= { tlUpsAlarmEntry 8 }
tlUpsAlarmIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The originating IP address associated with this alarm."
::= { tlUpsAlarmEntry 9 }
tlUpsAlarmMac OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The originating mac address associated with this alarm."
::= { tlUpsAlarmEntry 10 }
tlUpsWellKnownAlarms OBJECT IDENTIFIER ::= { tlUpsAlarm 3 }
tlUpsAlarmPrimaryPowerOutage OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The primary power source is not present."
::= { tlUpsWellKnownAlarms 1 }
tlUpsAlarmSecondaryPowerOutage OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The secondary power source is not present."
::= { tlUpsWellKnownAlarms 2 }
tlUpsAlarmLoadLevelAboveThreshold OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The load level is above the designated threshold."
::= { tlUpsWellKnownAlarms 3 }
tlUpsAlarmOutputCurrentChanged OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The output current changed from its last known value."
::= { tlUpsWellKnownAlarms 4 }
tlUpsAlarmBatteryAgeAboveThreshold OBJECT-IDENTITY
STATUS current
DESCRIPTION
"One or more batteries have been determined to require
replacement."
::= { tlUpsWellKnownAlarms 5 }
tlUpsAlarmLoadOff OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The load is off."
::= { tlUpsWellKnownAlarms 6 }
tlUpsAlarmUserDefined OBJECT-IDENTITY
STATUS current
DESCRIPTION
"A user-defined event is in alarm."
::= { tlUpsWellKnownAlarms 7 }
tlUpsAlarmBatteryBad OBJECT-IDENTITY
STATUS current
DESCRIPTION
"One or more batteries have been determined to require
replacement."
::= { tlUpsWellKnownAlarms 8 }
tlUpsAlarmOnBattery OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The UPS is drawing power from the batteries."
::= { tlUpsWellKnownAlarms 9 }
tlUpsAlarmLowBattery OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The remaining battery run-time is less than or equal
to upsConfigLowBattTime."
::= { tlUpsWellKnownAlarms 10 }
tlUpsAlarmDepletedBattery OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The UPS will be unable to sustain the present load
when and if the utility power is lost."
::= { tlUpsWellKnownAlarms 11 }
tlUpsAlarmTempBad OBJECT-IDENTITY
STATUS current
DESCRIPTION
"A temperature is out of tolerance."
::= { tlUpsWellKnownAlarms 12 }
tlUpsAlarmInputBad OBJECT-IDENTITY
STATUS current
DESCRIPTION
"An input condition is out of tolerance."
::= { tlUpsWellKnownAlarms 13 }
tlUpsAlarmOutputBad OBJECT-IDENTITY
STATUS current
DESCRIPTION
"An output condition (other than OutputOverload) is
out of tolerance."
::= { tlUpsWellKnownAlarms 14 }
tlUpsAlarmOutputOverload OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The output load exceeds the UPS output capacity."
::= { tlUpsWellKnownAlarms 15 }
tlUpsAlarmOnBypass OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The Bypass is presently engaged on the UPS."
::= { tlUpsWellKnownAlarms 16 }
tlUpsAlarmBypassBad OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The Bypass is out of tolerance."
::= { tlUpsWellKnownAlarms 17 }
tlUpsAlarmOutputOffAsRequested OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The UPS has shutdown as requested, i.e., the output
is off."
::= { tlUpsWellKnownAlarms 18 }
tlUpsAlarmUpsOffAsRequested OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The entire UPS has shutdown as commanded."
::= { tlUpsWellKnownAlarms 19 }
tlUpsAlarmChargerFailed OBJECT-IDENTITY
STATUS current
DESCRIPTION
"An uncorrected problem has been detected within the
UPS charger subsystem."
::= { tlUpsWellKnownAlarms 20 }
tlUpsAlarmUpsOutputOff OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The output of the UPS is in the off state."
::= { tlUpsWellKnownAlarms 21 }
tlUpsAlarmUpsSystemOff OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The UPS system is in the off state."
::= { tlUpsWellKnownAlarms 22 }
tlUpsAlarmFanFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The failure of one or more fans in the UPS has been
detected."
::= { tlUpsWellKnownAlarms 23 }
tlUpsAlarmFuseFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The failure of one or more fuses has been detected."
::= { tlUpsWellKnownAlarms 24 }
tlUpsAlarmGeneralFault OBJECT-IDENTITY
STATUS current
DESCRIPTION
"A general fault in the UPS has been detected."
::= { tlUpsWellKnownAlarms 25 }
tlUpsAlarmDiagnosticTestFailed OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The result of the last diagnostic test indicates a
failure."
::= { tlUpsWellKnownAlarms 26 }
tlUpsAlarmCommunicationsLost OBJECT-IDENTITY
STATUS current
DESCRIPTION
"A problem has been encountered in the communications
between the agent and the UPS."
::= { tlUpsWellKnownAlarms 27 }
tlUpsAlarmAwaitingPower OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The UPS output is off and the UPS is awaiting the
return of input power."
::= { tlUpsWellKnownAlarms 28 }
tlUpsAlarmShutdownPending OBJECT-IDENTITY
STATUS current
DESCRIPTION
"A upsShutdownAfterDelay countdown is underway."
::= { tlUpsWellKnownAlarms 29 }
tlUpsAlarmShutdownImminent OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The UPS will turn off power to the load in less than
5 seconds; this may be either a timed shutdown or a
low battery shutdown."
::= { tlUpsWellKnownAlarms 30 }
tlUpsAlarmTestInProgress OBJECT-IDENTITY
STATUS current
DESCRIPTION
"A test is in progress, as initiated and indicated by
the Test Group. Tests initiated via other
implementation-specific mechanisms can indicate the
presence of the testing in the alarm table, if
desired, via a OBJECT-IDENTITY macro in the MIB
document specific to that implementation and are
outside the scope of this OBJECT-IDENTITY."
::= { tlUpsWellKnownAlarms 31 }
tlUpsAlarmCircuitBreaker1Open OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Circuit breakers #1 is open."
::= { tlUpsWellKnownAlarms 32 }
tlUpsAlarmCircuitBreaker2Open OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Circuit breakers #2 is open."
::= { tlUpsWellKnownAlarms 33 }
tlUpsAlarmCircuitBreaker3Open OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Circuit breakers #3 is open."
::= { tlUpsWellKnownAlarms 34 }
tlUpsAlarmCircuitBreaker4Open OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Circuit breakers #4 is open."
::= { tlUpsWellKnownAlarms 35 }
tlUpsAlarmCircuitBreaker5Open OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Circuit breakers #5 is open."
::= { tlUpsWellKnownAlarms 36 }
tlUpsAlarmCircuitBreaker6Open OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Circuit breakers #6 is open."
::= { tlUpsWellKnownAlarms 37 }
tlUpsAlarmCircuitBreaker7Open OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Circuit breakers #7 is open."
::= { tlUpsWellKnownAlarms 38 }
tlUpsAlarmCircuitBreaker8Open OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Circuit breakers #8 is open."
::= { tlUpsWellKnownAlarms 39 }
tlUpsAlarmCurrent1AboveThreshold OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The output current on line 1 exceeds load limits."
::= { tlUpsWellKnownAlarms 40 }
tlUpsAlarmCurrent2AboveThreshold OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The output current on line 2 exceeds load limits."
::= { tlUpsWellKnownAlarms 41 }
tlUpsAlarmCurrent3AboveThreshold OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The output current on line 3 exceeds load limits."
::= { tlUpsWellKnownAlarms 42 }
tlUpsAlarmRuntimeBelowWarningLevel OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The battery seconds remaining is below warning level."
::= { tlUpsWellKnownAlarms 43 }
tlUpsAlarmBusStartVoltageLow OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The inverter start up bus voltage is too low."
::= { tlUpsWellKnownAlarms 44 }
tlUpsAlarmBusOverVoltage OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The inverter bus voltage is too high."
::= { tlUpsWellKnownAlarms 45 }
tlUpsAlarmBusUnderVoltage OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The inverter bus voltage is too low."
::= { tlUpsWellKnownAlarms 46 }
tlUpsAlarmBusVoltageUnbalanced OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The inverter bus voltage is not balanced."
::= { tlUpsWellKnownAlarms 47 }
tlUpsAlarmInverterSoftStartBad OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The inverter bus voltage cannot reach desired voltage within a
specified duration."
::= { tlUpsWellKnownAlarms 48 }
tlUpsAlarmInverterOverVoltage OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The inverter voltage is too high."
::= { tlUpsWellKnownAlarms 49 }
tlUpsAlarmInverterUnderVoltage OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The inverter voltage is too low."
::= { tlUpsWellKnownAlarms 50 }
tlUpsAlarmInverterCircuitBad OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The inverter output is shorted."
::= { tlUpsWellKnownAlarms 51 }
tlUpsAlarmBatteryOverVoltage OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The battery voltage is too high."
::= { tlUpsWellKnownAlarms 52 }
tlUpsAlarmBatteryUnderVoltage OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The battery voltage is too low."
::= { tlUpsWellKnownAlarms 53 }
tlUpsAlarmSiteWiringFault OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The utility input wiring is faulty."
::= { tlUpsWellKnownAlarms 54 }
tlUpsAlarmOverTemperatureProtection OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The over temperature protection is activated."
::= { tlUpsWellKnownAlarms 55 }
tlUpsAlarmOverCharged OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The UPS is over charged."
::= { tlUpsWellKnownAlarms 56 }
tlUpsAlarmEPOActive OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The EPO is currently activate."
::= { tlUpsWellKnownAlarms 57 }
tlUpsAlarmBypassFrequencyBad OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The bypass frequency is out of tolerance."
::= { tlUpsWellKnownAlarms 58 }
tlUpsAlarmExternalSmartBatteryAgeAboveThreshold OBJECT-IDENTITY
STATUS current
DESCRIPTION
"One or more external smart batteries have been determined to require
replacement."
::= { tlUpsWellKnownAlarms 59 }
tlUpsAlarmExternalNonSmartBatteryAgeAboveThreshold OBJECT-IDENTITY
STATUS current
DESCRIPTION
"One or more external non-smart batteries have been determined to require
replacement."
::= { tlUpsWellKnownAlarms 60 }
tlUpsAlarmSmartBatteryCommLost OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Communications with the smart batteries was lost."
::= { tlUpsWellKnownAlarms 61 }
tlUpsAlarmSourceAOutage OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Input power source A is not present."
::= { tlUpsWellKnownAlarms 62 }
tlUpsAlarmSourceBOutage OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Input power source B is not present."
::= { tlUpsWellKnownAlarms 63 }
tlUpsAlarmWatchdogReset OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The internal watchdog triggered a reset of the device."
::= { tlUpsWellKnownAlarms 64 }
tlUpsAlarmDevName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The name of the device, tlDevName, corresponding to the device that is
associated with this alarm."
::= { tlUpsAlarm 7 }
tlUpsAlarmDevLocation OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The location of the device, tlDevLocation, corresponding to the device
that is associated with this alarm."
::= { tlUpsAlarm 8 }
tlUpsAlarmCategory OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The category, tlDevEvtCategory, of this alarm."
::= { tlUpsAlarm 9 }
tlUpsTest OBJECT IDENTIFIER ::= { tlUpsObjects 7 }
tlUpsTestDate 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 YYYYMMDD."
::= { tlUpsTest 1 }
tlUpsTestResultsDetail OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Result of the last self-test run on the ups."
::= { tlUpsTest 2 }
tlUpsControl OBJECT IDENTIFIER ::= { tlUpsObjects 8 }
tlUpsWatchdogSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether or not this UPS supports a watchdog reboot."
::= { tlUpsControl 1 }
tlUpsWatchdogSecsBeforeReboot OBJECT-TYPE
SYNTAX NonNegativeInteger
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum number of seconds that can expire between polls that
the engine makes to the UPS for data. If this time runs out, then
the UPS will cycle its outputs. Set this to zero to turns disable
this feature."
::= { tlUpsControl 2 }
tlUpsWellKnownControls OBJECT IDENTIFIER ::= { tlUpsControl 3 }
tlUpsControlSelfTest OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set to TRUE to initiate Self Test"
::= { tlUpsWellKnownControls 1 }
tlUpsControlRamp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set to TRUE to initiate Ramp"
::= { tlUpsWellKnownControls 2 }
tlUpsControlShed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set to TRUE to initiate Shed"
::= { tlUpsWellKnownControls 3 }
tlUpsControlUpsOn OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set to TRUE to turn UPS on"
::= { tlUpsWellKnownControls 4 }
tlUpsControlUpsOff OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set to TRUE to turn UPS off"
::= { tlUpsWellKnownControls 5 }
tlUpsConfig OBJECT IDENTIFIER ::= { tlUpsObjects 9 }
tlUpsConfigBattReplDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The date on which the battery was last replaced, in the format
YYYYMMDD."
::= { tlUpsConfig 1 }
-- Deprecated, interface no longer supported.
--
-- tlUpsConfigTftpGetAddr OBJECT-TYPE
-- SYNTAX IpAddress
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "The IP address of the TFTP server you wish to acquire a config ini file from, non persistent, 0.0.0.0 when empty"
-- ::= { tlUpsConfig 2 }
--
-- tlUpsConfigTftpGetAcction OBJECT-TYPE
-- SYNTAX INTEGER {
-- get(1),
-- getting(2),
-- idle(3) }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "setting this entry to get(1) will start a down load from the specified address, during the download this entry
-- will read getting(2), when finished, the card will reboot to the new ini supplied parms. At all other times this
-- entry will read idle(3)"
-- ::= { tlUpsConfig 3 }
tlUpsConfigDisplayUnits OBJECT-TYPE
SYNTAX INTEGER {
english(0),
metric(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Selects English or Metric display for all readings. This selection may not
be available on all devices. Further, some devices may support this selection,
but not via a software selector. In this latter case, selections must be
performed on the device itself."
::= { tlUpsConfig 4 }
tlUpsConfigExternalBattReplDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The date on which the external battery was last replaced, in the format
YYYYMMDD."
::= { tlUpsConfig 5 }
tlUpsOutlet OBJECT IDENTIFIER ::= { tlUpsObjects 10 }
tlUpsOutletNumOutlets OBJECT-TYPE
SYNTAX NonNegativeInteger
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of available Outlets in this device."
::= { tlUpsOutlet 1 }
tlUpsOutletTable OBJECT-TYPE
SYNTAX SEQUENCE OF TlUpsOutletEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of all device Outlets for all devices."
::= { tlUpsOutlet 2 }
tlUpsOutletEntry OBJECT-TYPE
SYNTAX TlUpsOutletEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing Outlet information applicable to a particular
device managed by this agent."
INDEX {
tlUpsOutletIndex }
::= { tlUpsOutletTable 1 }
TlUpsOutletEntry ::= SEQUENCE {
tlUpsOutletIndex PositiveInteger,
tlUpsOutletState INTEGER,
tlUpsOutletType Integer32,
tlUpsOutletControl INTEGER,
tlUpsOutletName DisplayString,
tlUpsOutletRampAction INTEGER,
tlUpsOutletRampDataType INTEGER,
tlUpsOutletRampData Integer32,
tlUpsOutletShedAction INTEGER,
tlUpsOutletShedDataType INTEGER,
tlUpsOutletShedData Integer32,
tlUpsOutletGroupNdx Integer32,
tlUpsOutletCurrent PositiveInteger,
tlUpsOutletPower PositiveInteger }
tlUpsOutletIndex OBJECT-TYPE
SYNTAX PositiveInteger
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the index number of this Outlet for the device
indicated by tlDeviceIndex."
::= { tlUpsOutletEntry 1 }
tlUpsOutletState OBJECT-TYPE
SYNTAX INTEGER {
unknown(0),
off(1),
on(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current state of the Outlet."
::= { tlUpsOutletEntry 2 }
tlUpsOutletType OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a bit field that indicates the type of this Outlet.
When 0, the outlet is not controllable and has none of the
other features indicated in the bit map. When non-zero,
the features present for this outlet can be interpreted with the
definition.
Bit Display
0 Reserved, may be 1 or 0
1 Controllable
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"
::= { tlUpsOutletEntry 3 }
tlUpsOutletControl OBJECT-TYPE
SYNTAX INTEGER {
turnOff(1),
turnOn(2),
cycle(3) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Controls the state of the Outlet."
::= { tlUpsOutletEntry 4 }
tlUpsOutletName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A string identifying the devices attached to the
output(s) of the device."
::= { tlUpsOutletEntry 5 }
tlUpsOutletRampAction OBJECT-TYPE
SYNTAX INTEGER {
remainOff(0),
turnOnAfterDelay(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The ramp action to take on the Outlet."
::= { tlUpsOutletEntry 6 }
tlUpsOutletRampDataType OBJECT-TYPE
SYNTAX INTEGER {
delayInSeconds(0)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The type of data associated with ramp action."
::= { tlUpsOutletEntry 7 }
tlUpsOutletRampData OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The data value associated with type of ramp data."
::= { tlUpsOutletEntry 8 }
tlUpsOutletShedAction OBJECT-TYPE
SYNTAX INTEGER {
remainOn(0),
turnOffAfterDelay(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The shed action to take on the Outlet."
::= { tlUpsOutletEntry 9 }
tlUpsOutletShedDataType OBJECT-TYPE
SYNTAX INTEGER {
delayInSeconds(0)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The type of data associated with shed action."
::= { tlUpsOutletEntry 10 }
tlUpsOutletShedData OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The data value associated with type of shed data."
::= { tlUpsOutletEntry 11 }
tlUpsOutletGroupNdx OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"tlUpsOutletGroupIndex of corresponding outlet group, or 0 if ungrouped."
::= { tlUpsOutletEntry 12 }
tlUpsOutletCurrent OBJECT-TYPE
SYNTAX PositiveInteger
UNITS "0.1 RMS Amp"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this outlet's current, represented as 0.1A."
::= { tlUpsOutletEntry 13 }
tlUpsOutletPower OBJECT-TYPE
SYNTAX PositiveInteger
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this outlet's power in watts."
::= { tlUpsOutletEntry 14 }
tlUpsOutletGroup OBJECT IDENTIFIER ::= { tlUpsObjects 11 }
tlUpsOutletNumOutletGroups OBJECT-TYPE
SYNTAX NonNegativeInteger
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of available Outlet Groups in this device."
::= { tlUpsOutletGroup 1 }
tlUpsOutletGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF TlUpsOutletGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of device outlet group entries. The number of entries is
given by the value of tlUpsOutletNumOutletGroups."
::= { tlUpsOutletGroup 2 }
tlUpsOutletGroupEntry OBJECT-TYPE
SYNTAX TlUpsOutletGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing outlet group information applicable
to a particular device managed by this agent"
INDEX { tlUpsOutletGroupIndex }
::= { tlUpsOutletGroupTable 1 }
TlUpsOutletGroupEntry ::= SEQUENCE {
tlUpsOutletGroupIndex PositiveInteger,
tlUpsOutletGroupRowStatus RowStatus,
tlUpsOutletGroupName DisplayString,
tlUpsOutletGroupDesc DisplayString,
tlUpsOutletGroupState INTEGER,
tlUpsOutletGroupControl INTEGER }
tlUpsOutletGroupIndex OBJECT-TYPE
SYNTAX PositiveInteger
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the index number of this load group for the device."
::= { tlUpsOutletGroupEntry 1 }
tlUpsOutletGroupRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Row status for the tlUpsOutletGroupTable"
::= { tlUpsOutletGroupEntry 2 }
tlUpsOutletGroupName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of this outlet group."
::= { tlUpsOutletGroupEntry 3 }
tlUpsOutletGroupDesc OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A description for this outlet group."
::= { tlUpsOutletGroupEntry 4 }
tlUpsOutletGroupState OBJECT-TYPE
SYNTAX INTEGER {
unknown(0),
off(1),
on(2),
mixed(3) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current state of the outlet group."
::= { tlUpsOutletGroupEntry 5 }
tlUpsOutletGroupControl OBJECT-TYPE
SYNTAX INTEGER {
turnOff(1),
turnOn(2),
cycle(3) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Controls the state of every outlet associated with the group."
::= { tlUpsOutletGroupEntry 6 }
tlUpsMainOutlet OBJECT IDENTIFIER ::= { tlUpsObjects 12 }
tlUpsMainOutletState OBJECT-TYPE
SYNTAX INTEGER {
unknown(0),
off(1),
on(2),
mixed(3) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current state of the main output of the device."
::= { tlUpsMainOutlet 1 }
tlUpsMainOutletControllable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if this device has controllable outlets"
::= { tlUpsMainOutlet 2 }
tlUpsMainOutletControl OBJECT-TYPE
SYNTAX INTEGER {
idle(0),
turnOff(1),
turnOn(2),
cycle(3) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Controls the state of the main outlet of the device."
::= { tlUpsMainOutlet 3 }
tlUpsEnvironment OBJECT IDENTIFIER ::= { tlUpsObjects 13 }
tlUpsTemperature OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ambient temperature. The measurement returned will either be in
units of Celsius (C) or Fahrenheit (F) depending upon whether Metric
or English was selected for the reading by tlUpsConfigDisplayUnits."
::= { tlUpsEnvironment 1 }
---------------------------------------------------------------
-- UPS traps
---------------------------------------------------------------
tlUpsTraps OBJECT IDENTIFIER ::= { tlUPS 2 }
tlUpsTrapAlarmEntryAddedV1 TRAP-TYPE
ENTERPRISE tlUpsTraps
VARIABLES { tlUpsAlarmId, tlUpsAlarmDescr, tlUpsAlarmDetail, tlUpsAlarmDeviceId,
tlUpsAlarmDeviceName, tlUpsAlarmLocation, tlUpsAlarmGroup }
DESCRIPTION
"This trap is sent each time an alarm is inserted into
to the alarm table."
--#SUMMARY "UPS Alarm: %s - %s."
--#ARGUMENTS {6, 2}
--#SEVERITY WARNING
::= 3
tlUpsTrapAlarmEntryAdded NOTIFICATION-TYPE
OBJECTS { tlUpsAlarmId, tlUpsAlarmDescr, tlUpsAlarmDetail, tlUpsAlarmDeviceId,
tlUpsAlarmDeviceName, tlUpsAlarmLocation, tlUpsAlarmGroup }
STATUS current
DESCRIPTION
"This trap is sent each time an alarm is inserted into
to the alarm table."
--#SUMMARY "UPS Alarm: %s - %s."
--#ARGUMENTS {6, 2}
--#SEVERITY WARNING
::= { tlUpsTraps 3 }
tlUpsTrapAlarmEntryRemovedV1 TRAP-TYPE
ENTERPRISE tlUpsTraps
VARIABLES { tlUpsAlarmId, tlUpsAlarmDescr, tlUpsAlarmDetail, tlUpsAlarmDeviceId,
tlUpsAlarmDeviceName, tlUpsAlarmLocation, tlUpsAlarmGroup }
DESCRIPTION
"This trap is sent each time an alarm is removed from
the alarm table."
--#SUMMARY "UPS Alarm: %s - %s."
--#ARGUMENTS {6, 2}
--#SEVERITY WARNING
::= 4
tlUpsTrapAlarmEntryRemoved NOTIFICATION-TYPE
OBJECTS { tlUpsAlarmId, tlUpsAlarmDescr, tlUpsAlarmDetail, tlUpsAlarmDeviceId,
tlUpsAlarmDeviceName, tlUpsAlarmLocation, tlUpsAlarmGroup }
STATUS current
DESCRIPTION
"This trap is sent each time an alarm is removed from
the alarm table."
--#SUMMARY "UPS Alarm: %s - %s."
--#ARGUMENTS {6, 2}
--#SEVERITY WARNING
::= { tlUpsTraps 4 }
--------------------------------------------------------------------------
--------------------------------------------------------------------------
-- begin new traps
--------------------------------------------------------------------------
--------------------------------------------------------------------------
tlUpsTrapSystemStartup NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"Used to inform another entity of an engine's startup. The varbinds that follow are:
OBJ1 = tlEngineType
Obj1Value = The type of engine providing this data
OBJ2 = tlEngineSoftwareVersion
Obj2Value = The current version of the engine
OBJ3 = tlEngineMACAddr
Obj3Value = The MAC address of the engine
OBJ4 = tlUpsSnmpCardSerialNum
Obj4Value = The serial number of the SNMPWEBCARD [should be 0 on PC]
--- if this trap is extended, place all static OIDs above this mark. all objects below
--- the number of devices (tlNumDevices) is explicit as per device for enumeration by
--- the target receiver
OBJ5 = tlNumDevices
Obj5Value = The number of devices attached
--- The following objects will be replicated per each device:
OBJ6 = The OID for an entry of tlDevManufacturer, indexed by device
Obj6Value = The device's manufacturer
OBJ7 = The OID for an entry of tlDevModel, indexed by device
Obj7Value = The device's model name
OBJ8 = The OID for an entry of tlDevName, indexed by device
Obj8Value = The device's display name
OBJ9 = The OID for an entry of tlDevLocation, indexed by device
Obj9Value = The device's location
OBJ10 = The OID for an entry of tlDevRegion, indexed by device
Obj10Value= The device's region
OBJ11 = The OID for an entry of tlDevProtocol, indexed by device
Obj11Value= The device's protocol (display string format)
"
::= { tlUpsTraps 5 }
tlUpsTrapSystemShutdown NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"Used to inform another entity of an engine's startup. The varbinds that follow are:
OBJ1 = tlEngineType
Obj1Value = The type of engine providing this data
OBJ2 = tlEngineSoftwareVersion
Obj2Value = The current version of the engine
OBJ3 = tlEngineMACAddr
Obj3Value = The MAC address of the engine
OBJ4 = tlUpsSnmpCardSerialNum
Obj4Value = The serial number of the SNMPWEBCARD [should be 0 on PC]
--- if this trap is extended, place all static OIDs above this mark. all objects below
--- the number of devices (tlNumDevices) is explicit as per device for enumeration by
--- the target receiver
OBJ5 = tlNumDevices
Obj5Value = The number of devices attached
--- The following objects will be replicated per each device:
OBJ6 = The OID for an entry of tlDevManufacturer, indexed by device
Obj6Value = The device's manufacturer
OBJ7 = The OID for an entry of tlDevModel, indexed by device
Obj7Value = The device's model name
OBJ8 = The OID for an entry of tlDevName, indexed by device
Obj8Value = The device's display name
OBJ9 = The OID for an entry of tlDevLocation, indexed by device
Obj9Value = The device's location
OBJ10 = The OID for an entry of tlDevRegion, indexed by device
Obj10Value= The device's region
OBJ11 = The OID for an entry of tlDevProtocol, indexed by device
Obj11Value= The device's protocol (display string format)
"
::= { tlUpsTraps 6 }
--------------------------------------------------------------------------
--------------------------------------------------------------------------
--- end new traps
--------------------------------------------------------------------------
--------------------------------------------------------------------------
--------------------------------------------------------------------------
-- EnviroSense Device
--------------------------------------------------------------------------
tlEnviroSense OBJECT IDENTIFIER ::= { tripplite 101 }
tlEnvEnvironment OBJECT IDENTIFIER ::= { tlEnviroSense 1 }
tlEnvTemperatureData OBJECT IDENTIFIER ::= { tlEnvEnvironment 1 }
tlEnvTemperatureC OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ambient temperature (C)."
::= { tlEnvTemperatureData 1 }
tlEnvTemperatureF OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ambient temperature (F)."
::= { tlEnvTemperatureData 2 }
tlEnvTemperatureLowLimit OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lower alarm limit for ambient temperature (F)."
::= { tlEnvTemperatureData 3 }
tlEnvTemperatureHighLimit OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The upper alarm limit for ambient temperature (F)."
::= { tlEnvTemperatureData 4 }
tlEnvTemperatureInAlarm OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether or not temperature is in alarm."
::= { tlEnvTemperatureData 5 }
tlEnvHumidityData OBJECT IDENTIFIER ::= { tlEnvEnvironment 2 }
tlEnvHumidity OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ambient humidity (%)."
::= { tlEnvHumidityData 1 }
tlEnvHumidityLowLimit OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lower alarm limit for ambient humidity (%)."
::= { tlEnvHumidityData 2 }
tlEnvHumidityHighLimit OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The upper alarm limit for ambient humidity (%)."
::= { tlEnvHumidityData 3 }
tlEnvHumidityInAlarm OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether or not humidity is in alarm."
::= { tlEnvHumidityData 4 }
tlEnvContacts OBJECT IDENTIFIER ::= { tlEnviroSense 2 }
tlEnvContactTable OBJECT-TYPE
SYNTAX SEQUENCE OF TlEnvContactEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of contacts."
::= { tlEnvContacts 1 }
tlEnvContactEntry OBJECT-TYPE
SYNTAX TlEnvContactEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing information applicable to a particular contact."
INDEX {
tlEnvContactIndex }
::= { tlEnvContactTable 1 }
TlEnvContactEntry ::= SEQUENCE {
tlEnvContactIndex PositiveInteger,
tlEnvContactName DisplayString,
tlEnvContactStatus INTEGER,
tlEnvContactConfig INTEGER }
tlEnvContactIndex OBJECT-TYPE
SYNTAX PositiveInteger
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The table row index for the contact."
::= { tlEnvContactEntry 1 }
tlEnvContactName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name or description of the contact."
::= { tlEnvContactEntry 2 }
tlEnvContactStatus OBJECT-TYPE
SYNTAX INTEGER {
normal(0),
alarm(1) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current status of the contact."
::= { tlEnvContactEntry 3 }
tlEnvContactConfig OBJECT-TYPE
SYNTAX INTEGER {
normallyOpen(0),
normallyClosed(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configuration of the contact."
::= { tlEnvContactEntry 4 }
--------------------------------------------------------------------------
-- KVM over IP Device
--------------------------------------------------------------------------
-- this is a 3rd party MIB structure located at { tripplite 102 }
--------------------------------------------------------------------------
-- SR Cooling Device
--------------------------------------------------------------------------
tlCooling OBJECT IDENTIFIER ::= { tripplite 103 }
tlCoolingEnvironment OBJECT IDENTIFIER ::= { tlCooling 1 }
tlCoolingIdent OBJECT IDENTIFIER ::= { tlCoolingEnvironment 1 }
tlCoolingModel OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The model name for the AC Unit."
::= { tlCoolingIdent 1}
tlCoolingManufacturer OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The manufacturer of the AC Unit."
::= { tlCoolingIdent 2 }
tlCoolingSerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of the AC unit."
::= { tlCoolingIdent 3 }
tlCoolingFirmwareVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The firmware version of the AC Unit."
::= { tlCoolingIdent 4 }
tlCoolingHostSoftwareVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hardware version of the AC unit."
::= { tlCoolingIdent 5 }
tlCoolingName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The user defined name for the AC Unit."
::= { tlCoolingIdent 6 }
tlCoolingLocation OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The user defined location of the AC Unit."
::= { tlCoolingIdent 7 }
tlCoolingStatus OBJECT IDENTIFIER ::= { tlCoolingEnvironment 2 }
tlCoolingCondOutletTemp OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The condenser outlet air stream temperature in tenths of degrees in the units Celsius/Fahrenheit as specified in tlCoolingDisplayUnits."
::= { tlCoolingStatus 1 }
tlCoolingCondInletTemp OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The condenser inlet air stream temperature in tenths of degrees in the units Celsius/Fahrenheit as specified in tlCoolingDisplayUnits."
::= { tlCoolingStatus 2 }
tlCoolingRefrigerantTemp OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The temperature of the refrigerant in the suction line. This is displayed in tenths of degrees in the units Celsius/Fahrenheit as specified in tlCoolingDisplayUnits."
::= { tlCoolingStatus 3 }
tlCoolingEvapSurfaceTemp OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The surface temperature of the evaporator in tenths of degrees in the units Celsius/Fahrenheit as specified in tlCoolingDisplayUnits."
::= { tlCoolingStatus 4}
tlCoolingSuctionPressure OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The pressure of the compressor suction line in tenths of (Mpa/psi) depending on the value of tlCoolingDisplayUnits."
::= { tlCoolingStatus 5}
tlCoolingDischargePressure OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The pressure of the compressor discharge line in tenths of (Mpa/psi) depending on the value of tlCoolingDisplayUnits."
::= { tlCoolingStatus 6}
tlCoolingEvapFanSpeed OBJECT-TYPE
SYNTAX INTEGER {
off(0),
low(1),
medLow(2),
med (3),
medHi (4),
hi (5) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current speed of the evaporator fan."
::= { tlCoolingStatus 7}
tlCoolingCondFanSpeed OBJECT-TYPE
SYNTAX INTEGER {
off(0),
low(1),
hi (2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current speed of the condenser fan."
::= { tlCoolingStatus 8}
tlCoolingCompFrequency OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operating frequency of the compressor in tenths of Arms."
::= { tlCoolingStatus 9}
tlCoolingEEVPercentage OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The opening percentage of the EEV."
::= { tlCoolingStatus 10}
tlCoolingUnitCurrent OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The the total current draw of the unit in tenths of Arms."
::= { tlCoolingStatus 11}
tlCoolingFanCurrent OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Thethe current draw of the Evaporator and Condenser fans in tents of Arms."
::= { tlCoolingStatus 12 }
tlCoolingCompCurrent OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operating current of the compressor in Arms."
::= { tlCoolingStatus 13}
tlCoolingReturnAirTemp OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The return air temperature in tenths of degrees in the units Celsius/Fahrenheit as specified in tlCoolingDisplayUnits."
::= { tlCoolingStatus 14 }
tlCoolingSuctionTemp OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The temperature of the compressor suction line in tenths of degrees in the units Celsius/Fahrenheit as specified in tlCoolingDisplayUnits."
::= { tlCoolingStatus 15 }
tlCoolingSupplyAirTemp OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The supply air temperature in tenths of degrees in the units Celsius/Fahrenheit as specified in tlCoolingDisplayUnits."
::= { tlCoolingStatus 16 }
tlCoolingRunTimes OBJECT IDENTIFIER ::= { tlCoolingEnvironment 3 }
tlCoolingAirFilterRunHours OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total hours the air filter has been under operation."
::= { tlCoolingRunTimes 1 }
tlCoolingEvapFanRunDays OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total days the evaporator fan has been under operation."
::= { tlCoolingRunTimes 2 }
tlCoolingCondFanRunDays OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total days the condenser fan has been under operation."
::= { tlCoolingRunTimes 3 }
tlCoolingCompressorRunDays OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total days the compressor has been under operation."
::= { tlCoolingRunTimes 4 }
tlCoolingCondPumpRunDays OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total days the condensate pump has been under operation."
::= { tlCoolingRunTimes 5 }
tlCoolingAtomizerRunDays OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total days the atomizer has been under operation."
::= { tlCoolingRunTimes 6 }
tlCoolingConfig OBJECT IDENTIFIER ::= { tlCoolingEnvironment 4 }
tlCoolingOnOff OBJECT-TYPE
SYNTAX INTEGER {
turnOffUnit(0),
turnOnUnit(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Turn the unit off or on."
::= { tlCoolingConfig 1 }
tlCoolingSetPointTemp OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The set point temperature the unit will control the temperature to in tenths of degrees in Celsius or Fahrenheit based upon tleCoolDisplayUnits."
::= { tlCoolingConfig 2 }
tlCoolingAutoStart OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specified if the unit should start automatically on power up."
::= { tlCoolingConfig 3 }
tlCoolingFanSpeedOverride OBJECT-TYPE
SYNTAX INTEGER {
autoFanSpeed(0),
low(1),
medLow(2),
med(3),
medHi(4),
hi(5) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Speed of evaporator fan set by the user."
::= { tlCoolingConfig 4 }
tlCoolingControlType OBJECT-TYPE
SYNTAX INTEGER {
returnAirTemp(0),
remoteTemperature(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Which temperature to be used as a control point."
::= { tlCoolingConfig 5 }
tlCoolingCurrentRemoteTemp OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The external remote temperature in tenths of degrees in Celsius or Fahrenheit depending upon value of tlCoolingDisplayUnits"
::= { tlCoolingConfig 6 }
tlCoolingDisplayUnits OBJECT-TYPE
SYNTAX INTEGER {
metric(0),
english(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Selects English or Metric display for all readings."
::= { tlCoolingConfig 7 }
tlCoolingBeepOnKey OBJECT-TYPE
SYNTAX INTEGER {
noBeep(0),
beepOn(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates if the display sounds a beep when a key is pressed."
::= { tlCoolingConfig 8 }
tlCoolingOutputRelaySource OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
allAlarmsAndWarnings(1),
criticalAlarmsOnly(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The alarm level that causes the ouput relay to activate."
::= { tlCoolingConfig 9 }
tlCoolingOffOnLeak OBJECT-TYPE
SYNTAX INTEGER {
turnOff(0),
alarmOnly(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates if the unit should stop cooling when leak input is activated."
::= { tlCoolingConfig 10 }
tlCoolingOffOnInputContact OBJECT-TYPE
SYNTAX INTEGER {
turnOff(0),
alarmOnly(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates if the unit should stop cooling when input contact is activated."
::= { tlCoolingConfig 11 }
tlCoolingInputContactType OBJECT-TYPE
SYNTAX INTEGER {
ncRelay(0),
noRelay(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The input contact type."
::= { tlCoolingConfig 12 }
tlCoolingOutputRelayDefault OBJECT-TYPE
SYNTAX INTEGER {
nc(0),
no(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Type of contact to make when output relay is activated."
::= { tlCoolingConfig 13 }
tlCoolingAirFilterInterval OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of weeks before the air filter needs to be changed."
::= { tlCoolingConfig 14 }
tlCoolingWaterLeakContactType OBJECT-TYPE
SYNTAX INTEGER {
noRelay(0),
ncRelay(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The input contact type."
::= { tlCoolingConfig 15 }
tlCoolingThresholds OBJECT IDENTIFIER ::= { tlCoolingEnvironment 5 }
tlCoolingMaxAirFilterRunHours OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum interval for air filter run hours before warning is annunciated."
::= { tlCoolingThresholds 1 }
tlCoolingEnableAirFilterAlarm OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When enabled indicated that an alarm should occur when the maximum number of air filter run hours has been exceeded."
::= { tlCoolingThresholds 2 }
tlCoolingMaxSupplyTemp OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum allowed supply air temperature before firing an alarm."
::= { tlCoolingThresholds 3 }
tlCoolingMinSupplyTemp OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Minimum allowed supply air temperature allowed before firing an alarm."
::= { tlCoolingThresholds 4 }
tlCoolingTempDiffAlarm OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum allowed air temperature deviation from set allowed before firing an alarm."
::= { tlCoolingThresholds 5 }
tlCoolingMaxReturnAirTemp OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When enabled indicated that an alarm should occur when the maximum number of air filter run hours has been exceeded."
::= { tlCoolingThresholds 6 }
tlCoolingAlarm OBJECT IDENTIFIER ::= { tlCooling 6 }
tlCoolingWellKnownAlarms OBJECT IDENTIFIER ::= { tlCoolingAlarm 3 }
tlCoolingSupplyAirSensorFault OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The supply air sensor is in fault."
::= { tlCoolingWellKnownAlarms 1 }
tlCoolingReturnAirSensorFault OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The return air sensor is in fault."
::= { tlCoolingWellKnownAlarms 2 }
tlCoolingCondenserInletAirSensorFault OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The condenser inlet air sensor is in fault."
::= { tlCoolingWellKnownAlarms 3 }
tlCoolingCondenserOutletAirSensorFault OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The condenser outlet air sensor is in fault."
::= { tlCoolingWellKnownAlarms 4 }
tlCoolingSuctionTemperatureSensorFault OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The suction temperature sensor is in fault."
::= { tlCoolingWellKnownAlarms 5 }
tlCoolingEvaporatorTemperatureSensorFault OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The evaporator temperature sensor is in fault."
::= { tlCoolingWellKnownAlarms 6 }
tlCoolingAirFilterClogged OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The air filter is clogged."
::= { tlCoolingWellKnownAlarms 7 }
tlCoolingAirFilterRunHoursViolation OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The air filter run hours was violated."
::= { tlCoolingWellKnownAlarms 8 }
tlCoolingSuctionPressureSensorFault OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The suction pressure sensor is in fault."
::= { tlCoolingWellKnownAlarms 9 }
tlCoolingInverterCommunicationsFault OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The inverter communications is in fault."
::= { tlCoolingWellKnownAlarms 10 }
tlCoolingRemoteShutdownViaInputContact OBJECT-IDENTITY
STATUS current
DESCRIPTION
"A remote shutdown was triggerd by an input contact."
::= { tlCoolingWellKnownAlarms 11 }
tlCoolingCondensatePumpFault OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The condensate pump is in fault."
::= { tlCoolingWellKnownAlarms 12 }
tlCoolingLowRefrigerantStartupFault OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The low refrigerant startup is in fault."
::= { tlCoolingWellKnownAlarms 13 }
tlCoolingCondenserFanFault OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The condenser fan is in fault."
::= { tlCoolingWellKnownAlarms 14 }
tlCoolingCondenserFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The condenser has failed."
::= { tlCoolingWellKnownAlarms 15 }
tlCoolingEvaporatorCoolingFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The evaporator cooling is in fault."
::= { tlCoolingWellKnownAlarms 16 }
tlCoolingReturnAirTempHigh OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The return air temperature is high."
::= { tlCoolingWellKnownAlarms 17 }
tlCoolingSupplyAirTempHigh OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The supply air temperature is high."
::= { tlCoolingWellKnownAlarms 18 }
tlCoolingEvaporatorFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The evaporator has failed."
::= { tlCoolingWellKnownAlarms 19 }
tlCoolingEvaporatorFreezeUp OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The evaporator is frozen."
::= { tlCoolingWellKnownAlarms 20 }
tlCoolingDischargePressureHigh OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The discharge pressure is high."
::= { tlCoolingWellKnownAlarms 21 }
tlCoolingPressureGaugeFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The pressure gauge has failed."
::= { tlCoolingWellKnownAlarms 22 }
tlCoolingDischargePressurePersistentHigh OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The discharge pressure is persistently high."
::= { tlCoolingWellKnownAlarms 23 }
tlCoolingSuctionPressureLowStartFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Cannot start due to low suction pressure."
::= { tlCoolingWellKnownAlarms 24 }
tlCoolingSuctionPressureLow OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The suction pressure is low."
::= { tlCoolingWellKnownAlarms 25 }
tlCoolingSuctionPressurePersistentLow OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The suction pressure is persistently low."
::= { tlCoolingWellKnownAlarms 26 }
tlCoolingStartupLinePressureImbalance OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The startup line pressure is in imbalance."
::= { tlCoolingWellKnownAlarms 27 }
tlCoolingCompressorFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The compressor has failed."
::= { tlCoolingWellKnownAlarms 28 }
tlCoolingCurrentLimit OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The current is out of range."
::= { tlCoolingWellKnownAlarms 29 }
tlCoolingWaterLeak OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Water is leaking."
::= { tlCoolingWellKnownAlarms 30 }
tlCoolingFanUnderCurrent OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The fan is under current."
::= { tlCoolingWellKnownAlarms 31 }
tlCoolingFanOverCurrent OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The fan is over current."
::= { tlCoolingWellKnownAlarms 32 }
tlCoolingDischargePressureSensorFault OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The discharge pressure sensor is in fault."
::= { tlCoolingWellKnownAlarms 33 }
tlCoolingWaterFull OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Water is Full."
::= { tlCoolingWellKnownAlarms 34 }
tlCoolingAutoCoolingOn OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Automatic cooling was activated to lower the temperature below the
remote set point."
::= { tlCoolingWellKnownAlarms 35 }
tlCoolingPowerButtonPressed OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Power button was pressed on the front panel."
::= { tlCoolingWellKnownAlarms 36 }
tlCoolingDisconnectedFromDevice OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The device communications is disconnected."
::= { tlCoolingWellKnownAlarms 37 }
--------------------------------------------------------------------------
-- SRCOOLNET Device
--------------------------------------------------------------------------
tlSrCoolNet OBJECT IDENTIFIER ::= { tripplite 104}
tlSrCoolNetData OBJECT IDENTIFIER ::= { tlSrCoolNet 1 }
tlSrCoolNetIdent OBJECT IDENTIFIER ::= { tlSrCoolNetData 1 }
tlSrCoolNetModel OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The model name for the device attached to the SRCOOLNET."
::= { tlSrCoolNetIdent 1}
tlSrCoolNetManufacturer OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The manufacturer of the AC Unit."
::= { tlSrCoolNetIdent 2 }
tlSrCoolNetSerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of the SRCOOLNET device."
::= { tlSrCoolNetIdent 3 }
tlSrCoolNetHostSoftwareVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The software version of the SRCOOLNET device."
::= { tlSrCoolNetIdent 4 }
tlSrCoolNetName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The user defined name for the AC Unit."
::= { tlSrCoolNetIdent 5 }
tlSrCoolNetLocation OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The user defined location of the AC Unit."
::= { tlSrCoolNetIdent 6 }
tlSrCoolNetStatus OBJECT IDENTIFIER ::= { tlSrCoolNetData 2 }
tlSrCoolNetMode OBJECT-TYPE
SYNTAX INTEGER {
off (0),
idle (1),
cooling (2),
unknown (3),
dehumidifying (4),
defrost (5),
notconnected(6) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current mode of SRCOOLNET."
::= { tlSrCoolNetStatus 1}
tlSrCoolNetFanSpeed OBJECT-TYPE
SYNTAX INTEGER {
off (0),
low (1),
med (2),
hi (3) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current speed of the fan."
::= { tlSrCoolNetStatus 2}
tlSrCoolNetReturnAirTemp OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The return air stream temperature in tenths of degrees in the units Celsius/Fahrenheit as specified in tlSrCoolNetDisplayUnits."
::= { tlSrCoolNetStatus 3 }
tlSrCoolNetWaterFull OBJECT-TYPE
SYNTAX INTEGER {
waterNotFull(0),
waterFull(1) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the water reservoir is full or not full."
::= { tlSrCoolNetStatus 4 }
tlSrCoolNetCurrentRemoteTemp OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The EnviroSense temperature in tenths of degrees in Celsius or Fahrenheit depending upon value of tlSrCoolNetDisplayUnits.
Only available if EnviroSense is connected to SRCOOLNET."
::= { tlSrCoolNetStatus 5 }
tlSrCoolNetDisplayUnits OBJECT-TYPE
SYNTAX INTEGER {
metric(0),
english(1) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Selects English or Metric display for all readings. AC unit must be manually configured to match this setting."
::= { tlSrCoolNetStatus 6 }
tlSrCoolNetConfig OBJECT IDENTIFIER ::= { tlSrCoolNetData 3 }
tlSrCoolNetOnOff OBJECT-TYPE
SYNTAX INTEGER {
turnOffUnit(0),
turnOnUnit (1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Turn the unit off or on."
::= { tlSrCoolNetConfig 1 }
tlSrCoolSetMode OBJECT-TYPE
SYNTAX INTEGER {
cooling(0),
dehumidifying (1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the operating mode of cooling unit. Unit must be ON to set mode."
::= { tlSrCoolNetConfig 2 }
tlSrCoolNetSetPointTemp OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The local set point temperature in tenths of degrees in Celsius or Fahrenheit based upon tlSrCoolNetDisplayUnits."
::= { tlSrCoolNetConfig 3 }
tlSrCoolNetRemoteSetPointTemp OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The remote set point temperature in tenths of degrees in Celsius or Fahrenheit based upon tlSrCoolNetDisplayUnits.
Only available when EnviroSense is connected to SRCOOLNET."
::= { tlSrCoolNetConfig 4 }
tlSrCoolNetFanSpeedSetting OBJECT-TYPE
SYNTAX INTEGER {
auto(0),
low(1),
med(2),
high(3) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the fan speed of the AC unit."
::= { tlSrCoolNetConfig 5 }
tlSrCoolNetRemoteSetpointEnable OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Use remote temperature setpoint for control point versus return air temp. Only available when EnviroSense is connected
to SRCOOLNET."
::= { tlSrCoolNetConfig 6 }
tlSrCoolNetFanAlwaysOn OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Leave fans on when not cooling. Only available when EnviroSense is connected to SRCOOLNET."
::= { tlSrCoolNetConfig 7 }
tlSrCoolNetAlarm OBJECT IDENTIFIER ::= { tlSrCoolNet 2 }
tlSrCoolNetWellKnownAlarms OBJECT IDENTIFIER ::= { tlSrCoolNetAlarm 1 }
tlSrCoolNetWaterFullAlarm OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Water reservoir full."
::= { tlSrCoolNetWellKnownAlarms 1 }
--------------------------------------------------------------------------
-- Conformance definitions
--------------------------------------------------------------------------
tlConformance OBJECT IDENTIFIER ::= { tripplite 20 }
tlCompliances OBJECT IDENTIFIER ::= { tlConformance 1 }
tlGroups OBJECT IDENTIFIER ::= { tlConformance 2 }
tlSubsetGroups OBJECT IDENTIFIER ::= { tlGroups 1 }
tlBasicGroups OBJECT IDENTIFIER ::= { tlGroups 2 }
tlFullGroups OBJECT IDENTIFIER ::= { tlGroups 3 }
tlUpsFullGroups OBJECT IDENTIFIER ::= { tlFullGroups 100 }
tlUpsFullIdentGroup OBJECT-GROUP
OBJECTS {
tlUpsIdentUpsSoftwareChecksum,
tlUpsIdentSerialNum,
tlUpsIdentID,
tlUpsSelectedDeviceID }
STATUS current
DESCRIPTION
"The tlUpsFullIdentGroup defines objects which are common to the Ident
group of fully compliant Tripplite UPS's"
::= { tlUpsFullGroups 1 }
tlUpsFullBatteryGroup OBJECT-GROUP
OBJECTS {
tlUpsBatteryAge,
tlUpsTemperatureF }
STATUS current
DESCRIPTION
"The tlUpsFullBatteryGroup defines objects which are common to the Battery
group of fully compliant Tripplite UPS's"
::= { tlUpsFullGroups 2 }
tlUpsFullAlarmGroup OBJECT IDENTIFIER ::= { tlUpsFullGroups 6 }
tlUpsFullAlarmObjsGroup OBJECT-GROUP
OBJECTS {
tlUpsAlarmDevName,
tlUpsAlarmDevLocation,
tlUpsAlarmCategory }
STATUS current
DESCRIPTION
"The tlUpsFullAlarmObjsGroup defines objects which are common to
the Alarm group of fully compliant Tripplite UPS's"
::= { tlUpsFullAlarmGroup 1 }
--tlUpsFullAlarmsGroup NOTIFICATION-GROUP
-- NOTIFICATIONS { }
-- STATUS current
-- DESCRIPTION
-- "The tlUpsFullAlarmGroup defines notifications which are
-- common to the Alarm group of fully compliant Tripplite UPS's"
-- ::= { tlUpsFullAlarmGroup 2 }
tlUpsFullTestGroup OBJECT-GROUP
OBJECTS {
tlUpsTestDate,
tlUpsTestResultsDetail }
STATUS current
DESCRIPTION
"The tlUpsFullTestGroup defines objects which are common to the Test
group of fully compliant Tripplite UPS's"
::= { tlUpsFullGroups 7 }
tlUpsFullControlGroup OBJECT-GROUP
OBJECTS {
tlUpsWatchdogSupported,
tlUpsWatchdogSecsBeforeReboot }
STATUS current
DESCRIPTION
"The tlUpsFullControlGroup defines objects which are common to the Control
group of fully compliant Tripplite UPS's"
::= { tlUpsFullGroups 8 }
tlUpsFullConfigGroup OBJECT-GROUP
OBJECTS {
tlUpsConfigBattReplDate }
STATUS current
DESCRIPTION
"The tlUpsFullConfigGroup defines objects which are common to the Config
group of fully compliant Tripplite UPS's"
::= { tlUpsFullGroups 9 }
tlUpsFullOutletGroup OBJECT-GROUP
OBJECTS {
tlUpsOutletNumOutlets }
STATUS current
DESCRIPTION
"The tlUpsFullOutletGroup defines objects which are common to the Outlet
group of fully compliant Tripplite UPS's"
::= { tlUpsFullGroups 10 }
END
|