mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
26 lines
945 B
PHP
26 lines
945 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Str;
|
|
|
|
$avocent_tmp = snmp_get_multi_oid($device, ['pmProductModel.0', 'pmSerialNumber.0', 'pmFirmwareVersion.0'], '-OUQs', 'PM-MIB');
|
|
|
|
$hardware = $avocent_tmp['pmProductModel.0'];
|
|
$serial = $avocent_tmp['pmSerialNumber.0'];
|
|
$version = $avocent_tmp['pmFirmwareVersion.0'];
|
|
|
|
if (empty($hardware)) {
|
|
if (Str::startsWith($device['sysObjectID'], '.1.3.6.1.4.1.10418.16')) {
|
|
$avocent_oid = '.1.3.6.1.4.1.10418.16.2.1';
|
|
} elseif (Str::startsWith($device['sysObjectID'], '.1.3.6.1.4.1.10418.26')) {
|
|
$avocent_oid = '.1.3.6.1.4.1.10418.26.2.1';
|
|
}
|
|
if ($avocent_oid) {
|
|
$avocent_tmp = snmp_get_multi_oid($device, "$avocent_oid.2.0 $avocent_oid.4.0 $avocent_oid.7.0");
|
|
list($hardware,) = explode(' ', $avocent_tmp["$avocent_oid.2.0"], 2);
|
|
$serial = $avocent_tmp["$avocent_oid.4.0"];
|
|
$version = $avocent_tmp["$avocent_oid.7.0"];
|
|
}
|
|
}
|
|
|
|
unset($avocent_tmp);
|