mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Added support for APC AP9810 zone contacts (#9967)
* device: Added support for APC AP9810 zone contacts * fix: disconnected sensors been detected. And iemConfigProbesTable certainly does get used and it reference * fix: load is VA, not to be confused with watts. This could be different per device though... Apparent Power unit = VA Real Power unit = Watts And Keeping codeclimate happy * feature: updated APC MIB * feature: added test data for APC Smart UPS SMX750i and AP9810 with contact switches
This commit is contained in:
@@ -24,7 +24,7 @@ if ($phasecount > 1) {
|
||||
'AdvOid' => 'upsAdvOutputLoad',
|
||||
'type' => 'apc',
|
||||
'index' => 0,
|
||||
'descr' => 'Load',
|
||||
'descr' => 'Load(VA)',
|
||||
'divisor' => 10,
|
||||
'mib' => '+PowerNet-MIB',
|
||||
],
|
||||
|
@@ -156,3 +156,37 @@ foreach ($pre_cache['mem_sensors_status'] as $index => $data) {
|
||||
create_sensor_to_state_index($device, $state_name, $state_name . '.' . $index);
|
||||
}
|
||||
}
|
||||
|
||||
// Monitor contact switches via the UIO ports.
|
||||
$apcContactData = snmpwalk_cache_oid($device, 'iemConfigContactsTable', [], 'PowerNet-MIB', null, '-OQUse');
|
||||
$apcContactData = snmpwalk_cache_oid($device, 'iemStatusContactsTable', $apcContactData, 'PowerNet-MIB', null, '-OQUse');
|
||||
|
||||
foreach (array_keys($apcContactData) as $index) {
|
||||
// APC disabled (1), enabled (2)
|
||||
if ($apcContactData[$index]['iemConfigContactEnable'] == 2) {
|
||||
$current = $apcContactData[$index]['iemStatusContactStatus'];
|
||||
$sensorType = 'apc';
|
||||
$cur_oid = '.1.3.6.1.4.1.318.1.1.10.2.3.4.1.3.' . $index;
|
||||
$severity = $apcContactData[$index]['iemConfigContactSeverity'];
|
||||
|
||||
// APC critical (1), warning (2)
|
||||
// LibreNMS warning (1), critical (2)
|
||||
$faultGeneric = 1;
|
||||
if ($severity == 1) {
|
||||
$faultGeneric = 2;
|
||||
} elseif ($severity == 2) {
|
||||
$faultGeneric = 1;
|
||||
}
|
||||
|
||||
$state_name = $apcContactData[$index]['iemConfigContactName'];
|
||||
$states = [
|
||||
['value' => 1, 'generic' => 0, 'graph' => 0, 'descr' => 'noFault'],
|
||||
['value' => 2, 'generic' => $faultGeneric, 'graph' => 1, 'descr' => 'fault'],
|
||||
['value' => 3, 'generic' => 0, 'graph' => 0, 'descr' => 'disabled'],
|
||||
];
|
||||
create_state_index($state_name, $states);
|
||||
|
||||
discover_sensor($valid['sensor'], 'state', $device, $cur_oid, $state_name.'.'.$index, $state_name, $state_name, 1, 1, null, null, null, null, $current);
|
||||
create_sensor_to_state_index($device, $state_name, $state_name . '.' . $index);
|
||||
}
|
||||
}
|
||||
|
@@ -15,21 +15,24 @@ if ($oids) {
|
||||
}
|
||||
|
||||
// Environmental monitoring on UPSes etc
|
||||
// FIXME emConfigProbesTable may also be used? But not filled out on my device...
|
||||
$apc_env_data = snmpwalk_cache_oid($device, 'iemConfigProbesTable', [], 'PowerNet-MIB');
|
||||
$apc_env_data = snmpwalk_cache_oid($device, 'iemStatusProbesTable', $apc_env_data, 'PowerNet-MIB');
|
||||
$apc_env_data = snmpwalk_cache_oid($device, 'iemConfigProbesTable', [], 'PowerNet-MIB', null, '-OQUse');
|
||||
$apc_env_data = snmpwalk_cache_oid($device, 'iemStatusProbesTable', $apc_env_data, 'PowerNet-MIB', null, '-OQUse');
|
||||
|
||||
foreach (array_keys($apc_env_data) as $index) {
|
||||
// APC connected(2), disconnected(1)
|
||||
if ($apc_env_data[$index]['iemStatusProbeStatus'] != 1) {
|
||||
$descr = $apc_env_data[$index]['iemStatusProbeName'];
|
||||
$current = $apc_env_data[$index]['iemStatusProbeCurrentTemp'];
|
||||
$sensorType = 'apc';
|
||||
$oid = '.1.3.6.1.4.1.318.1.1.10.2.3.2.1.4.'.$index;
|
||||
$low_limit = ($apc_env_data[$index]['iemConfigProbeMinTempEnable'] != 'disabled' ? $apc_env_data[$index]['iemConfigProbeMinTempThreshold'] : null);
|
||||
$low_warn_limit = ($apc_env_data[$index]['iemConfigProbeLowTempEnable'] != 'disabled' ? $apc_env_data[$index]['iemConfigProbeLowTempThreshold'] : null);
|
||||
$high_warn_limit = ($apc_env_data[$index]['iemConfigProbeHighTempEnable'] != 'disabled' ? $apc_env_data[$index]['iemConfigProbeHighTempThreshold'] : null);
|
||||
$high_limit = ($apc_env_data[$index]['iemConfigProbeMaxTempEnable'] != 'disabled' ? $apc_env_data[$index]['iemConfigProbeMaxTempThreshold'] : null);
|
||||
// APC enum disabled(1), enabled(2)
|
||||
$low_limit = ($apc_env_data[$index]['iemConfigProbeMinTempEnable'] != 1 ? $apc_env_data[$index]['iemConfigProbeMinTempThreshold'] : null);
|
||||
$low_warn_limit = ($apc_env_data[$index]['iemConfigProbeLowTempEnable'] != 1 ? $apc_env_data[$index]['iemConfigProbeLowTempThreshold'] : null);
|
||||
$high_warn_limit = ($apc_env_data[$index]['iemConfigProbeHighTempEnable'] != 1 ? $apc_env_data[$index]['iemConfigProbeHighTempThreshold'] : null);
|
||||
$high_limit = ($apc_env_data[$index]['iemConfigProbeMaxTempEnable'] != 1 ? $apc_env_data[$index]['iemConfigProbeMaxTempThreshold'] : null);
|
||||
|
||||
discover_sensor($valid['sensor'], 'temperature', $device, $oid, $index, $sensorType, $descr, '1', '1', $low_limit, $low_warn_limit, $high_warn_limit, $high_limit, $current);
|
||||
discover_sensor($valid['sensor'], 'temperature', $device, $oid, $index, $sensorType, $descr, 1, 1, $low_limit, $low_warn_limit, $high_warn_limit, $high_limit, $current);
|
||||
}
|
||||
}
|
||||
|
||||
$apc_env_data = snmpwalk_cache_oid($device, 'emsProbeStatus', [], 'PowerNet-MIB');
|
||||
|
File diff suppressed because it is too large
Load Diff
1624
tests/data/apc_smx750i.json
Normal file
1624
tests/data/apc_smx750i.json
Normal file
File diff suppressed because it is too large
Load Diff
372
tests/snmpsim/apc_smx750i.snmprec
Normal file
372
tests/snmpsim/apc_smx750i.snmprec
Normal file
@@ -0,0 +1,372 @@
|
||||
1.3.6.1.2.1.1.1.0|4|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: <private> MD:07/07/2017) (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.27
|
||||
1.3.6.1.2.1.1.3.0|67|1295020
|
||||
1.3.6.1.2.1.1.4.0|4|<private>
|
||||
1.3.6.1.2.1.1.5.0|4|<private>
|
||||
1.3.6.1.2.1.1.6.0|4|<private>
|
||||
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|vmac0
|
||||
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|100000000
|
||||
1.3.6.1.2.1.2.2.1.6.1|4|
|
||||
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|25
|
||||
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|603928
|
||||
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|5905
|
||||
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|58
|
||||
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|1726113
|
||||
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|6364
|
||||
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|27
|
||||
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|0
|
||||
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.31.1.1.3.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.3.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.4.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.4.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.5.1|65|602792
|
||||
1.3.6.1.2.1.4.31.1.1.5.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.6.1|70|602792
|
||||
1.3.6.1.2.1.4.31.1.1.6.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.7.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.7.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.8.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.8.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.9.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.9.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.10.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.10.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.11.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.11.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.12.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.12.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.13.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.13.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.14.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.14.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.15.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.15.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.16.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.16.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.17.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.17.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.18.1|65|5948
|
||||
1.3.6.1.2.1.4.31.1.1.18.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.19.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.19.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.20.1|65|6211
|
||||
1.3.6.1.2.1.4.31.1.1.20.2|65|123
|
||||
1.3.6.1.2.1.4.31.1.1.21.1|70|6211
|
||||
1.3.6.1.2.1.4.31.1.1.21.2|70|123
|
||||
1.3.6.1.2.1.4.31.1.1.22.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.22.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.23.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.23.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.24.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.24.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.25.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.25.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.26.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.26.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.27.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.27.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.28.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.28.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.29.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.29.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.30.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.30.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.31.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.31.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.32.1|65|1723706
|
||||
1.3.6.1.2.1.4.31.1.1.32.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.33.1|70|1723962
|
||||
1.3.6.1.2.1.4.31.1.1.33.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.34.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.34.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.35.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.35.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.36.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.36.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.37.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.37.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.38.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.38.2|65|123
|
||||
1.3.6.1.2.1.4.31.1.1.39.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.39.2|70|123
|
||||
1.3.6.1.2.1.4.31.1.1.40.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.40.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.41.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.41.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.42.1|65|58
|
||||
1.3.6.1.2.1.4.31.1.1.42.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.43.1|70|58
|
||||
1.3.6.1.2.1.4.31.1.1.43.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.44.1|65|27
|
||||
1.3.6.1.2.1.4.31.1.1.44.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.45.1|70|27
|
||||
1.3.6.1.2.1.4.31.1.1.45.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.46.1|67|0
|
||||
1.3.6.1.2.1.4.31.1.1.46.2|67|0
|
||||
1.3.6.1.2.1.4.31.1.1.47.1|66|0
|
||||
1.3.6.1.2.1.4.31.1.1.47.2|66|0
|
||||
1.3.6.1.2.1.5.1.0|65|1556
|
||||
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|1513
|
||||
1.3.6.1.2.1.5.9.0|65|43
|
||||
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|1560
|
||||
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|47
|
||||
1.3.6.1.2.1.5.22.0|65|1513
|
||||
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.5.29.1.2.1|65|1556
|
||||
1.3.6.1.2.1.5.29.1.2.2|65|0
|
||||
1.3.6.1.2.1.5.29.1.3.1|65|0
|
||||
1.3.6.1.2.1.5.29.1.3.2|65|0
|
||||
1.3.6.1.2.1.5.29.1.4.1|65|1560
|
||||
1.3.6.1.2.1.5.29.1.4.2|65|4
|
||||
1.3.6.1.2.1.5.29.1.5.1|65|0
|
||||
1.3.6.1.2.1.5.29.1.5.2|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.1.0|65|43
|
||||
1.3.6.1.2.1.5.30.1.3.1.3|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.1.4|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.1.5|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.1.8|65|1513
|
||||
1.3.6.1.2.1.5.30.1.3.1.9|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.1.10|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.1.11|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.1.12|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.1.13|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.1.14|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.1.15|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.1.16|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.1.17|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.1.18|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.2.1|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.2.2|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.2.3|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.2.4|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.2.128|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.2.129|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.2.130|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.2.131|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.2.132|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.2.133|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.2.134|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.2.135|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.2.136|65|0
|
||||
1.3.6.1.2.1.5.30.1.3.2.137|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.1.0|65|1513
|
||||
1.3.6.1.2.1.5.30.1.4.1.3|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.1.4|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.1.5|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.1.8|65|47
|
||||
1.3.6.1.2.1.5.30.1.4.1.9|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.1.10|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.1.11|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.1.12|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.1.13|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.1.14|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.1.15|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.1.16|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.1.17|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.1.18|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.2.1|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.2.2|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.2.3|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.2.4|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.2.128|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.2.129|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.2.130|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.2.131|65|4
|
||||
1.3.6.1.2.1.5.30.1.4.2.132|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.2.133|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.2.134|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.2.135|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.2.136|65|0
|
||||
1.3.6.1.2.1.5.30.1.4.2.137|65|0
|
||||
1.3.6.1.2.1.11.1.0|65|3611
|
||||
1.3.6.1.2.1.11.2.0|65|3610
|
||||
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|6
|
||||
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|3192
|
||||
1.3.6.1.2.1.11.14.0|65|0
|
||||
1.3.6.1.2.1.11.15.0|65|1707
|
||||
1.3.6.1.2.1.11.16.0|65|6
|
||||
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|0
|
||||
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|3612
|
||||
1.3.6.1.2.1.11.29.0|65|0
|
||||
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.2.1.33.1.1.1.0|4|APC
|
||||
1.3.6.1.4.1.318.1.1.1.1.1.1.0|4|Smart-UPS X 750
|
||||
1.3.6.1.4.1.318.1.1.1.1.2.1.0|4|UPS 09.9 (ID20)
|
||||
1.3.6.1.4.1.318.1.1.1.1.2.3.0|4|<private>
|
||||
1.3.6.1.4.1.318.1.1.1.2.2.2.0|66|31
|
||||
1.3.6.1.4.1.318.1.1.1.2.2.3.0|67|570900
|
||||
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.2.8.0|2|54
|
||||
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.3.2.1.0|66|232
|
||||
1.3.6.1.4.1.318.1.1.1.3.2.4.0|66|50
|
||||
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.2.1.0|66|232
|
||||
1.3.6.1.4.1.318.1.1.1.4.2.2.0|66|50
|
||||
1.3.6.1.4.1.318.1.1.1.4.3.3.0|66|202
|
||||
1.3.6.1.4.1.318.1.1.1.4.3.4.0|66|6
|
||||
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.1.2|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.2.2.2.1.2.1|4|Port 1 Temp 1
|
||||
1.3.6.1.4.1.318.1.1.10.2.2.2.1.2.2|4|Unknown
|
||||
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.3.2|2|-1
|
||||
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.4.2|2|-1
|
||||
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.5.2|2|1
|
||||
1.3.6.1.4.1.318.1.1.10.2.2.2.1.6.1|2|-1
|
||||
1.3.6.1.4.1.318.1.1.10.2.2.2.1.6.2|2|-1
|
||||
1.3.6.1.4.1.318.1.1.10.2.2.2.1.7.1|2|-1
|
||||
1.3.6.1.4.1.318.1.1.10.2.2.2.1.7.2|2|-1
|
||||
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.8.2|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.9.2|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.10.2|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.11.2|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.12.2|2|-1
|
||||
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.13.2|2|-1
|
||||
1.3.6.1.4.1.318.1.1.10.2.2.2.1.14.1|2|-1
|
||||
1.3.6.1.4.1.318.1.1.10.2.2.2.1.14.2|2|-1
|
||||
1.3.6.1.4.1.318.1.1.10.2.2.2.1.15.1|2|-1
|
||||
1.3.6.1.4.1.318.1.1.10.2.2.2.1.15.2|2|-1
|
||||
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.16.2|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.17.2|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.18.2|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.19.2|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.20.2|2|-1
|
||||
1.3.6.1.4.1.318.1.1.10.2.2.2.1.21.1|2|-1
|
||||
1.3.6.1.4.1.318.1.1.10.2.2.2.1.21.2|2|-1
|
||||
1.3.6.1.4.1.318.1.1.10.2.2.2.1.22.1|4|Port 1
|
||||
1.3.6.1.4.1.318.1.1.10.2.2.2.1.22.2|4|Unknown
|
||||
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|Door
|
||||
1.3.6.1.4.1.318.1.1.10.2.2.4.1.2.2|4|Fan
|
||||
1.3.6.1.4.1.318.1.1.10.2.2.4.1.3.1|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.2.2.4.1.3.2|2|2
|
||||
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|1
|
||||
1.3.6.1.4.1.318.1.1.10.2.2.4.1.5.1|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.2.2.4.1.5.2|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.2.2.4.1.6.1|4|Port 2
|
||||
1.3.6.1.4.1.318.1.1.10.2.2.4.1.6.2|4|Port 2
|
||||
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.1.2|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.2.3.2.1.2.1|4|Port 1 Temp 1
|
||||
1.3.6.1.4.1.318.1.1.10.2.3.2.1.2.2|4|Unknown
|
||||
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.3.2|2|1
|
||||
1.3.6.1.4.1.318.1.1.10.2.3.2.1.4.1|2|23
|
||||
1.3.6.1.4.1.318.1.1.10.2.3.2.1.4.2|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.5.2|2|1
|
||||
1.3.6.1.4.1.318.1.1.10.2.3.2.1.6.1|2|0
|
||||
1.3.6.1.4.1.318.1.1.10.2.3.2.1.6.2|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.7.2|2|1
|
||||
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.8.2|2|1
|
||||
1.3.6.1.4.1.318.1.1.10.2.3.2.1.9.1|2|1
|
||||
1.3.6.1.4.1.318.1.1.10.2.3.2.1.9.2|2|1
|
||||
1.3.6.1.4.1.318.1.1.10.2.3.2.1.10.1|2|1
|
||||
1.3.6.1.4.1.318.1.1.10.2.3.2.1.10.2|2|1
|
||||
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.11.2|2|1
|
||||
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.12.2|2|1
|
||||
1.3.6.1.4.1.318.1.1.10.2.3.2.1.13.1|2|1
|
||||
1.3.6.1.4.1.318.1.1.10.2.3.2.1.13.2|2|1
|
||||
1.3.6.1.4.1.318.1.1.10.2.3.2.1.14.1|2|1
|
||||
1.3.6.1.4.1.318.1.1.10.2.3.2.1.14.2|2|1
|
||||
1.3.6.1.4.1.318.1.1.10.2.3.2.1.15.1|4|Port 1
|
||||
1.3.6.1.4.1.318.1.1.10.2.3.2.1.15.2|4|Unknown
|
||||
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|Door
|
||||
1.3.6.1.4.1.318.1.1.10.2.3.4.1.2.2|4|Fan
|
||||
1.3.6.1.4.1.318.1.1.10.2.3.4.1.3.1|2|2
|
||||
1.3.6.1.4.1.318.1.1.10.2.3.4.1.3.2|2|1
|
||||
1.3.6.1.4.1.318.1.4.2.4.1.4.1|4|v6.6.4
|
||||
1.3.6.1.4.1.318.1.4.2.4.1.4.2|4|v6.6.4
|
||||
1.3.6.1.6.3.10.2.1.3.0|2|12950
|
Reference in New Issue
Block a user