librenms-librenms/includes/polling/os/powerconnect.inc.php
2015-07-11 16:12:35 +02:00

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'];
}