Files
librenms-librenms/includes/polling/device-powerconnect.inc.php

11 lines
391 B
PHP

<?php
$snmp_cmd = $config['snmpget'] . " -m Dell-Vendor-MIB -O Qv -" . $device['snmpver'] . " -c " . $device['community'] . " " .
$device['hostname'].":".$device['port'];
$snmp_cmd .= " productIdentificationDisplayName.0 productIdentificationVersion.0 productIdentificationDescription.0";
list($hardware, $version, $features) = explode("\n", shell_exec($snmp_cmd));
?>