diff --git a/includes/discovery/sensors/frequency/apc.inc.php b/includes/discovery/sensors/frequency/apc.inc.php index d3e3e01748..793567c041 100644 --- a/includes/discovery/sensors/frequency/apc.inc.php +++ b/includes/discovery/sensors/frequency/apc.inc.php @@ -46,28 +46,46 @@ foreach (explode("\n", $oids) as $data) { } } -$oids = snmp_get($device, '.1.3.6.1.4.1.318.1.1.1.3.2.4.0', '-OsqnU', ''); +// upsHighPrecInputFrequency +$oids = snmp_get($device, '.1.3.6.1.4.1.318.1.1.1.3.3.4.0', '-OsqnU', ''); d_echo($oids . "\n"); +$divisor = 10; +$index = '3.3.4.0'; + +if (! $oids) { + // upsAdvInputFrequency, used in case high precision is not available + $oids = snmp_get($device, '.1.3.6.1.4.1.318.1.1.1.3.2.4.0', '-OsqnU', ''); + d_echo($oids . "\n"); + $divisor = 1; + $index = '3.2.4.0'; +} if ($oids) { echo ' APC In '; [$oid,$current] = explode(' ', $oids); - $divisor = 1; $type = 'apc'; - $index = '3.2.4.0'; $descr = 'Input'; - discover_sensor($valid['sensor'], 'frequency', $device, $oid, $index, $type, $descr, $divisor, '1', null, null, null, null, $current); + discover_sensor($valid['sensor'], 'frequency', $device, $oid, $index, $type, $descr, $divisor, '1', null, null, null, null, $current / $divisor); } -$oids = snmp_get($device, '.1.3.6.1.4.1.318.1.1.1.4.2.2.0', '-OsqnU', ''); +// upsHighPrecOutputFrequency +$oids = snmp_get($device, '.1.3.6.1.4.1.318.1.1.1.4.3.2.0', '-OsqnU', ''); d_echo($oids . "\n"); +$divisor = 10; +$index = '4.3.2.0'; + +if (! $oids) { + // upsAdvOutputFrequency, used in case high precision is not available + $oids = snmp_get($device, '.1.3.6.1.4.1.318.1.1.1.4.2.2.0', '-OsqnU', ''); + d_echo($oids . "\n"); + $divisor = 1; + $index = '4.2.2.0'; +} if ($oids) { echo ' APC Out '; [$oid,$current] = explode(' ', $oids); - $divisor = 1; $type = 'apc'; - $index = '4.2.2.0'; $descr = 'Output'; - discover_sensor($valid['sensor'], 'frequency', $device, $oid, $index, $type, $descr, $divisor, '1', null, null, null, null, $current); + discover_sensor($valid['sensor'], 'frequency', $device, $oid, $index, $type, $descr, $divisor, '1', null, null, null, null, $current / $divisor); } diff --git a/includes/discovery/sensors/temperature/apc.inc.php b/includes/discovery/sensors/temperature/apc.inc.php index ec15868e8b..88aa9029e7 100644 --- a/includes/discovery/sensors/temperature/apc.inc.php +++ b/includes/discovery/sensors/temperature/apc.inc.php @@ -1,17 +1,25 @@ 1) { } } } - $oids = snmp_get($device, '.1.3.6.1.4.1.318.1.1.1.3.2.1.0', '-OsqnU'); + // upsHighPrecInputLineVoltage + $oids = snmp_get($device, '.1.3.6.1.4.1.318.1.1.1.3.3.1.0', '-OsqnU'); d_echo($oids . "\n"); + $divisor = 10; + $index = '3.3.1.0'; + if (! $oids) { + // upsAdvInputLineVoltage, used in case high precision is not available + $oids = snmp_get($device, '.1.3.6.1.4.1.318.1.1.1.3.2.1.0', '-OsqnU', ''); + d_echo($oids . "\n"); + $divisor = 1; + $index = '3.2.1.0'; + } if ($oids) { echo ' APC In '; [$oid,$current] = explode(' ', $oids); - $divisor = 1; $type = 'apc'; - $index = '3.2.1.0'; $descr = 'Input'; - discover_sensor($valid['sensor'], 'voltage', $device, $oid, $index, $type, $descr, $divisor, '1', null, null, null, null, $current); + discover_sensor($valid['sensor'], 'voltage', $device, $oid, $index, $type, $descr, $divisor, '1', null, null, null, null, $current / $divisor); } - $oids = snmp_get($device, '.1.3.6.1.4.1.318.1.1.1.4.2.1.0', '-OsqnU'); + // upsHighPrecOutputVoltage + $oids = snmp_get($device, '.1.3.6.1.4.1.318.1.1.1.4.3.1.0', '-OsqnU'); d_echo($oids . "\n"); + $divisor = 10; + $index = '4.3.1.0'; + if (! $oids) { + // upsAdvOutputVoltage, used in case high precision is not available + $oids = snmp_get($device, '.1.3.6.1.4.1.318.1.1.1.4.2.1.0', '-OsqnU', ''); + d_echo($oids . "\n"); + $divisor = 1; + $index = '4.2.1.0'; + } if ($oids) { echo ' APC Out '; [$oid,$current] = explode(' ', $oids); - $divisor = 1; $type = 'apc'; - $index = '4.2.1.0'; $descr = 'Output'; - discover_sensor($valid['sensor'], 'voltage', $device, $oid, $index, $type, $descr, $divisor, '1', null, null, null, null, $current); + discover_sensor($valid['sensor'], 'voltage', $device, $oid, $index, $type, $descr, $divisor, '1', null, null, null, null, $current / $divisor); } // rPDUIdentDeviceLinetoLineVoltage $oids = snmp_get($device, '.1.3.6.1.4.1.318.1.1.12.1.15.0', '-OsqnU'); diff --git a/tests/data/apc_smx750i.json b/tests/data/apc_sua1500rmi2u.json similarity index 82% rename from tests/data/apc_smx750i.json rename to tests/data/apc_sua1500rmi2u.json index 505ff0ec41..e61a806223 100644 --- a/tests/data/apc_smx750i.json +++ b/tests/data/apc_sua1500rmi2u.json @@ -4,15 +4,15 @@ "devices": [ { "sysName": "", - "sysObjectID": ".1.3.6.1.4.1.318.1.3.27", - "sysDescr": "APC Web/SNMP Management Card (MB:v4.1.0 PF:v6.6.4 PN:apc_hw05_aos_664.bin AF1:v6.6.4 AN1:apc_hw05_sumx_664.bin MN:AP9631 HR:08 SN: MD:07/07/2017) (Embedded PowerNet SNMP Agent SW v2.2 compatible)", + "sysObjectID": ".1.3.6.1.4.1.318.1.3.2.7", + "sysDescr": "APC Web/SNMP Management Card (MB:v3.9.2 PF:v3.7.3 PN:apc_hw02_aos_373.bin AF1:v3.7.2 AN1:apc_hw02_sumx_372.bin MN:UPS_IDEN HR:A10 SN: FFFFFFFFFFFF MD:06/28/2010) (Embedded PowerNet SNMP Agent SW v2.2 compatible)", "sysContact": "", - "version": "AOS v6.6.4 / App v6.6.4", - "hardware": "Smart-UPS X 750 UPS 09.9 (ID20)", + "version": "AOS v3.7.3 / App v3.7.2", + "hardware": "Smart-UPS 1500 RM 617.3.I", "features": null, "os": "apc", "type": "power", - "serial": "", + "serial": "FFFFFFFFFFFF", "icon": "apc.svg", "location": "" } @@ -134,8 +134,8 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "vmac0", - "ifName": "vmac0", + "ifDescr": "lance", + "ifName": "lance", "portName": null, "ifIndex": 2, "ifSpeed": null, @@ -149,7 +149,7 @@ "ifDuplex": null, "ifMtu": null, "ifType": "ethernetCsmacd", - "ifAlias": "vmac0", + "ifAlias": "lance", "ifPhysAddress": null, "ifHardType": null, "ifLastChange": 0, @@ -348,11 +348,11 @@ "port_descr_circuit": null, "port_descr_speed": null, "port_descr_notes": null, - "ifDescr": "vmac0", - "ifName": "vmac0", + "ifDescr": "lance", + "ifName": "lance", "portName": null, "ifIndex": 2, - "ifSpeed": 100000000, + "ifSpeed": 10000000, "ifSpeed_prev": null, "ifConnectorPresent": null, "ifPromiscuousMode": null, @@ -363,10 +363,10 @@ "ifDuplex": null, "ifMtu": 1500, "ifType": "ethernetCsmacd", - "ifAlias": "vmac0", - "ifPhysAddress": null, + "ifAlias": "lance", + "ifPhysAddress": "00c0b7231b87", "ifHardType": null, - "ifLastChange": 25, + "ifLastChange": 0, "ifVlan": "", "ifTrunk": null, "counter_in": null, @@ -385,11 +385,11 @@ "pagpEthcOperationMode": null, "pagpDeviceId": null, "pagpGroupIfIndex": null, - "ifInUcastPkts": 5905, + "ifInUcastPkts": 807578, "ifInUcastPkts_prev": 0, "ifInUcastPkts_delta": null, "ifInUcastPkts_rate": null, - "ifOutUcastPkts": 6364, + "ifOutUcastPkts": 807746, "ifOutUcastPkts_prev": 0, "ifOutUcastPkts_delta": null, "ifOutUcastPkts_rate": null, @@ -401,20 +401,20 @@ "ifOutErrors_prev": 0, "ifOutErrors_delta": null, "ifOutErrors_rate": null, - "ifInOctets": 603928, + "ifInOctets": 80990730, "ifInOctets_prev": 0, "ifInOctets_delta": null, "ifInOctets_rate": null, - "ifOutOctets": 1726113, + "ifOutOctets": 86138588, "ifOutOctets_prev": 0, "ifOutOctets_delta": null, "ifOutOctets_rate": null, "poll_prev": null, - "ifInNUcastPkts": 58, + "ifInNUcastPkts": 10430, "ifInNUcastPkts_prev": 0, "ifInNUcastPkts_delta": null, "ifInNUcastPkts_rate": null, - "ifOutNUcastPkts": 27, + "ifOutNUcastPkts": 6215, "ifOutNUcastPkts_prev": 0, "ifOutNUcastPkts_delta": null, "ifOutNUcastPkts_rate": null, @@ -488,7 +488,7 @@ "group": null, "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": 0.6, + "sensor_current": 0, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -505,12 +505,12 @@ "sensor_deleted": 0, "sensor_class": "frequency", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.3.2.4.0", - "sensor_index": "3.2.4.0", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.3.3.4.0", + "sensor_index": "3.3.4.0", "sensor_type": "apc", "sensor_descr": "Input", "group": null, - "sensor_divisor": 1, + "sensor_divisor": 10, "sensor_multiplier": 1, "sensor_current": 50, "sensor_limit": 52.5, @@ -529,12 +529,12 @@ "sensor_deleted": 0, "sensor_class": "frequency", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.4.2.2.0", - "sensor_index": "4.2.2.0", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.4.3.2.0", + "sensor_index": "4.3.2.0", "sensor_type": "apc", "sensor_descr": "Output", "group": null, - "sensor_divisor": 1, + "sensor_divisor": 10, "sensor_multiplier": 1, "sensor_current": 50, "sensor_limit": 52.5, @@ -560,7 +560,7 @@ "group": null, "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": 20.2, + "sensor_current": 16.9, "sensor_limit": 80, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -584,7 +584,7 @@ "group": null, "sensor_divisor": 6000, "sensor_multiplier": 1, - "sensor_current": 570900, + "sensor_current": 396000, "sensor_limit": 3000, "sensor_limit_warn": 2000, "sensor_limit_low": 5, @@ -597,54 +597,6 @@ "user_func": null, "state_name": null }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.318.1.1.10.2.3.4.1.3.1", - "sensor_index": "Door.1", - "sensor_type": "Door", - "sensor_descr": "Door", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "state_name": "Door" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.318.1.1.10.2.3.4.1.3.2", - "sensor_index": "Fan.2", - "sensor_type": "Fan", - "sensor_descr": "Fan", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "state_name": "Fan" - }, { "sensor_deleted": 0, "sensor_class": "state", @@ -697,17 +649,17 @@ "sensor_deleted": 0, "sensor_class": "temperature", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.2.2.2.0", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.2.3.2.0", "sensor_index": "0", "sensor_type": "apc", "sensor_descr": "Internal Temperature", "group": null, - "sensor_divisor": 1, + "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": 31, - "sensor_limit": 51, + "sensor_current": 26.1, + "sensor_limit": 46.1, "sensor_limit_warn": null, - "sensor_limit_low": 21, + "sensor_limit_low": 16.1, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -724,15 +676,15 @@ "sensor_oid": ".1.3.6.1.4.1.318.1.1.10.2.3.2.1.4.1", "sensor_index": "1", "sensor_type": "apc", - "sensor_descr": "Port 1 Temp 1", + "sensor_descr": "AP9512T", "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 23, - "sensor_limit": 43, - "sensor_limit_warn": null, - "sensor_limit_low": 13, - "sensor_limit_low_warn": null, + "sensor_current": 26, + "sensor_limit": 46, + "sensor_limit_warn": 40, + "sensor_limit_low": 16, + "sensor_limit_low_warn": 10, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": null, @@ -745,17 +697,17 @@ "sensor_deleted": 0, "sensor_class": "voltage", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.2.2.8.0", - "sensor_index": "2.2.8.0", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.2.3.4.0", + "sensor_index": "2.3.4.0", "sensor_type": "apc", "sensor_descr": "Battery Bus", "group": null, - "sensor_divisor": 1, + "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": 54, - "sensor_limit": 62.1, + "sensor_current": 27.5, + "sensor_limit": 31.625, "sensor_limit_warn": null, - "sensor_limit_low": 45.9, + "sensor_limit_low": 23.375, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -769,17 +721,17 @@ "sensor_deleted": 0, "sensor_class": "voltage", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.3.2.1.0", - "sensor_index": "3.2.1.0", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.3.3.1.0", + "sensor_index": "3.3.1.0", "sensor_type": "apc", "sensor_descr": "Input", "group": null, - "sensor_divisor": 1, + "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": 232, - "sensor_limit": 266.8, + "sensor_current": 239, + "sensor_limit": 274.85, "sensor_limit_warn": null, - "sensor_limit_low": 197.2, + "sensor_limit_low": 203.15, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -793,17 +745,17 @@ "sensor_deleted": 0, "sensor_class": "voltage", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.4.2.1.0", - "sensor_index": "4.2.1.0", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.4.3.1.0", + "sensor_index": "4.3.1.0", "sensor_type": "apc", "sensor_descr": "Output", "group": null, - "sensor_divisor": 1, + "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": 232, - "sensor_limit": 266.8, + "sensor_current": 239, + "sensor_limit": 274.85, "sensor_limit_warn": null, - "sensor_limit_low": 197.2, + "sensor_limit_low": 203.15, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -815,48 +767,6 @@ } ], "state_indexes": [ - { - "state_name": "Door", - "state_descr": "noFault", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "Door", - "state_descr": "fault", - "state_draw_graph": 1, - "state_value": 2, - "state_generic_value": 1 - }, - { - "state_name": "Door", - "state_descr": "disabled", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 0 - }, - { - "state_name": "Fan", - "state_descr": "noFault", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "Fan", - "state_descr": "fault", - "state_draw_graph": 1, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "Fan", - "state_descr": "disabled", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 0 - }, { "state_name": "upsAdvBatteryReplaceIndicator", "state_descr": "noBatteryNeedsReplacing", @@ -1064,7 +974,7 @@ "group": null, "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": 0.6, + "sensor_current": 0, "sensor_limit": null, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1081,12 +991,12 @@ "sensor_deleted": 0, "sensor_class": "frequency", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.3.2.4.0", - "sensor_index": "3.2.4.0", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.3.3.4.0", + "sensor_index": "3.3.4.0", "sensor_type": "apc", "sensor_descr": "Input", "group": null, - "sensor_divisor": 1, + "sensor_divisor": 10, "sensor_multiplier": 1, "sensor_current": 50, "sensor_limit": 52.5, @@ -1105,12 +1015,12 @@ "sensor_deleted": 0, "sensor_class": "frequency", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.4.2.2.0", - "sensor_index": "4.2.2.0", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.4.3.2.0", + "sensor_index": "4.3.2.0", "sensor_type": "apc", "sensor_descr": "Output", "group": null, - "sensor_divisor": 1, + "sensor_divisor": 10, "sensor_multiplier": 1, "sensor_current": 50, "sensor_limit": 52.5, @@ -1136,7 +1046,7 @@ "group": null, "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": 20.2, + "sensor_current": 16.9, "sensor_limit": 80, "sensor_limit_warn": null, "sensor_limit_low": null, @@ -1160,7 +1070,7 @@ "group": null, "sensor_divisor": 6000, "sensor_multiplier": 1, - "sensor_current": 95.15, + "sensor_current": 66, "sensor_limit": 3000, "sensor_limit_warn": 2000, "sensor_limit_low": 5, @@ -1169,58 +1079,10 @@ "sensor_custom": "No", "entPhysicalIndex": null, "entPhysicalIndex_measured": null, - "sensor_prev": 570900, + "sensor_prev": 396000, "user_func": null, "state_name": null }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.318.1.1.10.2.3.4.1.3.1", - "sensor_index": "Door.1", - "sensor_type": "Door", - "sensor_descr": "Door", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 2, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "state_name": "Door" - }, - { - "sensor_deleted": 0, - "sensor_class": "state", - "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.318.1.1.10.2.3.4.1.3.2", - "sensor_index": "Fan.2", - "sensor_type": "Fan", - "sensor_descr": "Fan", - "group": null, - "sensor_divisor": 1, - "sensor_multiplier": 1, - "sensor_current": 1, - "sensor_limit": null, - "sensor_limit_warn": null, - "sensor_limit_low": null, - "sensor_limit_low_warn": null, - "sensor_alert": 1, - "sensor_custom": "No", - "entPhysicalIndex": null, - "entPhysicalIndex_measured": null, - "sensor_prev": null, - "user_func": null, - "state_name": "Fan" - }, { "sensor_deleted": 0, "sensor_class": "state", @@ -1273,17 +1135,17 @@ "sensor_deleted": 0, "sensor_class": "temperature", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.2.2.2.0", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.2.3.2.0", "sensor_index": "0", "sensor_type": "apc", "sensor_descr": "Internal Temperature", "group": null, - "sensor_divisor": 1, + "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": 31, - "sensor_limit": 51, + "sensor_current": 26.1, + "sensor_limit": 46.1, "sensor_limit_warn": null, - "sensor_limit_low": 21, + "sensor_limit_low": 16.1, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -1300,15 +1162,15 @@ "sensor_oid": ".1.3.6.1.4.1.318.1.1.10.2.3.2.1.4.1", "sensor_index": "1", "sensor_type": "apc", - "sensor_descr": "Port 1 Temp 1", + "sensor_descr": "AP9512T", "group": null, "sensor_divisor": 1, "sensor_multiplier": 1, - "sensor_current": 23, - "sensor_limit": 43, - "sensor_limit_warn": null, - "sensor_limit_low": 13, - "sensor_limit_low_warn": null, + "sensor_current": 26, + "sensor_limit": 46, + "sensor_limit_warn": 40, + "sensor_limit_low": 16, + "sensor_limit_low_warn": 10, "sensor_alert": 1, "sensor_custom": "No", "entPhysicalIndex": null, @@ -1321,17 +1183,17 @@ "sensor_deleted": 0, "sensor_class": "voltage", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.2.2.8.0", - "sensor_index": "2.2.8.0", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.2.3.4.0", + "sensor_index": "2.3.4.0", "sensor_type": "apc", "sensor_descr": "Battery Bus", "group": null, - "sensor_divisor": 1, + "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": 54, - "sensor_limit": 62.1, + "sensor_current": 27.5, + "sensor_limit": 31.625, "sensor_limit_warn": null, - "sensor_limit_low": 45.9, + "sensor_limit_low": 23.375, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -1345,17 +1207,17 @@ "sensor_deleted": 0, "sensor_class": "voltage", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.3.2.1.0", - "sensor_index": "3.2.1.0", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.3.3.1.0", + "sensor_index": "3.3.1.0", "sensor_type": "apc", "sensor_descr": "Input", "group": null, - "sensor_divisor": 1, + "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": 232, - "sensor_limit": 266.8, + "sensor_current": 239, + "sensor_limit": 274.85, "sensor_limit_warn": null, - "sensor_limit_low": 197.2, + "sensor_limit_low": 203.15, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -1369,17 +1231,17 @@ "sensor_deleted": 0, "sensor_class": "voltage", "poller_type": "snmp", - "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.4.2.1.0", - "sensor_index": "4.2.1.0", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.4.3.1.0", + "sensor_index": "4.3.1.0", "sensor_type": "apc", "sensor_descr": "Output", "group": null, - "sensor_divisor": 1, + "sensor_divisor": 10, "sensor_multiplier": 1, - "sensor_current": 232, - "sensor_limit": 266.8, + "sensor_current": 239, + "sensor_limit": 274.85, "sensor_limit_warn": null, - "sensor_limit_low": 197.2, + "sensor_limit_low": 203.15, "sensor_limit_low_warn": null, "sensor_alert": 1, "sensor_custom": "No", @@ -1391,48 +1253,6 @@ } ], "state_indexes": [ - { - "state_name": "Door", - "state_descr": "noFault", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "Door", - "state_descr": "fault", - "state_draw_graph": 1, - "state_value": 2, - "state_generic_value": 1 - }, - { - "state_name": "Door", - "state_descr": "disabled", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 0 - }, - { - "state_name": "Fan", - "state_descr": "noFault", - "state_draw_graph": 0, - "state_value": 1, - "state_generic_value": 0 - }, - { - "state_name": "Fan", - "state_descr": "fault", - "state_draw_graph": 1, - "state_value": 2, - "state_generic_value": 2 - }, - { - "state_name": "Fan", - "state_descr": "disabled", - "state_draw_graph": 0, - "state_value": 3, - "state_generic_value": 0 - }, { "state_name": "upsAdvBatteryReplaceIndicator", "state_descr": "noBatteryNeedsReplacing", diff --git a/tests/data/apc_sua750i.json b/tests/data/apc_sua750i.json new file mode 100644 index 0000000000..82502794ba --- /dev/null +++ b/tests/data/apc_sua750i.json @@ -0,0 +1,1379 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.318.1.3.2.7", + "sysDescr": "APC Web/SNMP Management Card (MB:v3.9.2 PF:v3.7.3 PN:apc_hw02_aos_373.bin AF1:v3.7.2 AN1:apc_hw02_sumx_372.bin MN:AP9619 HR:A10 SN: FFFFFFFFFFFF MD:04/20/2011) (Embedded PowerNet SNMP Agent SW v2.2 compatible)", + "sysContact": "", + "version": "AOS v3.7.3 / App v3.7.2", + "hardware": "Smart-UPS 750 651.12.I", + "features": null, + "os": "apc", + "type": "power", + "serial": "FFFFFFFFFFFF", + "icon": "apc.svg", + "location": "" + } + ] + }, + "poller": "matches discovery" + }, + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "LOOPBACK", + "ifName": "LOOPBACK", + "portName": null, + "ifIndex": 1, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "LOOPBACK", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "lance", + "ifName": "lance", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "lance", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + }, + "poller": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "LOOPBACK", + "ifName": "LOOPBACK", + "portName": null, + "ifIndex": 1, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "softwareLoopback", + "ifAlias": "LOOPBACK", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 2, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 2, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 58, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 30, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 0, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 0, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "lance", + "ifName": "lance", + "portName": null, + "ifIndex": 2, + "ifSpeed": 10000000, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "lance", + "ifPhysAddress": "00c0b758b288", + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": 1082481, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 1083178, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 108177679, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 116355115, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 14184, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 8473, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 0, + "ifOutDiscards_prev": 0, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": 0, + "ifInUnknownProtos_prev": 0, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": 0, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 0, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 0, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + } + ] + } + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "charge", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.2.3.1.0", + "sensor_index": "0", + "sensor_type": "apc", + "sensor_descr": "Battery Charge", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 100, + "sensor_limit": 100, + "sensor_limit_warn": null, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 10, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.4.3.4.0", + "sensor_index": "0", + "sensor_type": "apcUPS", + "sensor_descr": "Phase 0 Output", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 0.2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "frequency", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.3.3.4.0", + "sensor_index": "3.3.4.0", + "sensor_type": "apc", + "sensor_descr": "Input", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 50, + "sensor_limit": 52.5, + "sensor_limit_warn": null, + "sensor_limit_low": 47.5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "frequency", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.4.3.2.0", + "sensor_index": "4.3.2.0", + "sensor_type": "apc", + "sensor_descr": "Output", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 50, + "sensor_limit": 52.5, + "sensor_limit_warn": null, + "sensor_limit_low": 47.5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "load", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.4.3.3.0", + "sensor_index": ".1.3.6.1.4.1.318.1.1.1.4.3.3.0", + "sensor_type": "apc", + "sensor_descr": "Load(VA)", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 22.7, + "sensor_limit": 80, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "runtime", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.2.2.3.0", + "sensor_index": "upsAdvBatteryRunTimeRemaining.0", + "sensor_type": "apc", + "sensor_descr": "Runtime", + "group": null, + "sensor_divisor": 6000, + "sensor_multiplier": 1, + "sensor_current": 438000, + "sensor_limit": 3000, + "sensor_limit_warn": 2000, + "sensor_limit_low": 5, + "sensor_limit_low_warn": 10, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.2.2.4.0", + "sensor_index": "0", + "sensor_type": "upsAdvBatteryReplaceIndicator", + "sensor_descr": "UPS Battery Replacement Status", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "upsAdvBatteryReplaceIndicator" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.4.1.1.0", + "sensor_index": "0", + "sensor_type": "upsBasicOutputStatus", + "sensor_descr": "Output Status", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "upsBasicOutputStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.2.3.2.0", + "sensor_index": "0", + "sensor_type": "apc", + "sensor_descr": "Internal Temperature", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 36.9, + "sensor_limit": 56.9, + "sensor_limit_warn": null, + "sensor_limit_low": 26.9, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.2.3.4.0", + "sensor_index": "2.3.4.0", + "sensor_type": "apc", + "sensor_descr": "Battery Bus", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 27.2, + "sensor_limit": 31.28, + "sensor_limit_warn": null, + "sensor_limit_low": 23.12, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.3.3.1.0", + "sensor_index": "3.3.1.0", + "sensor_type": "apc", + "sensor_descr": "Input", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 243.3, + "sensor_limit": 279.795, + "sensor_limit_warn": null, + "sensor_limit_low": 206.805, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.4.3.1.0", + "sensor_index": "4.3.1.0", + "sensor_type": "apc", + "sensor_descr": "Output", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 243.3, + "sensor_limit": 279.795, + "sensor_limit_warn": null, + "sensor_limit_low": 206.805, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + } + ], + "state_indexes": [ + { + "state_name": "upsAdvBatteryReplaceIndicator", + "state_descr": "noBatteryNeedsReplacing", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "upsAdvBatteryReplaceIndicator", + "state_descr": "batteryNeedsReplacing", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 2 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "unknown", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "onLine", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "onBattery", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "onSmartBoost", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "timedSleeping", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 0 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "softwareBypass", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 1 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "off", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 2 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "rebooting", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 1 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "switchedBypass", + "state_draw_graph": 0, + "state_value": 9, + "state_generic_value": 1 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "hardwareFailureBypass", + "state_draw_graph": 0, + "state_value": 10, + "state_generic_value": 2 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "sleepingUntilPowerReturn", + "state_draw_graph": 0, + "state_value": 11, + "state_generic_value": 1 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "onSmartTrim", + "state_draw_graph": 0, + "state_value": 12, + "state_generic_value": 1 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "ecoMode", + "state_draw_graph": 0, + "state_value": 13, + "state_generic_value": 0 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "hotStandby", + "state_draw_graph": 0, + "state_value": 14, + "state_generic_value": 0 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "onBatteryTest", + "state_draw_graph": 0, + "state_value": 15, + "state_generic_value": 1 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "emergencyStaticBypass", + "state_draw_graph": 0, + "state_value": 16, + "state_generic_value": 2 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "staticBypassStandby", + "state_draw_graph": 0, + "state_value": 17, + "state_generic_value": 1 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "powerSavingMode", + "state_draw_graph": 0, + "state_value": 18, + "state_generic_value": 0 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "spotMode", + "state_draw_graph": 0, + "state_value": 19, + "state_generic_value": 0 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "eConversion", + "state_draw_graph": 0, + "state_value": 20, + "state_generic_value": 0 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "chargerSpotmode", + "state_draw_graph": 0, + "state_value": 21, + "state_generic_value": 0 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "inverterSpotmode", + "state_draw_graph": 0, + "state_value": 22, + "state_generic_value": 0 + } + ] + }, + "poller": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "charge", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.2.3.1.0", + "sensor_index": "0", + "sensor_type": "apc", + "sensor_descr": "Battery Charge", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 100, + "sensor_limit": 100, + "sensor_limit_warn": null, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 10, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.4.3.4.0", + "sensor_index": "0", + "sensor_type": "apcUPS", + "sensor_descr": "Phase 0 Output", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 0.2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "frequency", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.3.3.4.0", + "sensor_index": "3.3.4.0", + "sensor_type": "apc", + "sensor_descr": "Input", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 50, + "sensor_limit": 52.5, + "sensor_limit_warn": null, + "sensor_limit_low": 47.5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "frequency", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.4.3.2.0", + "sensor_index": "4.3.2.0", + "sensor_type": "apc", + "sensor_descr": "Output", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 50, + "sensor_limit": 52.5, + "sensor_limit_warn": null, + "sensor_limit_low": 47.5, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "load", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.4.3.3.0", + "sensor_index": ".1.3.6.1.4.1.318.1.1.1.4.3.3.0", + "sensor_type": "apc", + "sensor_descr": "Load(VA)", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 22.7, + "sensor_limit": 80, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "runtime", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.2.2.3.0", + "sensor_index": "upsAdvBatteryRunTimeRemaining.0", + "sensor_type": "apc", + "sensor_descr": "Runtime", + "group": null, + "sensor_divisor": 6000, + "sensor_multiplier": 1, + "sensor_current": 73, + "sensor_limit": 3000, + "sensor_limit_warn": 2000, + "sensor_limit_low": 5, + "sensor_limit_low_warn": 10, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": 438000, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.2.2.4.0", + "sensor_index": "0", + "sensor_type": "upsAdvBatteryReplaceIndicator", + "sensor_descr": "UPS Battery Replacement Status", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "0", + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "upsAdvBatteryReplaceIndicator" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.4.1.1.0", + "sensor_index": "0", + "sensor_type": "upsBasicOutputStatus", + "sensor_descr": "Output Status", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": "upsBasicOutputStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.2.3.2.0", + "sensor_index": "0", + "sensor_type": "apc", + "sensor_descr": "Internal Temperature", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 36.9, + "sensor_limit": 56.9, + "sensor_limit_warn": null, + "sensor_limit_low": 26.9, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.2.3.4.0", + "sensor_index": "2.3.4.0", + "sensor_type": "apc", + "sensor_descr": "Battery Bus", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 27.2, + "sensor_limit": 31.28, + "sensor_limit_warn": null, + "sensor_limit_low": 23.12, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.3.3.1.0", + "sensor_index": "3.3.1.0", + "sensor_type": "apc", + "sensor_descr": "Input", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 243.3, + "sensor_limit": 279.795, + "sensor_limit_warn": null, + "sensor_limit_low": 206.805, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.318.1.1.1.4.3.1.0", + "sensor_index": "4.3.1.0", + "sensor_type": "apc", + "sensor_descr": "Output", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 243.3, + "sensor_limit": 279.795, + "sensor_limit_warn": null, + "sensor_limit_low": 206.805, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + } + ], + "state_indexes": [ + { + "state_name": "upsAdvBatteryReplaceIndicator", + "state_descr": "noBatteryNeedsReplacing", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "upsAdvBatteryReplaceIndicator", + "state_descr": "batteryNeedsReplacing", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 2 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "unknown", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 3 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "onLine", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "onBattery", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "onSmartBoost", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "timedSleeping", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 0 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "softwareBypass", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 1 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "off", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 2 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "rebooting", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 1 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "switchedBypass", + "state_draw_graph": 0, + "state_value": 9, + "state_generic_value": 1 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "hardwareFailureBypass", + "state_draw_graph": 0, + "state_value": 10, + "state_generic_value": 2 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "sleepingUntilPowerReturn", + "state_draw_graph": 0, + "state_value": 11, + "state_generic_value": 1 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "onSmartTrim", + "state_draw_graph": 0, + "state_value": 12, + "state_generic_value": 1 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "ecoMode", + "state_draw_graph": 0, + "state_value": 13, + "state_generic_value": 0 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "hotStandby", + "state_draw_graph": 0, + "state_value": 14, + "state_generic_value": 0 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "onBatteryTest", + "state_draw_graph": 0, + "state_value": 15, + "state_generic_value": 1 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "emergencyStaticBypass", + "state_draw_graph": 0, + "state_value": 16, + "state_generic_value": 2 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "staticBypassStandby", + "state_draw_graph": 0, + "state_value": 17, + "state_generic_value": 1 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "powerSavingMode", + "state_draw_graph": 0, + "state_value": 18, + "state_generic_value": 0 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "spotMode", + "state_draw_graph": 0, + "state_value": 19, + "state_generic_value": 0 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "eConversion", + "state_draw_graph": 0, + "state_value": 20, + "state_generic_value": 0 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "chargerSpotmode", + "state_draw_graph": 0, + "state_value": 21, + "state_generic_value": 0 + }, + { + "state_name": "upsBasicOutputStatus", + "state_descr": "inverterSpotmode", + "state_draw_graph": 0, + "state_value": 22, + "state_generic_value": 0 + } + ] + } + } +} diff --git a/tests/snmpsim/apc_sua1500rmi2u.snmprec b/tests/snmpsim/apc_sua1500rmi2u.snmprec new file mode 100644 index 0000000000..43c0310644 --- /dev/null +++ b/tests/snmpsim/apc_sua1500rmi2u.snmprec @@ -0,0 +1,217 @@ +1.3.6.1.2.1.1.1.0|4|APC Web/SNMP Management Card (MB:v3.9.2 PF:v3.7.3 PN:apc_hw02_aos_373.bin AF1:v3.7.2 AN1:apc_hw02_sumx_372.bin MN:UPS_IDEN HR:A10 SN: FFFFFFFFFFFF MD:06/28/2010) (Embedded PowerNet SNMP Agent SW v2.2 compatible) +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.318.1.3.2.7 +1.3.6.1.2.1.1.3.0|67|18567570 +1.3.6.1.2.1.1.4.0|4| +1.3.6.1.2.1.1.5.0|4| +1.3.6.1.2.1.1.6.0|4| +1.3.6.1.2.1.2.2.1.1.1|2|1 +1.3.6.1.2.1.2.2.1.1.2|2|2 +1.3.6.1.2.1.2.2.1.2.1|4|LOOPBACK +1.3.6.1.2.1.2.2.1.2.2|4|lance +1.3.6.1.2.1.2.2.1.3.1|2|24 +1.3.6.1.2.1.2.2.1.3.2|2|6 +1.3.6.1.2.1.2.2.1.4.1|2|1500 +1.3.6.1.2.1.2.2.1.4.2|2|1500 +1.3.6.1.2.1.2.2.1.5.1|66|0 +1.3.6.1.2.1.2.2.1.5.2|66|10000000 +1.3.6.1.2.1.2.2.1.6.1|4| +1.3.6.1.2.1.2.2.1.6.2|4x|00C0B7231B87 +1.3.6.1.2.1.2.2.1.7.1|2|1 +1.3.6.1.2.1.2.2.1.7.2|2|1 +1.3.6.1.2.1.2.2.1.8.1|2|1 +1.3.6.1.2.1.2.2.1.8.2|2|1 +1.3.6.1.2.1.2.2.1.9.1|67|0 +1.3.6.1.2.1.2.2.1.9.2|67|0 +1.3.6.1.2.1.2.2.1.10.1|65|0 +1.3.6.1.2.1.2.2.1.10.2|65|80990730 +1.3.6.1.2.1.2.2.1.11.1|65|0 +1.3.6.1.2.1.2.2.1.11.2|65|807578 +1.3.6.1.2.1.2.2.1.12.1|65|0 +1.3.6.1.2.1.2.2.1.12.2|65|10430 +1.3.6.1.2.1.2.2.1.13.1|65|0 +1.3.6.1.2.1.2.2.1.13.2|65|0 +1.3.6.1.2.1.2.2.1.14.1|65|0 +1.3.6.1.2.1.2.2.1.14.2|65|0 +1.3.6.1.2.1.2.2.1.15.1|65|0 +1.3.6.1.2.1.2.2.1.15.2|65|0 +1.3.6.1.2.1.2.2.1.16.1|65|0 +1.3.6.1.2.1.2.2.1.16.2|65|86138588 +1.3.6.1.2.1.2.2.1.17.1|65|0 +1.3.6.1.2.1.2.2.1.17.2|65|807746 +1.3.6.1.2.1.2.2.1.18.1|65|0 +1.3.6.1.2.1.2.2.1.18.2|65|6215 +1.3.6.1.2.1.2.2.1.19.1|65|0 +1.3.6.1.2.1.2.2.1.19.2|65|0 +1.3.6.1.2.1.2.2.1.20.1|65|0 +1.3.6.1.2.1.2.2.1.20.2|65|0 +1.3.6.1.2.1.2.2.1.21.1|66|0 +1.3.6.1.2.1.2.2.1.21.2|66|1 +1.3.6.1.2.1.2.2.1.22.1|6|0.0 +1.3.6.1.2.1.2.2.1.22.2|6|0.0 +1.3.6.1.2.1.4.3.0|65|814284 +1.3.6.1.2.1.4.4.0|65|0 +1.3.6.1.2.1.4.5.0|65|0 +1.3.6.1.2.1.4.6.0|65|0 +1.3.6.1.2.1.4.7.0|65|0 +1.3.6.1.2.1.4.8.0|65|0 +1.3.6.1.2.1.4.9.0|65|814283 +1.3.6.1.2.1.4.10.0|65|797853 +1.3.6.1.2.1.4.11.0|65|0 +1.3.6.1.2.1.4.12.0|65|1 +1.3.6.1.2.1.4.14.0|65|0 +1.3.6.1.2.1.4.15.0|65|0 +1.3.6.1.2.1.4.16.0|65|0 +1.3.6.1.2.1.4.17.0|65|0 +1.3.6.1.2.1.4.18.0|65|0 +1.3.6.1.2.1.4.19.0|65|0 +1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1 +1.3.6.1.2.1.4.20.1.2.192.168.2.96|2|2 +1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.255.255.255 +1.3.6.1.2.1.4.20.1.3.192.168.2.96|64|255.255.255.0 +1.3.6.1.2.1.4.22.1.2.2.192.168.2.1|4x|B869F403F39B +1.3.6.1.2.1.4.22.1.2.2.192.168.2.111|4x|C27C19E58A5C +1.3.6.1.2.1.4.22.1.2.2.192.168.2.121|4x|AC1F6B1B7546 +1.3.6.1.2.1.4.22.1.2.2.192.168.2.124|4x|C81F66C94B3F +1.3.6.1.2.1.5.1.0|65|3830 +1.3.6.1.2.1.5.2.0|65|0 +1.3.6.1.2.1.5.3.0|65|0 +1.3.6.1.2.1.5.4.0|65|0 +1.3.6.1.2.1.5.5.0|65|0 +1.3.6.1.2.1.5.6.0|65|0 +1.3.6.1.2.1.5.7.0|65|0 +1.3.6.1.2.1.5.8.0|65|3145 +1.3.6.1.2.1.5.9.0|65|685 +1.3.6.1.2.1.5.10.0|65|0 +1.3.6.1.2.1.5.11.0|65|0 +1.3.6.1.2.1.5.12.0|65|0 +1.3.6.1.2.1.5.13.0|65|0 +1.3.6.1.2.1.5.14.0|65|3831 +1.3.6.1.2.1.5.15.0|65|0 +1.3.6.1.2.1.5.16.0|65|0 +1.3.6.1.2.1.5.17.0|65|0 +1.3.6.1.2.1.5.18.0|65|0 +1.3.6.1.2.1.5.19.0|65|0 +1.3.6.1.2.1.5.20.0|65|0 +1.3.6.1.2.1.5.21.0|65|686 +1.3.6.1.2.1.5.22.0|65|3145 +1.3.6.1.2.1.5.23.0|65|0 +1.3.6.1.2.1.5.24.0|65|0 +1.3.6.1.2.1.5.25.0|65|0 +1.3.6.1.2.1.5.26.0|65|0 +1.3.6.1.2.1.6.5.0|65|4 +1.3.6.1.2.1.6.6.0|65|24 +1.3.6.1.2.1.6.7.0|65|2 +1.3.6.1.2.1.6.8.0|65|3 +1.3.6.1.2.1.6.9.0|66|0 +1.3.6.1.2.1.6.10.0|65|759 +1.3.6.1.2.1.6.11.0|65|701 +1.3.6.1.2.1.6.12.0|65|0 +1.3.6.1.2.1.6.14.0|65|0 +1.3.6.1.2.1.6.15.0|65|8 +1.3.6.1.2.1.7.1.0|65|793199 +1.3.6.1.2.1.7.2.0|65|10339 +1.3.6.1.2.1.7.3.0|65|0 +1.3.6.1.2.1.7.4.0|65|793205 +1.3.6.1.2.1.11.1.0|65|793173 +1.3.6.1.2.1.11.2.0|65|793172 +1.3.6.1.2.1.11.3.0|65|0 +1.3.6.1.2.1.11.4.0|65|0 +1.3.6.1.2.1.11.5.0|65|12 +1.3.6.1.2.1.11.6.0|65|0 +1.3.6.1.2.1.11.8.0|65|0 +1.3.6.1.2.1.11.9.0|65|0 +1.3.6.1.2.1.11.10.0|65|0 +1.3.6.1.2.1.11.11.0|65|0 +1.3.6.1.2.1.11.12.0|65|0 +1.3.6.1.2.1.11.13.0|65|810523 +1.3.6.1.2.1.11.14.0|65|0 +1.3.6.1.2.1.11.15.0|65|778106 +1.3.6.1.2.1.11.16.0|65|2492 +1.3.6.1.2.1.11.17.0|65|0 +1.3.6.1.2.1.11.18.0|65|0 +1.3.6.1.2.1.11.19.0|65|0 +1.3.6.1.2.1.11.20.0|65|0 +1.3.6.1.2.1.11.21.0|65|12 +1.3.6.1.2.1.11.22.0|65|0 +1.3.6.1.2.1.11.24.0|65|0 +1.3.6.1.2.1.11.25.0|65|0 +1.3.6.1.2.1.11.26.0|65|0 +1.3.6.1.2.1.11.27.0|65|0 +1.3.6.1.2.1.11.28.0|65|793174 +1.3.6.1.2.1.11.29.0|65|12 +1.3.6.1.2.1.11.30.0|2|1 +1.3.6.1.2.1.11.31.0|65|0 +1.3.6.1.2.1.11.32.0|65|0 +1.3.6.1.4.1.318.1.1.1.1.1.1.0|4|Smart-UPS 1500 RM +1.3.6.1.4.1.318.1.1.1.1.2.1.0|4|617.3.I +1.3.6.1.4.1.318.1.1.1.1.2.3.0|4|FFFFFFFFFFFF +1.3.6.1.4.1.318.1.1.1.2.2.3.0|67|396000 +1.3.6.1.4.1.318.1.1.1.2.2.4.0|2|1 +1.3.6.1.4.1.318.1.1.1.2.3.1.0|66|1000 +1.3.6.1.4.1.318.1.1.1.2.3.2.0|66|261 +1.3.6.1.4.1.318.1.1.1.2.3.4.0|2|275 +1.3.6.1.4.1.318.1.1.1.3.3.1.0|66|2390 +1.3.6.1.4.1.318.1.1.1.3.3.4.0|66|500 +1.3.6.1.4.1.318.1.1.1.4.1.1.0|2|2 +1.3.6.1.4.1.318.1.1.1.4.3.1.0|66|2390 +1.3.6.1.4.1.318.1.1.1.4.3.2.0|66|500 +1.3.6.1.4.1.318.1.1.1.4.3.3.0|66|169 +1.3.6.1.4.1.318.1.1.1.4.3.4.0|66|0 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.1.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.2.1|4|AP9512T +1.3.6.1.4.1.318.1.1.10.2.2.2.1.3.1|2|40 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.4.1|2|10 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.5.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.6.1|2|60 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.7.1|2|30 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.8.1|2|2 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.9.1|2|2 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.10.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.11.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.12.1|2|60 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.13.1|2|0 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.14.1|2|90 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.15.1|2|10 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.16.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.17.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.18.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.19.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.20.1|2|0 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.21.1|2|0 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.22.1|4|SSR-12-600X1000 +1.3.6.1.4.1.318.1.1.10.2.2.4.1.1.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.4.1.1.2|2|2 +1.3.6.1.4.1.318.1.1.10.2.2.4.1.2.1|4|Int Contact 1 +1.3.6.1.4.1.318.1.1.10.2.2.4.1.2.2|4|Int Contact 2 +1.3.6.1.4.1.318.1.1.10.2.2.4.1.3.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.4.1.3.2|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.4.1.4.1|2|2 +1.3.6.1.4.1.318.1.1.10.2.2.4.1.4.2|2|2 +1.3.6.1.4.1.318.1.1.10.2.2.4.1.5.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.4.1.5.2|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.4.1.6.1|4|SSR-12-600X1000 +1.3.6.1.4.1.318.1.1.10.2.2.4.1.6.2|4|SSR-12-600X1000 +1.3.6.1.4.1.318.1.1.10.2.3.2.1.1.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.3.2.1.2.1|4|AP9512T +1.3.6.1.4.1.318.1.1.10.2.3.2.1.3.1|2|2 +1.3.6.1.4.1.318.1.1.10.2.3.2.1.4.1|2|26 +1.3.6.1.4.1.318.1.1.10.2.3.2.1.5.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.3.2.1.6.1|2|-1 +1.3.6.1.4.1.318.1.1.10.2.3.2.1.7.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.3.2.1.8.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.3.2.1.9.1|2|3 +1.3.6.1.4.1.318.1.1.10.2.3.2.1.10.1|2|3 +1.3.6.1.4.1.318.1.1.10.2.3.2.1.11.1|2|3 +1.3.6.1.4.1.318.1.1.10.2.3.2.1.12.1|2|3 +1.3.6.1.4.1.318.1.1.10.2.3.2.1.13.1|2|3 +1.3.6.1.4.1.318.1.1.10.2.3.2.1.14.1|2|3 +1.3.6.1.4.1.318.1.1.10.2.3.2.1.15.1|4|SSR-12-600X1000 +1.3.6.1.4.1.318.1.1.10.2.3.4.1.1.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.3.4.1.1.2|2|2 +1.3.6.1.4.1.318.1.1.10.2.3.4.1.2.1|4|Int Contact 1 +1.3.6.1.4.1.318.1.1.10.2.3.4.1.2.2|4|Int Contact 2 +1.3.6.1.4.1.318.1.1.10.2.3.4.1.3.1|2|3 +1.3.6.1.4.1.318.1.1.10.2.3.4.1.3.2|2|3 +1.3.6.1.4.1.318.1.4.2.4.1.4.1|4|v3.7.3 +1.3.6.1.4.1.318.1.4.2.4.1.4.2|4|v3.7.2 +1.3.6.1.6.3.10.2.1.3.0|2|185675 diff --git a/tests/snmpsim/apc_sua750i.snmprec b/tests/snmpsim/apc_sua750i.snmprec new file mode 100644 index 0000000000..ded1150ec5 --- /dev/null +++ b/tests/snmpsim/apc_sua750i.snmprec @@ -0,0 +1,213 @@ +1.3.6.1.2.1.1.1.0|4|APC Web/SNMP Management Card (MB:v3.9.2 PF:v3.7.3 PN:apc_hw02_aos_373.bin AF1:v3.7.2 AN1:apc_hw02_sumx_372.bin MN:AP9619 HR:A10 SN: FFFFFFFFFFFF MD:04/20/2011) (Embedded PowerNet SNMP Agent SW v2.2 compatible) +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.318.1.3.2.7 +1.3.6.1.2.1.1.3.0|67|25176050 +1.3.6.1.2.1.1.4.0|4| +1.3.6.1.2.1.1.5.0|4| +1.3.6.1.2.1.1.6.0|4| +1.3.6.1.2.1.2.2.1.1.1|2|1 +1.3.6.1.2.1.2.2.1.1.2|2|2 +1.3.6.1.2.1.2.2.1.2.1|4|LOOPBACK +1.3.6.1.2.1.2.2.1.2.2|4|lance +1.3.6.1.2.1.2.2.1.3.1|2|24 +1.3.6.1.2.1.2.2.1.3.2|2|6 +1.3.6.1.2.1.2.2.1.4.1|2|1500 +1.3.6.1.2.1.2.2.1.4.2|2|1500 +1.3.6.1.2.1.2.2.1.5.1|66|0 +1.3.6.1.2.1.2.2.1.5.2|66|10000000 +1.3.6.1.2.1.2.2.1.6.1|4| +1.3.6.1.2.1.2.2.1.6.2|4x|00C0B758B288 +1.3.6.1.2.1.2.2.1.7.1|2|1 +1.3.6.1.2.1.2.2.1.7.2|2|1 +1.3.6.1.2.1.2.2.1.8.1|2|1 +1.3.6.1.2.1.2.2.1.8.2|2|1 +1.3.6.1.2.1.2.2.1.9.1|67|0 +1.3.6.1.2.1.2.2.1.9.2|67|0 +1.3.6.1.2.1.2.2.1.10.1|65|58 +1.3.6.1.2.1.2.2.1.10.2|65|108177679 +1.3.6.1.2.1.2.2.1.11.1|65|2 +1.3.6.1.2.1.2.2.1.11.2|65|1082481 +1.3.6.1.2.1.2.2.1.12.1|65|0 +1.3.6.1.2.1.2.2.1.12.2|65|14184 +1.3.6.1.2.1.2.2.1.13.1|65|0 +1.3.6.1.2.1.2.2.1.13.2|65|0 +1.3.6.1.2.1.2.2.1.14.1|65|0 +1.3.6.1.2.1.2.2.1.14.2|65|0 +1.3.6.1.2.1.2.2.1.15.1|65|0 +1.3.6.1.2.1.2.2.1.15.2|65|0 +1.3.6.1.2.1.2.2.1.16.1|65|30 +1.3.6.1.2.1.2.2.1.16.2|65|116355115 +1.3.6.1.2.1.2.2.1.17.1|65|2 +1.3.6.1.2.1.2.2.1.17.2|65|1083178 +1.3.6.1.2.1.2.2.1.18.1|65|0 +1.3.6.1.2.1.2.2.1.18.2|65|8473 +1.3.6.1.2.1.2.2.1.19.1|65|0 +1.3.6.1.2.1.2.2.1.19.2|65|0 +1.3.6.1.2.1.2.2.1.20.1|65|0 +1.3.6.1.2.1.2.2.1.20.2|65|0 +1.3.6.1.2.1.2.2.1.21.1|66|0 +1.3.6.1.2.1.2.2.1.21.2|66|1 +1.3.6.1.2.1.2.2.1.22.1|6|0.0 +1.3.6.1.2.1.2.2.1.22.2|6|0.0 +1.3.6.1.2.1.4.3.0|65|1091314 +1.3.6.1.2.1.4.4.0|65|0 +1.3.6.1.2.1.4.5.0|65|0 +1.3.6.1.2.1.4.6.0|65|0 +1.3.6.1.2.1.4.7.0|65|0 +1.3.6.1.2.1.4.8.0|65|0 +1.3.6.1.2.1.4.9.0|65|1091313 +1.3.6.1.2.1.4.10.0|65|1069489 +1.3.6.1.2.1.4.11.0|65|0 +1.3.6.1.2.1.4.12.0|65|8 +1.3.6.1.2.1.4.14.0|65|0 +1.3.6.1.2.1.4.15.0|65|0 +1.3.6.1.2.1.4.16.0|65|0 +1.3.6.1.2.1.4.17.0|65|0 +1.3.6.1.2.1.4.18.0|65|0 +1.3.6.1.2.1.4.19.0|65|0 +1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1 +1.3.6.1.2.1.4.20.1.2.192.168.2.95|2|2 +1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.255.255.255 +1.3.6.1.2.1.4.20.1.3.192.168.2.95|64|255.255.255.0 +1.3.6.1.2.1.5.1.0|65|5193 +1.3.6.1.2.1.5.2.0|65|0 +1.3.6.1.2.1.5.3.0|65|7 +1.3.6.1.2.1.5.4.0|65|0 +1.3.6.1.2.1.5.5.0|65|0 +1.3.6.1.2.1.5.6.0|65|0 +1.3.6.1.2.1.5.7.0|65|0 +1.3.6.1.2.1.5.8.0|65|4259 +1.3.6.1.2.1.5.9.0|65|927 +1.3.6.1.2.1.5.10.0|65|0 +1.3.6.1.2.1.5.11.0|65|0 +1.3.6.1.2.1.5.12.0|65|0 +1.3.6.1.2.1.5.13.0|65|0 +1.3.6.1.2.1.5.14.0|65|5190 +1.3.6.1.2.1.5.15.0|65|0 +1.3.6.1.2.1.5.16.0|65|0 +1.3.6.1.2.1.5.17.0|65|0 +1.3.6.1.2.1.5.18.0|65|0 +1.3.6.1.2.1.5.19.0|65|0 +1.3.6.1.2.1.5.20.0|65|0 +1.3.6.1.2.1.5.21.0|65|931 +1.3.6.1.2.1.5.22.0|65|4259 +1.3.6.1.2.1.5.23.0|65|0 +1.3.6.1.2.1.5.24.0|65|0 +1.3.6.1.2.1.5.25.0|65|0 +1.3.6.1.2.1.5.26.0|65|0 +1.3.6.1.2.1.6.5.0|65|4 +1.3.6.1.2.1.6.6.0|65|103 +1.3.6.1.2.1.6.7.0|65|3 +1.3.6.1.2.1.6.8.0|65|13 +1.3.6.1.2.1.6.9.0|66|0 +1.3.6.1.2.1.6.10.0|65|2869 +1.3.6.1.2.1.6.11.0|65|2937 +1.3.6.1.2.1.6.12.0|65|1 +1.3.6.1.2.1.6.14.0|65|0 +1.3.6.1.2.1.6.15.0|65|48 +1.3.6.1.2.1.7.1.0|65|1060872 +1.3.6.1.2.1.7.2.0|65|14024 +1.3.6.1.2.1.7.3.0|65|0 +1.3.6.1.2.1.7.4.0|65|1060907 +1.3.6.1.2.1.11.1.0|65|1060841 +1.3.6.1.2.1.11.2.0|65|1060828 +1.3.6.1.2.1.11.3.0|65|0 +1.3.6.1.2.1.11.4.0|65|24 +1.3.6.1.2.1.11.5.0|65|15 +1.3.6.1.2.1.11.6.0|65|0 +1.3.6.1.2.1.11.8.0|65|0 +1.3.6.1.2.1.11.9.0|65|0 +1.3.6.1.2.1.11.10.0|65|0 +1.3.6.1.2.1.11.11.0|65|0 +1.3.6.1.2.1.11.12.0|65|0 +1.3.6.1.2.1.11.13.0|65|1083559 +1.3.6.1.2.1.11.14.0|65|0 +1.3.6.1.2.1.11.15.0|65|1040594 +1.3.6.1.2.1.11.16.0|65|3360 +1.3.6.1.2.1.11.17.0|65|0 +1.3.6.1.2.1.11.18.0|65|0 +1.3.6.1.2.1.11.19.0|65|0 +1.3.6.1.2.1.11.20.0|65|0 +1.3.6.1.2.1.11.21.0|65|15 +1.3.6.1.2.1.11.22.0|65|0 +1.3.6.1.2.1.11.24.0|65|0 +1.3.6.1.2.1.11.25.0|65|0 +1.3.6.1.2.1.11.26.0|65|0 +1.3.6.1.2.1.11.27.0|65|0 +1.3.6.1.2.1.11.28.0|65|1060830 +1.3.6.1.2.1.11.29.0|65|54 +1.3.6.1.2.1.11.30.0|2|1 +1.3.6.1.2.1.11.31.0|65|0 +1.3.6.1.2.1.11.32.0|65|0 +1.3.6.1.4.1.318.1.1.1.1.1.1.0|4|Smart-UPS 750 +1.3.6.1.4.1.318.1.1.1.1.2.1.0|4|651.12.I +1.3.6.1.4.1.318.1.1.1.1.2.3.0|4|FFFFFFFFFFFF +1.3.6.1.4.1.318.1.1.1.2.2.3.0|67|438000 +1.3.6.1.4.1.318.1.1.1.2.2.4.0|2|1 +1.3.6.1.4.1.318.1.1.1.2.3.1.0|66|1000 +1.3.6.1.4.1.318.1.1.1.2.3.2.0|66|369 +1.3.6.1.4.1.318.1.1.1.2.3.4.0|2|272 +1.3.6.1.4.1.318.1.1.1.3.3.1.0|66|2433 +1.3.6.1.4.1.318.1.1.1.3.3.4.0|66|500 +1.3.6.1.4.1.318.1.1.1.4.1.1.0|2|2 +1.3.6.1.4.1.318.1.1.1.4.3.1.0|66|2433 +1.3.6.1.4.1.318.1.1.1.4.3.2.0|66|500 +1.3.6.1.4.1.318.1.1.1.4.3.3.0|66|227 +1.3.6.1.4.1.318.1.1.1.4.3.4.0|66|2 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.1.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.2.1|4|Int Sensor +1.3.6.1.4.1.318.1.1.10.2.2.2.1.3.1|2|40 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.4.1|2|10 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.5.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.6.1|2|60 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.7.1|2|30 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.8.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.9.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.10.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.11.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.12.1|2|60 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.13.1|2|0 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.14.1|2|90 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.15.1|2|10 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.16.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.17.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.18.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.19.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.20.1|2|0 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.21.1|2|0 +1.3.6.1.4.1.318.1.1.10.2.2.2.1.22.1|4|Int Sensor Loc +1.3.6.1.4.1.318.1.1.10.2.2.4.1.1.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.4.1.1.2|2|2 +1.3.6.1.4.1.318.1.1.10.2.2.4.1.2.1|4|Int Contact 1 +1.3.6.1.4.1.318.1.1.10.2.2.4.1.2.2|4|Int Contact 2 +1.3.6.1.4.1.318.1.1.10.2.2.4.1.3.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.4.1.3.2|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.4.1.4.1|2|2 +1.3.6.1.4.1.318.1.1.10.2.2.4.1.4.2|2|2 +1.3.6.1.4.1.318.1.1.10.2.2.4.1.5.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.4.1.5.2|2|1 +1.3.6.1.4.1.318.1.1.10.2.2.4.1.6.1|4|Contact Location +1.3.6.1.4.1.318.1.1.10.2.2.4.1.6.2|4|Contact Location +1.3.6.1.4.1.318.1.1.10.2.3.2.1.1.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.3.2.1.2.1|4|Int Sensor +1.3.6.1.4.1.318.1.1.10.2.3.2.1.3.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.3.2.1.4.1|2|-1 +1.3.6.1.4.1.318.1.1.10.2.3.2.1.5.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.3.2.1.6.1|2|-1 +1.3.6.1.4.1.318.1.1.10.2.3.2.1.7.1|2|3 +1.3.6.1.4.1.318.1.1.10.2.3.2.1.8.1|2|3 +1.3.6.1.4.1.318.1.1.10.2.3.2.1.9.1|2|3 +1.3.6.1.4.1.318.1.1.10.2.3.2.1.10.1|2|3 +1.3.6.1.4.1.318.1.1.10.2.3.2.1.11.1|2|3 +1.3.6.1.4.1.318.1.1.10.2.3.2.1.12.1|2|3 +1.3.6.1.4.1.318.1.1.10.2.3.2.1.13.1|2|3 +1.3.6.1.4.1.318.1.1.10.2.3.2.1.14.1|2|3 +1.3.6.1.4.1.318.1.1.10.2.3.2.1.15.1|4|Int Sensor Loc +1.3.6.1.4.1.318.1.1.10.2.3.4.1.1.1|2|1 +1.3.6.1.4.1.318.1.1.10.2.3.4.1.1.2|2|2 +1.3.6.1.4.1.318.1.1.10.2.3.4.1.2.1|4|Int Contact 1 +1.3.6.1.4.1.318.1.1.10.2.3.4.1.2.2|4|Int Contact 2 +1.3.6.1.4.1.318.1.1.10.2.3.4.1.3.1|2|3 +1.3.6.1.4.1.318.1.1.10.2.3.4.1.3.2|2|3 +1.3.6.1.4.1.318.1.4.2.4.1.4.1|4|v3.7.3 +1.3.6.1.4.1.318.1.4.2.4.1.4.2|4|v3.7.2 +1.3.6.1.6.3.10.2.1.3.0|2|251760