mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
device: Added SFP sensor discovery for Procurve devices (#8746)
* Added SFP sensor discovery for Procurve devices * Added SFP sensor discovery for Procurve devices * Added json test data
This commit is contained in:
24
includes/discovery/sensors/current/procurve.inc.php
Normal file
24
includes/discovery/sensors/current/procurve.inc.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
$multiplier = 1;
|
||||
$divisor = 1000000;
|
||||
$divisor_alarm = 10000000;
|
||||
foreach ($pre_cache['procurve_hpicfXcvrInfoTable'] as $index => $entry) {
|
||||
if (is_numeric($entry['hpicfXcvrBias']) && $entry['hpicfXcvrBias'] != 0) {
|
||||
$oid = '.1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.13.' . $index;
|
||||
$dbquery = dbFetchRows("SELECT `ifDescr` FROM `ports` WHERE `ifIndex`= ? AND `device_id` = ? AND `ifAdminStatus` = 'up'", array(
|
||||
$index,
|
||||
$device['device_id']
|
||||
));
|
||||
$limit_low = $entry['hpicfXcvrBiasLoAlarm'] / $divisor_alarm;
|
||||
$warn_limit_low = $entry['hpicfXcvrBiasLoWarn'] / $divisor_alarm;
|
||||
$limit = $entry['hpicfXcvrBiasHiAlarm'] / $divisor_alarm;
|
||||
$warn_limit = $entry['hpicfXcvrBiasHiWarn'] / $divisor_alarm;
|
||||
$current = $entry['hpicfXcvrBias'] / $divisor;
|
||||
$entPhysicalIndex = $index;
|
||||
$entPhysicalIndex_measured = 'ports';
|
||||
foreach ($dbquery as $dbindex => $dbresult) {
|
||||
$descr = makeshortif($dbresult['ifDescr']) . ' Port Bias Current';
|
||||
discover_sensor($valid['sensor'], 'current', $device, $oid, 'hpicfXcvrBias.' . $index, 'procurve', $descr, $divisor, $multiplier, $limit_low, $warn_limit_low, $warn_limit, $limit, $current, 'snmp', $entPhysicalIndex, $entPhysicalIndex_measured);
|
||||
}
|
||||
}
|
||||
}
|
44
includes/discovery/sensors/dbm/procurve.inc.php
Normal file
44
includes/discovery/sensors/dbm/procurve.inc.php
Normal file
@ -0,0 +1,44 @@
|
||||
<?php
|
||||
echo 'Procurve ';
|
||||
|
||||
$multiplier = 1;
|
||||
$divisor = 1000;
|
||||
foreach ($pre_cache['procurve_hpicfXcvrInfoTable'] as $index => $entry) {
|
||||
if (is_numeric($entry['hpicfXcvrRxPower']) && $entry['hpicfXcvrRxPower'] != -99999999 && isset($entry['hpicfXcvrDiagnosticsUpdate'])) {
|
||||
$oid = '.1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.15.' . $index;
|
||||
$dbquery = dbFetchRows("SELECT `ifDescr` FROM `ports` WHERE `ifIndex`= ? AND `device_id` = ? AND `ifAdminStatus` = 'up'", array(
|
||||
$index,
|
||||
$device['device_id']
|
||||
));
|
||||
$limit_low = round(uw_to_dbm($entry['hpicfXcvrRcvPwrLoAlarm'] / 10), 2);
|
||||
$warn_limit_low = round(uw_to_dbm($entry['hpicfXcvrRcvPwrLoWarn'] / 10), 2);
|
||||
$limit = round(uw_to_dbm($entry['hpicfXcvrRcvPwrHiAlarm'] / 10), 2);
|
||||
$warn_limit = round(uw_to_dbm($entry['hpicfXcvrRcvPwrHiWarn'] / 10), 2);
|
||||
$current = $entry['hpicfXcvrRxPower'] / $divisor;
|
||||
$entPhysicalIndex = $index;
|
||||
$entPhysicalIndex_measured = 'ports';
|
||||
foreach ($dbquery as $dbindex => $dbresult) {
|
||||
$descr = makeshortif($dbresult['ifDescr']) . ' Port Receive Power';
|
||||
discover_sensor($valid['sensor'], 'dbm', $device, $oid, 'hpicfXcvrRxPower.' . $index, 'procurve', $descr, $divisor, $multiplier, $limit_low, $warn_limit_low, $warn_limit, $limit, $current, 'snmp', $entPhysicalIndex, $entPhysicalIndex_measured);
|
||||
}
|
||||
}
|
||||
|
||||
if (is_numeric($entry['hpicfXcvrTxPower']) && $entry['hpicfXcvrTxPower'] != -99999999 && isset($entry['hpicfXcvrDiagnosticsUpdate'])) {
|
||||
$oid = '.1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.14.' . $index;
|
||||
$dbquery = dbFetchRows("SELECT `ifDescr` FROM `ports` WHERE `ifIndex`= ? AND `device_id` = ? AND `ifAdminStatus` = 'up'", array(
|
||||
$index,
|
||||
$device['device_id']
|
||||
));
|
||||
$limit_low = round(uw_to_dbm($entry['hpicfXcvrPwrOutLoAlarm'] / 10), 2);
|
||||
$warn_limit_low = round(uw_to_dbm($entry['hpicfXcvrPwrOutLoWarn'] / 10), 2);
|
||||
$limit = round(uw_to_dbm($entry['hpicfXcvrPwrOutHiAlarm'] / 10), 2);
|
||||
$warn_limit = round(uw_to_dbm($entry['hpicfXcvrPwrOutHiWarn'] / 10), 2);
|
||||
$current = $entry['hpicfXcvrTxPower'] / $divisor;
|
||||
$entPhysicalIndex = $index;
|
||||
$entPhysicalIndex_measured = 'ports';
|
||||
foreach ($dbquery as $dbindex => $dbresult) {
|
||||
$descr = makeshortif($dbresult['ifDescr']) . ' Port Transmit Power';
|
||||
discover_sensor($valid['sensor'], 'dbm', $device, $oid, 'hpicfXcvrTxPower.-' . $index, 'procurve', $descr, $divisor, $multiplier, $limit_low, $warn_limit_low, $warn_limit, $limit, $current, 'snmp', $entPhysicalIndex, $entPhysicalIndex_measured);
|
||||
}
|
||||
}
|
||||
}
|
@ -25,3 +25,6 @@
|
||||
|
||||
echo 'hpicfSensorTable ';
|
||||
$pre_cache['procurve_hpicfSensorTable'] = snmpwalk_cache_oid($device, 'hpicfSensorTable', array(), 'HP-ICF-CHASSIS', null, '-OeQUs');
|
||||
|
||||
echo 'hpicfXcvrInfoTable ';
|
||||
$pre_cache['procurve_hpicfXcvrInfoTable'] = snmpwalk_cache_oid($device, 'hpicfXcvrInfoTable', array(), 'HP-ICF-TRANSCEIVER-MIB', null, '-OeQUs');
|
||||
|
55
includes/discovery/sensors/temperature/procurve.inc.php
Normal file
55
includes/discovery/sensors/temperature/procurve.inc.php
Normal file
@ -0,0 +1,55 @@
|
||||
<?php
|
||||
echo 'Procurve ';
|
||||
|
||||
$entphydata = dbFetchRows("SELECT `entPhysicalIndex`, `entPhysicalClass`, `entPhysicalName` FROM `entPhysical` WHERE `device_id` = ? AND `entPhysicalClass` REGEXP 'module|sensor' ORDER BY `entPhysicalIndex`", array($device['device_id']));
|
||||
|
||||
if (!empty($entphydata)) {
|
||||
$tempdata = snmpwalk_cache_multi_oid($device, 'hpicfXcvrInfoTable', array(), 'HP-ICF-TRANSCEIVER-MIB');
|
||||
|
||||
foreach ($entphydata as $index) {
|
||||
foreach ($tempdata as $tempindex => $value) {
|
||||
if ($index['entPhysicalIndex'] == $tempindex && $value['hpicfXcvrTemp'] != 0) {
|
||||
$cur_oid = '.1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.';
|
||||
discover_sensor(
|
||||
$valid['sensor'],
|
||||
'temperature',
|
||||
$device,
|
||||
$cur_oid . $tempindex,
|
||||
'hpicfXcvrTemp.' . $tempindex,
|
||||
'procurve',
|
||||
$index['entPhysicalName'],
|
||||
'1',
|
||||
'1',
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
$value['hpicfXcvrTemp'],
|
||||
'snmp',
|
||||
$index['entPhysicalIndex']
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$multiplier = 1;
|
||||
$divisor = 1000;
|
||||
$divisor_alarm = 1000;
|
||||
foreach ($pre_cache['procurve_hpicfXcvrInfoTable'] as $index => $entry) {
|
||||
if (is_numeric($entry['hpicfXcvrTemp']) && $entry['hpicfXcvrTemp'] != 0) {
|
||||
$oid = '.1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.11.' . $index;
|
||||
$dbquery = dbFetchRows("SELECT `ifDescr` FROM `ports` WHERE `ifIndex`= ? AND `device_id` = ? AND `ifAdminStatus` = 'up'", array($index,$device['device_id']));
|
||||
$limit_low = $entry['hpicfXcvrTempLoAlarm'] / $divisor_alarm;
|
||||
$warn_limit_low = $entry['hpicfXcvrTempLoWarn'] / $divisor_alarm;
|
||||
$limit = $entry['hpicfXcvrTempHiAlarm'] / $divisor_alarm;
|
||||
$warn_limit = $entry['hpicfXcvrTempHiWarn'] / $divisor_alarm;
|
||||
$current = $entry['hpicfXcvrTemp'] / $divisor;
|
||||
$entPhysicalIndex = $index;
|
||||
$entPhysicalIndex_measured = 'ports';
|
||||
foreach ($dbquery as $dbindex => $dbresult) {
|
||||
$descr = makeshortif($dbresult['ifDescr']) . ' Port';
|
||||
discover_sensor($valid['sensor'], 'temperature', $device, $oid, 'temp-trans-' . $index, 'procurve', $descr, $divisor, $multiplier, $limit_low, $warn_limit_low, $warn_limit, $limit, $current, 'snmp', $entPhysicalIndex, $entPhysicalIndex_measured);
|
||||
}
|
||||
}
|
||||
}
|
26
includes/discovery/sensors/voltage/procurve.inc.php
Normal file
26
includes/discovery/sensors/voltage/procurve.inc.php
Normal file
@ -0,0 +1,26 @@
|
||||
<?php
|
||||
echo 'Procurve ';
|
||||
|
||||
$multiplier = 1;
|
||||
$divisor = 10000;
|
||||
$divisor_alarm = 10000;
|
||||
foreach ($pre_cache['procurve_hpicfXcvrInfoTable'] as $index => $entry) {
|
||||
if (is_numeric($entry['hpicfXcvrVoltage']) && $entry['hpicfXcvrVoltage'] != 0) {
|
||||
$oid = '.1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.12.' . $index;
|
||||
$dbquery = dbFetchRows("SELECT `ifDescr` FROM `ports` WHERE `ifIndex`= ? AND `device_id` = ? AND `ifAdminStatus` = 'up'", array(
|
||||
$index,
|
||||
$device['device_id']
|
||||
));
|
||||
$limit_low = $entry['hpicfXcvrVccLoAlarm'] / $divisor_alarm;
|
||||
$warn_limit_low = $entry['hpicfXcvrVccLoWarn'] / $divisor_alarm;
|
||||
$limit = $entry['hpicfXcvrVccHiAlarm'] / $divisor_alarm;
|
||||
$warn_limit = $entry['hpicfXcvrVccHiWarn'] / $divisor_alarm;
|
||||
$current = $entry['hpicfXcvrVoltage'] / $divisor;
|
||||
$entPhysicalIndex = $index;
|
||||
$entPhysicalIndex_measured = 'ports';
|
||||
foreach ($dbquery as $dbindex => $dbresult) {
|
||||
$descr = makeshortif($dbresult['ifDescr']) . ' Port Supply Voltage';
|
||||
discover_sensor($valid['sensor'], 'voltage', $device, $oid, 'hpicfXcvrVoltage.' . $index, 'procurve', $descr, $divisor, $multiplier, $limit_low, $warn_limit_low, $warn_limit, $limit, $current, 'snmp', $entPhysicalIndex, $entPhysicalIndex_measured);
|
||||
}
|
||||
}
|
||||
}
|
1485
mibs/hp/HP-ICF-TRANSCEIVER-MIB
Normal file
1485
mibs/hp/HP-ICF-TRANSCEIVER-MIB
Normal file
File diff suppressed because it is too large
Load Diff
@ -250,6 +250,29 @@
|
||||
"user_func": null,
|
||||
"state_name": "hpicfPsState"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.2",
|
||||
"sensor_index": "icfFanSensor.2",
|
||||
"sensor_type": "icfFanSensor",
|
||||
"sensor_descr": "Fan Sensor",
|
||||
"sensor_divisor": "1",
|
||||
"sensor_multiplier": "1",
|
||||
"sensor_current": "4",
|
||||
"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": "icfFanSensor"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": "0",
|
||||
"sensor_class": "state",
|
||||
@ -428,6 +451,41 @@
|
||||
"state_value": "6",
|
||||
"state_generic_value": "3"
|
||||
},
|
||||
{
|
||||
"state_name": "icfFanSensor",
|
||||
"state_descr": "unknown",
|
||||
"state_draw_graph": "0",
|
||||
"state_value": "1",
|
||||
"state_generic_value": "3"
|
||||
},
|
||||
{
|
||||
"state_name": "icfFanSensor",
|
||||
"state_descr": "bad",
|
||||
"state_draw_graph": "1",
|
||||
"state_value": "2",
|
||||
"state_generic_value": "2"
|
||||
},
|
||||
{
|
||||
"state_name": "icfFanSensor",
|
||||
"state_descr": "warning",
|
||||
"state_draw_graph": "1",
|
||||
"state_value": "3",
|
||||
"state_generic_value": "1"
|
||||
},
|
||||
{
|
||||
"state_name": "icfFanSensor",
|
||||
"state_descr": "good",
|
||||
"state_draw_graph": "1",
|
||||
"state_value": "4",
|
||||
"state_generic_value": "0"
|
||||
},
|
||||
{
|
||||
"state_name": "icfFanSensor",
|
||||
"state_descr": "notPresent",
|
||||
"state_draw_graph": "0",
|
||||
"state_value": "5",
|
||||
"state_generic_value": "3"
|
||||
},
|
||||
{
|
||||
"state_name": "icfTemperatureSensor",
|
||||
"state_descr": "unknown",
|
||||
@ -504,5 +562,17 @@
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"bgp-peers": {
|
||||
"discovery": {
|
||||
"devices": [
|
||||
{
|
||||
"bgpLocalAs": null
|
||||
}
|
||||
],
|
||||
"bgpPeers": [],
|
||||
"bgpPeers_cbgp": []
|
||||
},
|
||||
"poller": "matches discovery"
|
||||
}
|
||||
}
|
||||
|
@ -11,25 +11,64 @@
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.5|4|HP J9850A Switch power supply bay pseudocontainer
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.6|4|HP J9850A Switch management module pseudocontainer
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.9|4|HP J9850A Switch interface module pseudocontainer
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.10|4|HP J9775A Switch power supply
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.11|4|HP J9850A Switch fan
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.12|4|HP J9850A Switch fan
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.13|4|HP J9850A Switch fan
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.14|4|HP J9850A Switch fan
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.15|4|HP J9850A Switch fan
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.16|4|HP J9850A Switch fan
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.17|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.18|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.19|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.20|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.21|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.22|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.23|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.24|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.25|4|HP J9850A Switch temperature sensor
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.26|4|HP J9850A Switch power supply bay
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.27|4|HP J9850A Switch power supply bay
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.28|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.29|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.30|4|HP J9850A Switch power supply
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.31|4|HP J9850A Switch power supply
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.32|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.33|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.34|4|HP J9850A Switch Management Module Slot
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.35|4|HP J9850A Switch Management Module Slot
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.36|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.37|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.38|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.39|4|HP J9850A Switch port module slot
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.40|4|HP J9850A Switch port module slot
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.41|4|HP J9850A Switch port module slot
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.42|4|HP J9850A Switch port module slot
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.43|4|HP J9850A Switch port module slot
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.44|4|HP J9850A Switch port module slot
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.45|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.46|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.47|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.48|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.49|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.50|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.51|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.52|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.53|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.54|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.55|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.56|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.57|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.58|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.59|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.60|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.61|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.62|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.63|4|HP 100/1000BASE-T Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.64|4|HP 1000BASE-LX Port
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.65|4|HP No Card
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.66|4|HP No Card
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.67|4|HP No Card
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.69|4|HP J9827A Management Module 5400Rzl2
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.74|4|HP J9989A 12p PoE+ / 12p 1GbE SFP v3 zl2 Mod
|
||||
1.3.6.1.2.1.47.1.1.1.1.2.75|4|HP J9989A 12p PoE+ / 12p 1GbE SFP v3 zl2 Mod
|
||||
@ -113,25 +152,64 @@
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.5|4|Power supply bay pseudocontainer
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.6|4|Management module pseudocontainer
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.9|4|Interface module pseudocontainer
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.10|4|Power Supply
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.11|4|Fan 1
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.12|4|Fan 2
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.13|4|Fan 3
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.14|4|Fan 4
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.15|4|Fan 5
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.16|4|Fan 6
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.17|4|Port 2
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.18|4|Port 3
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.19|4|Port 4
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.20|4|Port 5
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.21|4|Port 6
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.22|4|Port 7
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.23|4|Port 8
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.24|4|Port 9
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.25|4|Chassis Temperature
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.26|4|Power Supply Bay 1
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.27|4|Power Supply Bay 2
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.28|4|Port 13
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.29|4|Port 14
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.30|4|Power Supply 1
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.31|4|Power Supply 2
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.32|4|Port 17
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.33|4|Port 18
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.34|4|Switch Management Module Slot
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.35|4|Switch Management Module Slot
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.36|4|Port 21
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.37|4|Port 22
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.38|4|Port 23
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.39|4|Slot A
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.40|4|Slot B
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.41|4|Slot C
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.42|4|Slot D
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.43|4|Slot E
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.44|4|Slot F
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.45|4|Port 30
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.46|4|Port 31
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.47|4|Port 32
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.48|4|Port 33
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.49|4|Port 34
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.50|4|Port 35
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.51|4|Port 36
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.52|4|Port 37
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.53|4|Port 38
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.54|4|Port 39
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.55|4|Port 40
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.56|4|Port 41
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.57|4|Port 42
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.58|4|Port 43
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.59|4|Port 44
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.60|4|Port 45
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.61|4|Port 46
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.62|4|Port 47
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.63|4|Port 48
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.64|4|Port 49
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.65|4|Port 50
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.66|4|Port 51
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.67|4|Port 52
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.69|4|Switch Management Module
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.74|4|A
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.75|4|B
|
||||
@ -208,6 +286,7 @@
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.189|4|Port C22
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.190|4|Port C23
|
||||
1.3.6.1.2.1.47.1.1.1.1.7.191|4|Port C24
|
||||
1.3.6.1.2.1.99.1.1.1.1.5|2|1
|
||||
1.3.6.1.2.1.99.1.1.1.1.11|2|1
|
||||
1.3.6.1.2.1.99.1.1.1.1.12|2|1
|
||||
1.3.6.1.2.1.99.1.1.1.1.13|2|1
|
||||
@ -215,6 +294,7 @@
|
||||
1.3.6.1.2.1.99.1.1.1.1.15|2|1
|
||||
1.3.6.1.2.1.99.1.1.1.1.16|2|1
|
||||
1.3.6.1.2.1.99.1.1.1.1.25|2|8
|
||||
1.3.6.1.2.1.99.1.1.1.2.5|2|9
|
||||
1.3.6.1.2.1.99.1.1.1.2.11|2|9
|
||||
1.3.6.1.2.1.99.1.1.1.2.12|2|9
|
||||
1.3.6.1.2.1.99.1.1.1.2.13|2|9
|
||||
@ -222,6 +302,7 @@
|
||||
1.3.6.1.2.1.99.1.1.1.2.15|2|9
|
||||
1.3.6.1.2.1.99.1.1.1.2.16|2|9
|
||||
1.3.6.1.2.1.99.1.1.1.2.25|2|9
|
||||
1.3.6.1.2.1.99.1.1.1.3.5|2|0
|
||||
1.3.6.1.2.1.99.1.1.1.3.11|2|0
|
||||
1.3.6.1.2.1.99.1.1.1.3.12|2|0
|
||||
1.3.6.1.2.1.99.1.1.1.3.13|2|0
|
||||
@ -229,6 +310,7 @@
|
||||
1.3.6.1.2.1.99.1.1.1.3.15|2|0
|
||||
1.3.6.1.2.1.99.1.1.1.3.16|2|0
|
||||
1.3.6.1.2.1.99.1.1.1.3.25|2|0
|
||||
1.3.6.1.2.1.99.1.1.1.4.5|2|0
|
||||
1.3.6.1.2.1.99.1.1.1.4.11|2|0
|
||||
1.3.6.1.2.1.99.1.1.1.4.12|2|0
|
||||
1.3.6.1.2.1.99.1.1.1.4.13|2|0
|
||||
@ -237,12 +319,19 @@
|
||||
1.3.6.1.2.1.99.1.1.1.4.16|2|0
|
||||
1.3.6.1.2.1.99.1.1.1.4.25|2|20
|
||||
1.3.6.1.4.1.11.2.14.11.1.2.6.1.1.1|2|1
|
||||
1.3.6.1.4.1.11.2.14.11.1.2.6.1.1.2|2|2
|
||||
1.3.6.1.4.1.11.2.14.11.1.2.6.1.2.1|6|1.3.6.1.4.1.11.2.3.7.8.3.3
|
||||
1.3.6.1.4.1.11.2.14.11.1.2.6.1.2.2|6|1.3.6.1.4.1.11.2.3.7.8.3.2
|
||||
1.3.6.1.4.1.11.2.14.11.1.2.6.1.3.1|2|1
|
||||
1.3.6.1.4.1.11.2.14.11.1.2.6.1.3.2|2|1
|
||||
1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.1|2|5
|
||||
1.3.6.1.4.1.11.2.14.11.1.2.6.1.4.2|2|4
|
||||
1.3.6.1.4.1.11.2.14.11.1.2.6.1.5.1|65|0
|
||||
1.3.6.1.4.1.11.2.14.11.1.2.6.1.5.2|65|0
|
||||
1.3.6.1.4.1.11.2.14.11.1.2.6.1.6.1|65|0
|
||||
1.3.6.1.4.1.11.2.14.11.1.2.6.1.6.2|65|0
|
||||
1.3.6.1.4.1.11.2.14.11.1.2.6.1.7.1|4|Chassis Sensor
|
||||
1.3.6.1.4.1.11.2.14.11.1.2.6.1.7.2|4|Fan Sensor
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.9.6.1.0|2|42
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.2.1|2|0
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.54.2.1.1.2.2|2|0
|
||||
@ -290,4 +379,69 @@
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.8.2|65|10841186
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.9.1|4|J9829A
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.55.1.1.1.9.2|4|J9829A
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.1.49|2|49
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.2.49|4|49
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.3.49|4|J4859C
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.4.49|4|EO11803190184
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.5.49|4|1000LX
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.6.49|4|LC
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.7.49|4|1310nm
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.8.49|4|20.0km (9um),
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.9.49|2|1
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.10.49|2|2
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.11.49|2|45398
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.12.49|66|32970
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.13.49|66|8850
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.14.49|2|-6020
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.15.49|2|-99999999
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.16.49|4|80 20 00 00 0 10
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.17.49|4|00 00 80 00 16
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.18.49|2|90000
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.19.49|2|-45000
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.20.49|2|85000
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.21.49|2|-40000
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.22.49|66|38000
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.23.49|66|27000
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.24.49|66|37000
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.25.49|66|28000
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.26.49|66|100000
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.27.49|66|0
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.28.49|66|90000
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.29.49|66|100
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.30.49|66|6310
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.31.49|66|1000
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.32.49|66|5012
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.33.49|66|1259
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.34.49|66|10000
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.35.49|66|40
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.36.49|66|7943
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.37.49|66|50
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.38.49|4|Fri Jan 5 22:03:36 1990
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.39.49|2|0
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.40.49|66|10
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.41.49|2|0
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.42.49|2|5
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.43.49|66|0
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.44.49|66|0
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.45.49|2|2
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.46.49|66|0
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.47.49|2|5
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.48.49|66|0
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.49.49|66|0
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.50.49|2|2
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.51.49|66|0
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.52.49|2|5
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.53.49|66|0
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.54.49|66|0
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.55.49|2|2
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.56.49|66|0
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.57.49|2|5
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.58.49|66|0
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.59.49|66|0
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.60.49|2|2
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.61.49|66|0
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.62.49|2|2
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.63.49|2|2
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.64.49|67|42501669
|
||||
1.3.6.1.4.1.11.2.14.11.5.1.82.1.1.1.1.65.49|4|180319
|
||||
1.3.6.1.6.3.10.2.1.3.0|2|10841209
|
||||
|
Reference in New Issue
Block a user