Files
librenms/includes/polling/device-dell-laser.inc.php
T
2010-06-14 14:15:14 +00:00

15 lines
391 B
PHP

<?php
$hardware = trim(exec($config['snmpget'] . " -O Qv -" . $device['snmpver'] . " -c " . $device['community'] . " " .
$device['hostname'].":".$device['port'] . " hrDeviceDescr.1"));
list(,$version) = split('Engine ',$sysDescr);
$version = "Engine " . trim($version,')');
if (strstr($hardware ,';'))
{
$hardware = substr($hardware,0,strpos($hardware,';'));
}
?>