mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-12 16:06:25 +02:00
10 lines
397 B
PHP
10 lines
397 B
PHP
<?php
|
|
|
|
$hardware = 'Dell '.snmp_get($device, 'productIdentificationDisplayName.0', '-Ovq', 'Dell-Vendor-MIB');
|
|
$version = snmp_get($device, 'productIdentificationVersion.0', '-Ovq', 'Dell-Vendor-MIB');
|
|
$features = snmp_get($device, 'productIdentificationDescription.0', '-Ovq', 'Dell-Vendor-MIB');
|
|
|
|
if (strstr($hardware, 'No Such Object available')) {
|
|
$hardware = $poll_device['sysDescr'];
|
|
}
|