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
|
-------------------------------------------------------------------------------
--
-- SCHLEIFENBAUER-DATABUS-MIB.txt: Schleifenbauer MIB for databus devices
--
-- Copyright (c) 2016, 2020 by Schleifenbauer Holding BV
-- All rights reserved.
--
-------------------------------------------------------------------------------
SCHLEIFENBAUER-DATABUS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Integer32,
Unsigned32,
NOTIFICATION-TYPE
FROM SNMPv2-SMI
OBJECT-GROUP,
NOTIFICATION-GROUP,
MODULE-COMPLIANCE
FROM SNMPv2-CONF
TEXTUAL-CONVENTION,
DisplayString
FROM SNMPv2-TC
schleifenbauerMgmt
FROM SCHLEIFENBAUER-SMI;
schleifenbauerDatabusMIB MODULE-IDENTITY
LAST-UPDATED
"202004280000Z" -- April 28th, 2020
ORGANIZATION
"Schleifenbauer Engineering"
CONTACT-INFO
"Schleifenbauer Engineering
Alain Schuermans
Chief Technology Officer
Rietwaard 15
5236 WC 's-Hertogenbosch
The Netherlands
t +31 (0)73 52 30256
f +31 (0)73 521 23 83
alain@schleifenbauer.eu
www.schleifenbauer.eu"
DESCRIPTION
"This MIB describes the SNMP functions of network enabled databus
devices.
Copyright (c) 2016, 2020 by Schleifenbauer Holding BV
"
REVISION
"202004280000Z" -- April 28th, 2020
DESCRIPTION
"1. Added performance monitoring registers
2. Added sdbDevStUsbMode register
3. Added sdbDevIdDeviceType register
4. Added sdbDevIdLocateUnit"
REVISION
"201703060000Z" -- March 3rd, 2017
DESCRIPTION
"Renamed Deci prefix of custom TEXTUAL-CONVENTIONs to Centi"
REVISION
"201610210000Z" -- October 21th, 2016
DESCRIPTION
"1. Added sdbDevSsOutletVoltageDropAlert object.
2. Added sdbDevStAutoResetAlerts object.
3. Added sdbDevStExtendedNames object.
4. Added sdbDevSsOutletVoltageDropAlertDetected object."
REVISION
"201606160000Z" -- June 16th, 2016
DESCRIPTION
"1. Fixed incorrect range of sdbDevIdIndex."
REVISION
"201605100000Z" -- May 10th, 2016
DESCRIPTION
"1. Added sdbDevOutMtPowerVoltAmpere object.
2. Added sdbDevOutMtPowerWatt object."
REVISION
"201603240000Z" -- March 24th, 2016
DESCRIPTION
"1. Added sdbMgmtStsRingState object.
2. Added sdbMgmtStsBreachIndex object.
3. Added sdbMgmtStsRingStateChanged notification."
REVISION
"201602190000Z" -- February 19th, 2016
DESCRIPTION
"1. Fixed incorrect description of sdbDevIdIndex.
2. Fixed description of sdbDevSsSensorChangeAlertDetected. Removed
sdbDevSnsType from description."
REVISION
"201510230000Z" -- October 23th, 2015
DESCRIPTION
"The initial revision of this MIB module"
::= { schleifenbauerMgmt 1 }
CentiValue ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d-2"
STATUS current
DESCRIPTION
"Data type for reporting generic measurements associated with
environmental sensors. If the underlying hardware sensor indicates
21.1 degrees Celsius, then the SNMP agent will report a value of 2110
CentiValue."
SYNTAX Integer32 (0..327680)
KiloWattHour ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"Data type for reporting measurements associated with energy
accumulation sensors. If the underlying hardware sensor indicates 1
kWh, then the SNMP agent will report a value of 1 kWh."
SYNTAX Integer32 (0..16777215)
-- START MIB --
CentiAmpere ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d-2"
STATUS current
DESCRIPTION
"Data type for reporting measurements and thresholds associated with
current sensors. If the underlying hardware sensor indicates 1.1 A,
then the SNMP agent will report a value of 110 CentiAmpere."
SYNTAX Integer32 (0..327680)
CentiCelsius ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d-2"
STATUS current
DESCRIPTION
"Data type for reporting sensor readings associated with temperature
sensors. If the underlying hardware sensor indicates 20.1 degrees
Celsius, then the SNMP agent will report a value of 2010 CentiCelsius."
SYNTAX Integer32 (0..9900)
CentiPercent ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d-2"
STATUS current
DESCRIPTION
"Data type for reporting calculated percentages. If the calculated
percentage is 98.3%, then the SNMP agent will report a value of 9830
CentiPercent."
SYNTAX Integer32 (0..10000)
CentiVolt ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d-2"
STATUS current
DESCRIPTION
"Data type for reporting measurements and thresholds associated with
voltage sensors. If the underlying hardware sensor indicates 231.1 V,
then the SNMP agent will report a value of 23110 CentiVolt."
SYNTAX Integer32 (0..327680)
MilliSecond ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"Duration in milliseconds"
SYNTAX Integer32
Second ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"Duration in seconds."
SYNTAX Integer32
sdbMIBNotifications OBJECT IDENTIFIER ::= { schleifenbauerDatabusMIB 0 }
sdbMIBObjects OBJECT IDENTIFIER ::= { schleifenbauerDatabusMIB 1 }
sdbMIBConformance OBJECT IDENTIFIER ::= { schleifenbauerDatabusMIB 2 }
sdbMgmt OBJECT IDENTIFIER ::= { sdbMIBObjects 1}
sdbDevice OBJECT IDENTIFIER ::= { sdbMIBObjects 2 }
sdbMgmtStatus OBJECT IDENTIFIER ::= { sdbMgmt 1 }
sdbMgmtControl OBJECT IDENTIFIER ::= { sdbMgmt 2 }
sdbDevIdentification OBJECT IDENTIFIER ::= { sdbDevice 1 }
sdbDevConfiguration OBJECT IDENTIFIER ::= { sdbDevice 2 }
sdbDevSystemStatus OBJECT IDENTIFIER ::= { sdbDevice 3 }
sdbDevReset OBJECT IDENTIFIER ::= { sdbDevice 4 }
sdbDevSettings OBJECT IDENTIFIER ::= { sdbDevice 5 }
sdbDevInput OBJECT IDENTIFIER ::= { sdbDevice 6 }
sdbDevOutlet OBJECT IDENTIFIER ::= { sdbDevice 7 }
sdbDevSensor OBJECT IDENTIFIER ::= { sdbDevice 8 }
sdbDevPerformance OBJECT IDENTIFIER ::= { sdbDevice 9 }
sdbMIBCompliances OBJECT IDENTIFIER ::= { sdbMIBConformance 1 }
sdbMIBGroups OBJECT IDENTIFIER ::= { sdbMIBConformance 2 }
sdbMgmtStsDevices OBJECT-TYPE
SYNTAX Integer32 (1..512)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of devices on the databus."
::= { sdbMgmtStatus 1}
sdbMgmtStsAddressableDevices OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of devices on the databus addressable by snmp."
::= { sdbMgmtStatus 2 }
sdbMgmtStsNewDevices OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of new devices on the databus."
::= { sdbMgmtStatus 3 }
sdbMgmtStsDuplicateDevices OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of duplicate devices on the databus."
::= { sdbMgmtStatus 4 }
sdbMgmtStsRingState OBJECT-TYPE
SYNTAX INTEGER {
open(0),
closed(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the device is in a bridge-like mode, this will indicate the actual
state of the databus."
::= { sdbMgmtStatus 5 }
sdbMgmtStsRingBreachIndex OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the breach index if the current state of the data bus is
open. If the data bus is closed this has no meaning."
::= { sdbMgmtStatus 6 }
sdbMgmtCtrlScan OBJECT-TYPE
SYNTAX INTEGER {
idle(0),
scan(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Perform a bus scan.
To verify if scanning is completed the value of this object can be
read. During the bus scan the value remains 1. When the bus scan
completed the value will be 0."
::= { sdbMgmtControl 1 }
sdbMgmtCtrlRenumberAllFromN OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Renumber all devices on the databus.
If set to 0 all units will be set to 0. If set to another value, all
units will be numbered in sequence starting from the value set."
::= { sdbMgmtControl 2 }
sdbMgmtCtrlRenumberZeros OBJECT-TYPE
SYNTAX INTEGER {
idle(0),
renumber(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Renumber all devices on the databus having address 0.
Renumbering will be done in sequence. The sequence starts with the
highest address found on the databus."
::= { sdbMgmtControl 3 }
sdbMgmtCtrlDevicesTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdbMgmtCtrlDevicesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing information of devices connected to the databus.
The number of entries is given by the value of sdbMgmtStsDevices."
::= { sdbMgmtControl 4 }
sdbMgmtCtrlDevicesEntry OBJECT-TYPE
SYNTAX SdbMgmtCtrlDevicesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information entry containing objects of a particular databus device."
INDEX { sdbMgmtCtrlDevIndex }
::= { sdbMgmtCtrlDevicesTable 1 }
SdbMgmtCtrlDevicesEntry ::=
SEQUENCE {
sdbMgmtCtrlDevIndex Integer32,
sdbMgmtCtrlDevUnitAddress Integer32,
sdbMgmtCtrlDevHardwareAddress DisplayString,
sdbMgmtCtrlDevIsNew Integer32,
sdbMgmtCtrlDevIsDuplicate Integer32
}
sdbMgmtCtrlDevIndex OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique value for each device. Its value ranges between 1 and the
value of sdbMgmtStsDevices with a maximum of 255. The value for each
device will remain constant until the next scan is performed."
::= { sdbMgmtCtrlDevicesEntry 1 }
sdbMgmtCtrlDevUnitAddress OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"User defined address.
This will be used for addressing the device on the databus."
::= { sdbMgmtCtrlDevicesEntry 2 }
sdbMgmtCtrlDevHardwareAddress OBJECT-TYPE
SYNTAX DisplayString (SIZE(17))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Hardware serial number.
This cannot be changed. It can be used as backup unit address.
format as 3 unsigned ints separated by dashes: int - int - int"
::= { sdbMgmtCtrlDevicesEntry 3 }
sdbMgmtCtrlDevIsNew OBJECT-TYPE
SYNTAX INTEGER {
no(0),
yes(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indication if the device is new on the databus."
::= { sdbMgmtCtrlDevicesEntry 4 }
sdbMgmtCtrlDevIsDuplicate OBJECT-TYPE
SYNTAX
INTEGER {
no(0),
yes(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indication if the device is conflicting with another device on the
databus."
::= { sdbMgmtCtrlDevicesEntry 5 }
sdbDevIdTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdbDevIdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing identification information of devices connected to
the databus.
The number of entries is given by the value of
sdbMgmtStsAddressableDevices."
::= { sdbDevIdentification 1 }
sdbDevIdEntry OBJECT-TYPE
SYNTAX SdbDevIdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information entry containing information objects of a particular
databus device."
INDEX { sdbDevIdIndex }
::= { sdbDevIdTable 1 }
SdbDevIdEntry ::=
SEQUENCE {
sdbDevIdSPDMVersion Integer32,
sdbDevIdFirmwareVersion Integer32,
sdbDevIdBuildNumber DisplayString,
sdbDevIdSalesOrderNumber DisplayString,
sdbDevIdProductId DisplayString,
sdbDevIdSerialNumber DisplayString,
sdbDevIdHardwareAddress DisplayString,
sdbDevIdMacAddress DisplayString,
sdbDevIdUnitAddress Integer32,
sdbDevIdName DisplayString,
sdbDevIdLocation DisplayString,
sdbDevIdVanityTag DisplayString,
sdbDevIdIndex Integer32,
sdbDevIdDeviceType Integer32,
sdbDevIdLocateUnit Integer32
}
sdbDevIdSPDMVersion OBJECT-TYPE
SYNTAX Integer32 (0..9999)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Data model version."
::= { sdbDevIdEntry 1 }
sdbDevIdFirmwareVersion OBJECT-TYPE
SYNTAX Integer32 (0..9999)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The firmware revision number."
::= { sdbDevIdEntry 2 }
sdbDevIdBuildNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..12))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Date and time the firmware was built."
::= { sdbDevIdEntry 3 }
sdbDevIdSalesOrderNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"SP sales order number."
::= { sdbDevIdEntry 4 }
sdbDevIdProductId OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"SP product id."
::= { sdbDevIdEntry 5 }
sdbDevIdSerialNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"SP serial number."
::= { sdbDevIdEntry 6 }
sdbDevIdHardwareAddress OBJECT-TYPE
SYNTAX DisplayString (SIZE(17))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Hardware serial number.
This can not be changed. It can be used as backup unit address.
Format as 3 unsigned ints separated by dashes (-)
e.g. 12345-54321-00000"
::= { sdbDevIdEntry 7 }
sdbDevIdMacAddress OBJECT-TYPE
SYNTAX DisplayString (SIZE(17))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC address.
This can not be changed. It represents an 802 MAC address as if it
were transmitted least significant bit first.
Format as six groups of 2 hexadecimal digits separated by colons (:)
e.g. D0:22:12:B0:00:00"
::= { sdbDevIdEntry 8 }
sdbDevIdUnitAddress OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"User defined address.
This will be used for addressing the device on the databus."
::= { sdbDevIdEntry 9 }
sdbDevIdName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"User configurable device name or identifier."
::= { sdbDevIdEntry 10 }
sdbDevIdLocation OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"User configurable device location identifier."
::= { sdbDevIdEntry 11 }
sdbDevIdVanityTag OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Characters to be displayed as vanity text in display."
::= { sdbDevIdEntry 12 }
sdbDevIdIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique value for each device. Its value represents the unit address
of the device and is used to address individual devices in the tree.
The value for each device will remain constant until the next scan is
performed."
::= { sdbDevIdEntry 13 }
sdbDevIdDeviceType OBJECT-TYPE
SYNTAX INTEGER {
pdu(0),
dpm(1),
hpdu-G3(2),
dpm27e(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value for each device group.
Its value represents the device type of the device.
Refer to manual for more information."
::= { sdbDevIdEntry 14 }
sdbDevIdLocateUnit OBJECT-TYPE
SYNTAX INTEGER {
off(0),
on(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The LCD-backlight flashes in a heartbeat rhythm to locate the unit."
::= { sdbDevIdEntry 15 }
sdbDevCfTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdbDevCfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing configuration information of devices connected to
the databus.
The number of entries is given by the value of
sdbMgmtStsAddressableDevices."
::= { sdbDevConfiguration 1 }
sdbDevCfEntry OBJECT-TYPE
SYNTAX SdbDevCfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Configuration entry containing configuration objects of a particular
databus device."
INDEX { sdbDevIdIndex }
::= { sdbDevCfTable 1 }
SdbDevCfEntry ::=
SEQUENCE {
sdbDevCfPhases Integer32,
sdbDevCfOutletsTotal Integer32,
sdbDevCfOutletsSwitched Integer32,
sdbDevCfOutletsMetered Integer32,
sdbDevCfSensors Integer32,
sdbDevCfMaximumLoad Integer32
}
sdbDevCfPhases OBJECT-TYPE
SYNTAX Integer32 (0 | 1 | 3)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of phases for input metering."
::= { sdbDevCfEntry 1 }
sdbDevCfOutletsTotal OBJECT-TYPE
SYNTAX Integer32 (0..48)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of outlets including hardwired without switch/metered
modules."
::= { sdbDevCfEntry 2 }
sdbDevCfOutletsSwitched OBJECT-TYPE
SYNTAX Integer32 (0..48)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of switched outlets.
If outlet numbering is non-contiguous its the highest outlet number."
::= { sdbDevCfEntry 3 }
sdbDevCfOutletsMetered OBJECT-TYPE
SYNTAX Integer32 (0..48)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of metered outlets.
If outlet numbering is non-contiguous its the highest outlet number."
::= { sdbDevCfEntry 4 }
sdbDevCfSensors OBJECT-TYPE
SYNTAX Integer32 (0..16)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number sensors."
::= { sdbDevCfEntry 5 }
sdbDevCfMaximumLoad OBJECT-TYPE
SYNTAX Integer32 (16 | 32)
UNITS "A"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum rated load of device per phase"
::= { sdbDevCfEntry 6 }
sdbDevSsTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdbDevSsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing system status information of devices connected to
the databus.
The number of entries is given by the value of
sdbMgmtStsAddressableDevices."
::= { sdbDevSystemStatus 1 }
sdbDevSsEntry OBJECT-TYPE
SYNTAX SdbDevSsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"System status entry containing system status objects of a particular
databus device."
INDEX { sdbDevIdIndex }
::= { sdbDevSsTable 1 }
SdbDevSsEntry ::=
SEQUENCE {
sdbDevSsDeviceStatusCode Integer32,
sdbDevSsTemperatureAlert Integer32,
sdbDevSsInputCurrentAlert Integer32,
sdbDevSsOutletCurrentAlert Integer32,
sdbDevSsInputVoltageAlert Integer32,
sdbDevSsOutletCurrentDropAlert Integer32,
sdbDevSsInputCurrentDropAlert Integer32,
sdbDevSsSensorChangeAlert Integer32,
sdbDevSsOutletVoltageDropAlert Integer32
}
sdbDevSsDeviceStatusCode OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Returns an internal status or error code.
A value of 0 means OK.
If not 0 it can be any of the following codes. Multiple status codes
can be active at the same time. The value will be the sum of the
active status codes.
1 = alert flagged
2 = settings(s) initialized
4 = power-on reset
8 = external reset
16 = watchdog timer caused reset
32 = brownout detected
64 = controller error
128 = slave module was reset"
::= { sdbDevSsEntry 1 }
sdbDevSsTemperatureAlert OBJECT-TYPE
SYNTAX Integer32 (0..2)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An alert has been raised due to temperature exceeding treshhold.
0 = no alert
1 = internal temperature sensor
2 = external temperature sensor"
::= { sdbDevSsEntry 2 }
sdbDevSsInputCurrentAlert OBJECT-TYPE
SYNTAX Integer32 (0..3)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An alert has been raised due to current exceeding treshhold.
The value indicates the exceeding phase. 0 = no alert."
::= { sdbDevSsEntry 3 }
sdbDevSsOutletCurrentAlert OBJECT-TYPE
SYNTAX Integer32 (0..48)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An alert has been raised due to current exceeding treshhold.
The value indicates the exceeding outlet. 0 = no alert."
::= { sdbDevSsEntry 4 }
sdbDevSsInputVoltageAlert OBJECT-TYPE
SYNTAX Integer32 (0..3)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An alert has been raised due to a voltage dip.
The value indicates the dipped phase. 0 = no alert."
::= { sdbDevSsEntry 5 }
sdbDevSsOutletCurrentDropAlert OBJECT-TYPE
SYNTAX Integer32 (0..48)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An alert has been raised due to the current of a metered outlet
suddenly dropping to near zero, possibly indicating a blown fuse.
The value indicates the dropped outlet. 0 = no alert."
::= { sdbDevSsEntry 6 }
sdbDevSsInputCurrentDropAlert OBJECT-TYPE
SYNTAX Integer32 (0..3)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An alert has been raised due to the current of a metered input
suddenly dropping to near zero, possibly indicating a blown fuse.
The value indicates the dropped phase. 0 = no alert."
::= { sdbDevSsEntry 7 }
sdbDevSsSensorChangeAlert OBJECT-TYPE
SYNTAX Integer32 (0..16)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An alert has been raised due to a change in the number of sensors.
The value indicates the previous amount of sensors."
::= { sdbDevSsEntry 8 }
sdbDevSsOutletVoltageDropAlert OBJECT-TYPE
SYNTAX Integer32 (0..48)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An alert has been raised due to voltage drop on this outlet.
The value indicates the first failed outlet."
::= { sdbDevSsEntry 9 }
sdbDevRsTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdbDevRsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table providing reset capabilities to devices connected to the
databus.
The number of entries is given by the value of
sdbMgmtStsAddressableDevices."
::= { sdbDevReset 1 }
sdbDevRsEntry OBJECT-TYPE
SYNTAX SdbDevRsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Reset entry providing reset objects of a particular databus device."
INDEX { sdbDevIdIndex }
::= { sdbDevRsTable 1 }
SdbDevRsEntry ::=
SEQUENCE {
sdbDevRsReboot Integer32,
sdbDevRsResetAlerts Integer32,
sdbDevRsZeroInputKWhSubtotal Integer32,
sdbDevRsZeroOutletKWhSubtotal Integer32,
sdbDevRsResetPeaksAndDips Integer32
}
sdbDevRsReboot OBJECT-TYPE
SYNTAX
INTEGER {
idle(0),
reboot(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Warm reboot/reset of device controller.
NOTE: this will have NO effect on outlet status!"
::= { sdbDevRsEntry 1 }
sdbDevRsResetAlerts OBJECT-TYPE
SYNTAX
INTEGER {
idle(0),
reset(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Reset all alert signals and device status code."
::= { sdbDevRsEntry 2 }
sdbDevRsZeroInputKWhSubtotal OBJECT-TYPE
SYNTAX
INTEGER {
idle(0),
zero(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Reset of all input kWh subtotal counters to zero."
::= { sdbDevRsEntry 3 }
sdbDevRsZeroOutletKWhSubtotal OBJECT-TYPE
SYNTAX
INTEGER {
idle(0),
zero(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Reset of all outlet kWh subtotal counter to zero."
::= { sdbDevRsEntry 4 }
sdbDevRsResetPeaksAndDips OBJECT-TYPE
SYNTAX
INTEGER {
idle(0),
reset(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Reset all peak and dip values to zero."
::= { sdbDevRsEntry 5 }
sdbDevStTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdbDevStEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing setting information of devices connected to the
databus.
The number of entries is given by the value of
sdbMgmtStsAddressableDevices."
::= { sdbDevSettings 1 }
sdbDevStEntry OBJECT-TYPE
SYNTAX SdbDevStEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Setting entry containing settings objects of a particular databus
device."
INDEX { sdbDevIdIndex }
::= { sdbDevStTable 1 }
SdbDevStEntry ::=
SEQUENCE {
sdbDevStAutoResetAlerts Integer32,
sdbDevStExtendedNames Integer32,
sdbDevStPeakDuration MilliSecond,
sdbDevStFixedOutletDelay MilliSecond,
sdbDevStPowerSaverMode Second,
sdbDevStOutletPowerUpMode Integer32,
sdbDevStMaximumTemperature Integer32,
sdbDevStDisplayOrientation Integer32,
sdbDevStLocalAlertReset Integer32,
sdbDevStCurrentDropDetection Integer32,
sdbDevStUsbMode Integer32
}
sdbDevStAutoResetAlerts OBJECT-TYPE
SYNTAX Integer32 (0..65535)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Auto reset alerts configuration.
If set to 0 the auto reset alerts feature is disabled. If set to a
value greater then 0, the auto reset alerts feature is enabled and
alerts will get cleared after the configured amount of seconds since
the last alert condition have passed."
::= { sdbDevStEntry 2 }
sdbDevStExtendedNames OBJECT-TYPE
SYNTAX
INTEGER {
disabled(0),
enabled(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Use original or longer names for inputs, outlets and sensors."
::= { sdbDevStEntry 3 }
sdbDevStPeakDuration OBJECT-TYPE
SYNTAX MilliSecond (0..65535)
UNITS "ms"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Amount of ms a current peak should last before an alert is raised."
::= { sdbDevStEntry 4 }
sdbDevStFixedOutletDelay OBJECT-TYPE
SYNTAX MilliSecond (100..65535)
UNITS "ms"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Minimal delay between two successive relay switches in milliseconds.
Minimal delay is 100 ms. Will always be respected!"
::= { sdbDevStEntry 5 }
sdbDevStPowerSaverMode OBJECT-TYPE
SYNTAX Second (0 | 10 | 60 | 120 | 240)
UNITS "s"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set backlight on time in seconds.
0 keeps display always on.
Note that keeping the backlight on may decrease luminosity over time."
::= { sdbDevStEntry 6 }
sdbDevStOutletPowerUpMode OBJECT-TYPE
SYNTAX
INTEGER {
off(0), -- off
sameState(1), -- same state as at power down
sameStateDelayed(2) -- same state as at power down but delayed by
-- individual delay timer.
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Behaviour of outlets on power-up."
::= { sdbDevStEntry 7 }
sdbDevStMaximumTemperature OBJECT-TYPE
SYNTAX Integer32 (0..99)
UNITS "degrees Celsius"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum temperature threshold
An alert will be generated whenever the temperature is above this
value. Zero means disabled."
::= { sdbDevStEntry 8 }
sdbDevStDisplayOrientation OBJECT-TYPE
SYNTAX
INTEGER {
noDisplay(0),
verticalDisplayOnTop(1),
verticalDisplayUpsideDown(2),
horizontalDisplayAtLeft(3),
horizontalDisplayAtRight(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Display orientation."
::= { sdbDevStEntry 9 }
sdbDevStLocalAlertReset OBJECT-TYPE
SYNTAX
INTEGER {
notAllowed(0),
allowed(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Allow alerts to be reset locally on device by pushing one of the
buttons."
::= { sdbDevStEntry 10 }
sdbDevStCurrentDropDetection OBJECT-TYPE
SYNTAX
INTEGER {
off(0),
inputsOnly(1),
outletsOnly(2),
inputsAndOutlets(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables the current drop detection function."
::= { sdbDevStEntry 11 }
sdbDevStUsbMode OBJECT-TYPE
SYNTAX
INTEGER {
usbDisabled(0),
onlyFirmwareUpdates(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Allow the USB port to be used for specific tasks"
::= { sdbDevStEntry 13 }
sdbDevInTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdbDevInEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing information of inputs of devices connected to the
databus."
::= { sdbDevInput 1 }
sdbDevInEntry OBJECT-TYPE
SYNTAX SdbDevInEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Inputs entry containing objects of an input of a particular databus
device.
Note that this table has two indexes. sdbDevIdIndex to identify a
particular device and sdbDevInIndex to identify a particular input
of the device identified by sdbDevIdIndex."
INDEX {
sdbDevIdIndex,
sdbDevInIndex
}
::= { sdbDevInTable 1 }
SdbDevInEntry ::=
SEQUENCE {
sdbDevInIndex Integer32,
sdbDevInKWhTotal KiloWattHour,
sdbDevInKWhSubtotal KiloWattHour,
sdbDevInPowerFactor CentiPercent,
sdbDevInActualCurrent CentiAmpere,
sdbDevInPeakCurrent CentiAmpere,
sdbDevInActualVoltage CentiVolt,
sdbDevInMinVoltage CentiVolt,
sdbDevInPowerVoltAmpere Integer32,
sdbDevInPowerWatt Integer32,
sdbDevInMaxAmps CentiAmpere,
sdbDevInCTRatio Integer32,
sdbDevInName DisplayString,
sdbDevInZeroKWhSubtotal Integer32
}
sdbDevInIndex OBJECT-TYPE
SYNTAX Integer32 (1..48)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique value for each input. Its value ranges between 1 and the
value of sdbDevCfPhases."
::= { sdbDevInEntry 1 }
sdbDevInKWhTotal OBJECT-TYPE
SYNTAX KiloWattHour
UNITS "kWh"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total kWh value of an input. This value can not be reset."
::= { sdbDevInEntry 2 }
sdbDevInKWhSubtotal OBJECT-TYPE
SYNTAX KiloWattHour
UNITS "kWh"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Subtotal kWh value of an input. This value can be reset."
::= { sdbDevInEntry 3 }
sdbDevInPowerFactor OBJECT-TYPE
SYNTAX CentiPercent
UNITS "%"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Power factor of input.
The power factor of an AC power system is defined as the ratio of the
real or active power to the apparent power and is a number between 0
and 1. This value is expressed as a percentage between 0% and 100%."
::= { sdbDevInEntry 4 }
sdbDevInActualCurrent OBJECT-TYPE
SYNTAX CentiAmpere
UNITS "A"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Actual apparent, RMS current."
::= { sdbDevInEntry 5 }
sdbDevInPeakCurrent OBJECT-TYPE
SYNTAX CentiAmpere
UNITS "A"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak apparent, RMS current.
Highest value since last reset of the alerts."
::= { sdbDevInEntry 6 }
sdbDevInActualVoltage OBJECT-TYPE
SYNTAX CentiVolt
UNITS "V"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The actual voltage."
::= { sdbDevInEntry 7 }
sdbDevInMinVoltage OBJECT-TYPE
SYNTAX CentiVolt
UNITS "V"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"RMS voltage dip.
Lowest value since reset of alerts."
::= { sdbDevInEntry 8 }
sdbDevInPowerVoltAmpere OBJECT-TYPE
SYNTAX Integer32 (0..327680)
UNITS "VA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Calculated apparent power."
::= { sdbDevInEntry 9 }
sdbDevInPowerWatt OBJECT-TYPE
SYNTAX Integer32 (0..327680)
UNITS "W"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Calculated real power."
::= { sdbDevInEntry 10 }
sdbDevInMaxAmps OBJECT-TYPE
SYNTAX CentiAmpere
UNITS "A"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum current per input phase.
Should last at least sdbDevStPeakDuration ms before triggering an
alert."
::= { sdbDevInEntry 11 }
sdbDevInCTRatio OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The multiplier to use for the input CTs."
::= { sdbDevInEntry 12 }
sdbDevInName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..8))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"User configurable naming of inputs or phases."
::= { sdbDevInEntry 13 }
sdbDevInZeroKWhSubtotal OBJECT-TYPE
SYNTAX
INTEGER {
idle(0),
zero(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Reset input kWh subtotal counter of a single input to zero."
::= { sdbDevInEntry 14 }
sdbDevOutTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdbDevOutEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing information of outlets of devices connected to the
databus."
::= { sdbDevOutlet 1 }
sdbDevOutEntry OBJECT-TYPE
SYNTAX SdbDevOutEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Outlets entry containing objects of an outlet of a particular databus
device.
Note that this table has two indexes. sdbDevIdIndex to identify a
particular device and sdbDevOutIndex to identify a particular outlet
of the device identified by sdbDevIdIndex."
INDEX {
sdbDevIdIndex,
sdbDevOutIndex
}
::= { sdbDevOutTable 1 }
SdbDevOutEntry ::=
SEQUENCE {
sdbDevOutIndex Integer32,
sdbDevOutName DisplayString
}
sdbDevOutIndex OBJECT-TYPE
SYNTAX Integer32 (1..48)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique value for each outlet. Its value ranges between 1 and the
value of sdbDevCfOutletsTotal."
::= { sdbDevOutEntry 1 }
sdbDevOutName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..8))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"User configurable naming of individual outlets."
::= { sdbDevOutEntry 2 }
sdbDevOutMtTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdbDevOutMtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing information of metered outlets of devices connected
to the databus."
::= { sdbDevOutlet 2 }
sdbDevOutMtEntry OBJECT-TYPE
SYNTAX SdbDevOutMtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Metered outlets entry containing objects of a metered outlet of a
particular databus device.
Note that this table has two indexes. sdbDevIdIndex to identify a
particular device and sdbDevOutMtIndex to identify a particular outlet
of the device identified by sdbDevIdIndex."
INDEX {
sdbDevIdIndex,
sdbDevOutMtIndex
}
::= { sdbDevOutMtTable 1 }
SdbDevOutMtEntry ::=
SEQUENCE {
sdbDevOutMtIndex Integer32,
sdbDevOutMtKWhTotal KiloWattHour,
sdbDevOutMtKWhSubtotal KiloWattHour,
sdbDevOutMtPowerFactor CentiPercent,
sdbDevOutMtActualCurrent CentiAmpere,
sdbDevOutMtPeakCurrent CentiAmpere,
sdbDevOutMtActualVoltage CentiVolt,
sdbDevOutMtMaxAmps CentiAmpere,
sdbDevOutMtCTRatio Integer32,
sdbDevOutMtPowerVoltAmpere Integer32,
sdbDevOutMtPowerWatt Integer32
}
sdbDevOutMtIndex OBJECT-TYPE
SYNTAX Integer32 (1..48)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique value for each outlet. Its value ranges between 1 and the
value of sdbDevCfOutletsMetered."
::= { sdbDevOutMtEntry 1 }
sdbDevOutMtKWhTotal OBJECT-TYPE
SYNTAX KiloWattHour
UNITS "kWh"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total kWh value of an outlet. This value can not be reset."
::= { sdbDevOutMtEntry 2 }
sdbDevOutMtKWhSubtotal OBJECT-TYPE
SYNTAX KiloWattHour
UNITS "kWh"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Subotal kWh value of an outlet. This value can be reset."
::= { sdbDevOutMtEntry 3 }
sdbDevOutMtPowerFactor OBJECT-TYPE
SYNTAX CentiPercent
UNITS "%"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Power factor of outlet.
The power factor of an AC power system is defined as the ratio of the
real or active power to the apparent power and is a number between 0
and 1. This number is expressed as a percentage between 0% and 100%."
::= { sdbDevOutMtEntry 4 }
sdbDevOutMtActualCurrent OBJECT-TYPE
SYNTAX CentiAmpere
UNITS "A"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Actual apparent, RMS current."
::= { sdbDevOutMtEntry 5 }
sdbDevOutMtPeakCurrent OBJECT-TYPE
SYNTAX CentiAmpere
UNITS "A"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak apparent, RMS current.
Highest value since last reset of the alerts."
::= { sdbDevOutMtEntry 6 }
sdbDevOutMtActualVoltage OBJECT-TYPE
SYNTAX CentiVolt
UNITS "V"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Actual voltage on outlet."
::= { sdbDevOutMtEntry 7 }
sdbDevOutMtMaxAmps OBJECT-TYPE
SYNTAX CentiAmpere
UNITS "A"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum current per outlet.
Should last at least sdbDevStPeakDuration ms before triggering an
alert."
::= { sdbDevOutMtEntry 8 }
sdbDevOutMtCTRatio OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The multiplier to use for the outlet CTs."
::= { sdbDevOutMtEntry 9 }
sdbDevOutMtPowerVoltAmpere OBJECT-TYPE
SYNTAX Integer32 (0..327680)
UNITS "VA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Calculated apparent power."
::= { sdbDevOutMtEntry 10 }
sdbDevOutMtPowerWatt OBJECT-TYPE
SYNTAX Integer32 (0..327680)
UNITS "W"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Calculated real power."
::= { sdbDevOutMtEntry 11 }
sdbDevOutSwTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdbDevOutSwEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing information of switched outlets of devices
connected to the databus."
::= { sdbDevOutlet 3 }
sdbDevOutSwEntry OBJECT-TYPE
SYNTAX SdbDevOutSwEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Switched outlets entry containing objects of a switched outlet of a
particular databus device.
Note that this table has two indexes. sdbDevIdIndex to identify a
particular device and sdbDevOutSwIndex to identify a particular outlet
of the device identified by sdbDevIdIndex."
INDEX {
sdbDevIdIndex,
sdbDevOutSwIndex
}
::= { sdbDevOutSwTable 1 }
SdbDevOutSwEntry ::=
SEQUENCE {
sdbDevOutSwIndex Integer32,
sdbDevOutSwCurrentState Integer32,
sdbDevOutSwScheduled Integer32,
sdbDevOutSwUnlock Integer32,
sdbDevOutSwIndividualOutletDelay Second,
sdbDevOutSwReboot Integer32
}
sdbDevOutSwIndex OBJECT-TYPE
SYNTAX Integer32 (1..48)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique value for each outlet. Its value ranges between 1 and the
value of sdbDevCfOutletsSwitched."
::= { sdbDevOutSwEntry 1 }
sdbDevOutSwCurrentState OBJECT-TYPE
SYNTAX
INTEGER {
off(0),
on(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The actual state of the outlet relay.
Note that Writing is only effective after setting sdbDevOutSwUnlock."
::= { sdbDevOutSwEntry 2 }
sdbDevOutSwScheduled OBJECT-TYPE
SYNTAX
INTEGER {
idle(0),
scheduled(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A one indicates pending activity; the switch delay has not yet
expired."
::= { sdbDevOutSwEntry 3 }
sdbDevOutSwUnlock OBJECT-TYPE
SYNTAX
INTEGER {
locked(0),
unlocked(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Switching and rebooting is unlocked for 10 seconds by writing a 1."
::= { sdbDevOutSwEntry 4 }
sdbDevOutSwIndividualOutletDelay OBJECT-TYPE
SYNTAX Second (0..65535)
UNITS "s"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Delay before an individual outlet switches on at power-up."
::= { sdbDevOutSwEntry 5 }
sdbDevOutSwReboot OBJECT-TYPE
SYNTAX
INTEGER {
idle(0),
reboot(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Reboot outlet relay if current state is on and outlet is unlocked;
The outlet will be turned on after 10 seconds."
::= { sdbDevOutSwEntry 6 }
sdbDevMeasuresTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdbDevMeasuresEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing information of temperatures of devices connected to
the databus."
::= { sdbDevSensor 1 }
sdbDevMeasuresEntry OBJECT-TYPE
SYNTAX SdbDevMeasuresEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Device measures entry containing temperature information objects of a
particular databus device."
INDEX { sdbDevIdIndex }
::= { sdbDevMeasuresTable 1 }
SdbDevMeasuresEntry ::=
SEQUENCE {
sdbDevMsIntTemperature CentiCelsius,
sdbDevMsExtTemperature CentiCelsius,
sdbDevMsIntTemperaturePeak CentiCelsius,
sdbDevMsExtTemperaturePeak CentiCelsius
}
sdbDevMsIntTemperature OBJECT-TYPE
SYNTAX CentiCelsius
UNITS "degrees Celsius"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Actual internal device temperature in deg C"
::= { sdbDevMeasuresEntry 1 }
sdbDevMsExtTemperature OBJECT-TYPE
SYNTAX CentiCelsius
UNITS "degrees Celsius"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Actual external device temperature sensor in deg C."
::= { sdbDevMeasuresEntry 2 }
sdbDevMsIntTemperaturePeak OBJECT-TYPE
SYNTAX CentiCelsius
UNITS "degrees Celsius"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak internal device temperature since last reset of alerts."
::= { sdbDevMeasuresEntry 3 }
sdbDevMsExtTemperaturePeak OBJECT-TYPE
SYNTAX CentiCelsius
UNITS "degrees Celsius"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peak external device temperature since last reset of alerts."
::= { sdbDevMeasuresEntry 4 }
sdbDevSnsTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdbDevSnsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing information of sensors of devices connected to the
databus."
::= { sdbDevSensor 2 }
sdbDevSnsEntry OBJECT-TYPE
SYNTAX SdbDevSnsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Sensors entry containing objects of a sensor of a particular databus
device.
Note that this table has two indexes. sdbDevIdIndex to identify a
particular device and sdbDevSnsIndex to identify a particular sensor
of the device identified by sdbDevIdIndex."
INDEX {
sdbDevIdIndex,
sdbDevSnsIndex
}
::= { sdbDevSnsTable 1 }
SdbDevSnsEntry ::=
SEQUENCE {
sdbDevSnsIndex Integer32,
sdbDevSnsType DisplayString,
sdbDevSnsValue CentiValue,
sdbDevSnsName DisplayString
}
sdbDevSnsIndex OBJECT-TYPE
SYNTAX Integer32 (1..16)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique value for each sensor. Its value ranges between 1 and the
value of sdbDevCfSensors."
::= { sdbDevSnsEntry 1 }
sdbDevSnsType OBJECT-TYPE
SYNTAX DisplayString (SIZE(1))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of connected sensor.
T = Temperature (C)
H = Humidity (%)
I = dry switch contact"
::= { sdbDevSnsEntry 2 }
sdbDevSnsValue OBJECT-TYPE
SYNTAX CentiValue (0..327680)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Value of connected sensor"
::= { sdbDevSnsEntry 3 }
sdbDevSnsName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..6))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"User definable name for sensors."
::= { sdbDevSnsEntry 4 }
-- ---------------------------------------------------------------------------------------------
sdbDevPerformanceTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdbDevPerformanceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing information of sensors of devices connected to the
databus."
::= { sdbDevPerformance 1 }
sdbDevPerformanceEntry OBJECT-TYPE
SYNTAX SdbDevPerformanceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Performance counters of a particular databus device.
Note that this table has two indexes. sdbDevIdIndex to identify a
particular device and sdbDevPerformanceIndex to identify a particular counter
of the device identified by sdbDevIdIndex."
INDEX {
sdbDevIdIndex,
sdbDevPerformanceIndex
}
::= { sdbDevPerformanceTable 1 }
SdbDevPerformanceEntry ::=
SEQUENCE {
sdbDevPerformanceIndex Integer32,
sdbDevPerformanceValue Integer32,
sdbDevPerformanceMax Integer32,
sdbDevPerformanceLimit Integer32,
sdbDevPerformanceName DisplayString
}
sdbDevPerformanceIndex OBJECT-TYPE
SYNTAX Integer32 (1..16)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique value for each counter. Its value ranges between 1 and 16."
::= { sdbDevPerformanceEntry 1 }
sdbDevPerformanceValue OBJECT-TYPE
SYNTAX Integer32 (0..16777215)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Value of counter"
::= { sdbDevPerformanceEntry 2 }
sdbDevPerformanceMax OBJECT-TYPE
SYNTAX Integer32 (0..16777215)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max of counter"
::= { sdbDevPerformanceEntry 3 }
sdbDevPerformanceLimit OBJECT-TYPE
SYNTAX Integer32 (0..16777215)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Limit of counter"
::= { sdbDevPerformanceEntry 4 }
sdbDevPerformanceName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..12))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"User definable name for counter."
::= { sdbDevPerformanceEntry 5 }
-- ---------------------------------------------------------------------------------------------
sdbDevPerformanceResetTable OBJECT-TYPE
SYNTAX SEQUENCE OF SdbDevPerformanceResetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing the last reset reason of the device"
::= { sdbDevPerformance 2 }
sdbDevPerformanceResetEntry OBJECT-TYPE
SYNTAX SdbDevPerformanceResetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Setting entry containing settings objects of a particular databus
device."
INDEX { sdbDevIdIndex }
::= { sdbDevPerformanceResetTable 1 }
SdbDevPerformanceResetEntry ::=
SEQUENCE {
sdbDevPerformanceResetReason DisplayString,
sdbDevResetUptime Unsigned32
}
sdbDevPerformanceResetReason OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Last reset reason."
::= { sdbDevPerformanceResetEntry 1 }
sdbDevResetUptime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Uptime before last reset"
::= { sdbDevPerformanceResetEntry 2 }
-- ---------------------------------------------------------------------------------------------
sdbDevSsDeviceStatusCodeChanged NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"Device status code changed.
OBJECTS {
sdbDevSsDeviceStatusCode
}"
::= { sdbMIBNotifications 1 }
sdbDevSsTemperatureAlertDetected NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"Temperature alert detected.
Internal temperature alert:
OBJECTS {
sdbDevSsTemperatureAlert,
sdbDevMsIntTemperature,
sdbDevMsIntTemperaturePeak
}
External analog temperature alert:
OBJECTS {
sdbDevSsTemperatureAlert,
sdbDevMsExtTemperature,
sdbDevMsExtTemperaturePeak
}
External digital temperature alert:
OBJECTS {
sdbDevSsTemperatureAlert,
sdbDevSnsValue
}"
::= { sdbMIBNotifications 2 }
sdbDevSsInputCurrentAlertDetected NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"Input current alert detected.
OBJECTS {
sdbDevSsInputCurrentAlert,
sdbDevInActualCurrent
}"
::= { sdbMIBNotifications 3 }
sdbDevSsOutletCurrentAlertDetected NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"Outlet current alert detected.
OBJECTS {
sdbDevSsOutletCurrentAlert,
sdbDevOutMtActualCurrent
}"
::= { sdbMIBNotifications 4 }
sdbDevSsInputVoltageAlertDetected NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"Input voltage alert detected.
OBJECTS {
sdbDevSsInputVoltageAlert,
sdbDevInActualVoltage
}"
::= { sdbMIBNotifications 5 }
sdbDevSsOutletCurrentDropAlertDetected NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"Outlet current drop alert detected.
OBJECTS {
sdbDevSsOutletCurrentDropAlert,
sdbDevOutMtActualCurrent
}"
::= { sdbMIBNotifications 6 }
sdbDevSsInputCurrentDropAlertDetected NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"Input current drop alert detected.
OBJECTS {
sdbDevSsInputCurrentDropAlert,
sdbDevInActualCurrent
}"
::= { sdbMIBNotifications 7 }
sdbDevSsSensorChangeAlertDetected NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"Sensor channel change alert detected.
OBJECTS {
sdbDevSsSensorChangeAlert
}"
::= { sdbMIBNotifications 8 }
sdbMgmtStsRingStateChanged NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"Ring state changed.
Ring state changded to open:
OBJECTS {
sdbMgmtStsRingState,
sdbMgmtStsRingBreachIndex
}
Ring state changded to closed:
OBJECTS {
sdbMgmtStsRingState
}"
::= { sdbMIBNotifications 9 }
sdbDevSsOutletVoltageDropAlertDetected NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"Outlet voltage drop alert detected.
OBJECTS {
sdbDevSsOutletVoltageDropAlert,
sdbDevOutMtActualVoltage
}"
::= { sdbMIBNotifications 10 }
sdbMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The requirements for conformance to the SCHLEIFENBAUER-DATABUS-MIB."
MODULE SCHLEIFENBAUER-DATABUS-MIB
GROUP sdbMIBNotificationGroup
DESCRIPTION
"The notification group."
GROUP sdbMIBDevSensorGroup
DESCRIPTION
"The sensors group."
GROUP sdbMIBDevOutGroup
DESCRIPTION
"The outlet group."
GROUP sdbMIBDevOutMtGroup
DESCRIPTION
"The outletMetering group."
GROUP sdbMIBDevOutSwGroup
DESCRIPTION
"The outletSwitched group."
GROUP sdbMIBDevInGroup
DESCRIPTION
"The inputMeasures group."
GROUP sdbMIBDevStGroup
DESCRIPTION
"The settings group."
GROUP sdbMIBDevSsGroup
DESCRIPTION
"The systemStatus group."
GROUP sdbMIBDevCfGroup
DESCRIPTION
"The configuration group."
GROUP sdbMIBDevIdGroup
DESCRIPTION
"The identification group."
GROUP sdbMIBDevRsGroup
DESCRIPTION
"resettable attributes in device"
GROUP sdbMIBMgmtStatusGroup
DESCRIPTION
"The databus management status group."
GROUP sdbMIBMgmtControlGroup
DESCRIPTION
"The databus management control group."
GROUP sdbMIBDevPerformanceGroup
DESCRIPTION
"The databus management control group."
::= { sdbMIBCompliances 1 }
sdbMIBNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS {
sdbDevSsDeviceStatusCodeChanged,
sdbDevSsTemperatureAlertDetected,
sdbDevSsInputCurrentAlertDetected,
sdbDevSsOutletCurrentAlertDetected,
sdbDevSsInputVoltageAlertDetected,
sdbDevSsOutletCurrentDropAlertDetected,
sdbDevSsInputCurrentDropAlertDetected,
sdbDevSsSensorChangeAlertDetected,
sdbMgmtStsRingStateChanged,
sdbDevSsOutletVoltageDropAlertDetected
}
STATUS current
DESCRIPTION
"A collection of notifications."
::= { sdbMIBGroups 1 }
sdbMIBDevIdGroup OBJECT-GROUP
OBJECTS {
sdbDevIdSPDMVersion,
sdbDevIdFirmwareVersion,
sdbDevIdSalesOrderNumber,
sdbDevIdProductId,
sdbDevIdSerialNumber,
sdbDevIdHardwareAddress,
sdbDevIdUnitAddress,
sdbDevIdName,
sdbDevIdLocation,
sdbDevIdVanityTag,
sdbDevIdMacAddress,
sdbDevIdBuildNumber,
sdbDevIdDeviceType,
sdbDevIdLocateUnit
}
STATUS current
DESCRIPTION
"A collection of objects providing identification information about the
device."
::= { sdbMIBGroups 3 }
sdbMIBDevCfGroup OBJECT-GROUP
OBJECTS {
sdbDevCfPhases,
sdbDevCfOutletsTotal,
sdbDevCfOutletsSwitched,
sdbDevCfOutletsMetered,
sdbDevCfMaximumLoad,
sdbDevCfSensors
}
STATUS current
DESCRIPTION
"A collection of objects providing configuration information about the
device."
::= { sdbMIBGroups 4 }
sdbMIBDevSsGroup OBJECT-GROUP
OBJECTS {
sdbDevSsDeviceStatusCode,
sdbDevSsTemperatureAlert,
sdbDevSsInputCurrentAlert,
sdbDevSsOutletCurrentAlert,
sdbDevSsInputVoltageAlert,
sdbDevSsOutletCurrentDropAlert,
sdbDevSsInputCurrentDropAlert,
sdbDevSsSensorChangeAlert,
sdbDevSsOutletVoltageDropAlert
}
STATUS current
DESCRIPTION
"A collection of objects providing status information about the
device."
::= { sdbMIBGroups 5 }
sdbMIBDevRsGroup OBJECT-GROUP
OBJECTS {
sdbDevRsResetAlerts,
sdbDevRsResetPeaksAndDips,
sdbDevRsReboot,
sdbDevRsZeroInputKWhSubtotal,
sdbDevRsZeroOutletKWhSubtotal
}
STATUS current
DESCRIPTION
"Groups resettable attributes op the device."
::= { sdbMIBGroups 6 }
sdbMIBDevStGroup OBJECT-GROUP
OBJECTS {
sdbDevStAutoResetAlerts,
sdbDevStExtendedNames,
sdbDevStPeakDuration,
sdbDevStLocalAlertReset,
sdbDevStFixedOutletDelay,
sdbDevStPowerSaverMode,
sdbDevStOutletPowerUpMode,
sdbDevStMaximumTemperature,
sdbDevStDisplayOrientation,
sdbDevStCurrentDropDetection,
sdbDevStUsbMode
}
STATUS current
DESCRIPTION
"A collection of objects providing the actual settings about the
device."
::= { sdbMIBGroups 7 }
sdbMIBDevInGroup OBJECT-GROUP
OBJECTS {
sdbDevInKWhTotal,
sdbDevInKWhSubtotal,
sdbDevInPowerFactor,
sdbDevInActualCurrent,
sdbDevInPeakCurrent,
sdbDevInActualVoltage,
sdbDevInMinVoltage,
sdbDevInPowerVoltAmpere,
sdbDevInPowerWatt,
sdbDevInMaxAmps,
sdbDevInCTRatio,
sdbDevInName,
sdbDevInZeroKWhSubtotal
}
STATUS current
DESCRIPTION
"A collection of objects providing the actual input measurements of the
device."
::= { sdbMIBGroups 8 }
sdbMIBDevOutGroup OBJECT-GROUP
OBJECTS {
sdbDevOutName
}
STATUS current
DESCRIPTION
"A collection of objects providing the actual outlet measurements of
the device."
::= { sdbMIBGroups 9 }
sdbMIBDevOutMtGroup OBJECT-GROUP
OBJECTS {
sdbDevOutMtKWhTotal,
sdbDevOutMtKWhSubtotal,
sdbDevOutMtPowerFactor,
sdbDevOutMtActualCurrent,
sdbDevOutMtPeakCurrent,
sdbDevOutMtActualVoltage,
sdbDevOutMtMaxAmps,
sdbDevOutMtCTRatio,
sdbDevOutMtPowerVoltAmpere,
sdbDevOutMtPowerWatt
}
STATUS current
DESCRIPTION
"A collection of objects providing the actual outlet measurements of
the device."
::= { sdbMIBGroups 10 }
sdbMIBDevOutSwGroup OBJECT-GROUP
OBJECTS {
sdbDevOutSwCurrentState,
sdbDevOutSwScheduled,
sdbDevOutSwUnlock,
sdbDevOutSwIndividualOutletDelay,
sdbDevOutSwReboot
}
STATUS current
DESCRIPTION
"A collection of objects providing the actual outlet measurements of
the device."
::= { sdbMIBGroups 11 }
sdbMIBDevSensorGroup OBJECT-GROUP
OBJECTS {
sdbDevSnsType,
sdbDevSnsValue,
sdbDevSnsName,
sdbDevMsIntTemperature,
sdbDevMsExtTemperature,
sdbDevMsIntTemperaturePeak,
sdbDevMsExtTemperaturePeak
}
STATUS current
DESCRIPTION
"A collection of objects providing the actual environmental
measurements of the device."
::= { sdbMIBGroups 12 }
sdbMIBMgmtStatusGroup OBJECT-GROUP
OBJECTS {
sdbMgmtStsDevices,
sdbMgmtStsAddressableDevices,
sdbMgmtStsNewDevices,
sdbMgmtStsDuplicateDevices,
sdbMgmtStsRingState,
sdbMgmtStsRingBreachIndex
}
STATUS current
DESCRIPTION
"A collection of objects providing management status information about
the databus."
::= { sdbMIBGroups 13 }
sdbMIBMgmtControlGroup OBJECT-GROUP
OBJECTS {
sdbMgmtCtrlScan,
sdbMgmtCtrlRenumberAllFromN,
sdbMgmtCtrlRenumberZeros,
sdbMgmtCtrlDevUnitAddress,
sdbMgmtCtrlDevHardwareAddress,
sdbMgmtCtrlDevIsNew,
sdbMgmtCtrlDevIsDuplicate
}
STATUS current
DESCRIPTION
"A collection of objects providing management control information about
the databus."
::= { sdbMIBGroups 14 }
sdbMIBDevPerformanceGroup OBJECT-GROUP
OBJECTS {
sdbDevPerformanceValue,
sdbDevPerformanceMax,
sdbDevPerformanceLimit,
sdbDevPerformanceName,
sdbDevPerformanceResetReason,
sdbDevResetUptime
}
STATUS current
DESCRIPTION
"A collection of objects providing performance information about the MCU"
::= { sdbMIBGroups 15 }
END
|