librenms/includes/polling/os/speedtouch.inc.php
Tom Laermans 752bbc2af8 array keys are strings, duh
git-svn-id: http://www.observium.org/svn/observer/trunk@2863 61d68cd4-352d-0410-923a-c4978735b2b8
2012-02-14 19:01:23 +00:00

20 lines
469 B
PHP

<?php
$serial = "";
#list(,$hardware,) = explode(" ", $hardware);
$hardware = $poll_device['sysDescr'];
$features = "";
### Filthy hack to get software version. may not work on anything but 585v7 :)
$loop = shell_exec($config['snmpget'] . " -M ".$config['mibdir'] . ' -Ovq -v1 -c '.$device['community'].' '.$device['hostname'].' ifDescr.101');
if ($loop)
{
preg_match('@([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)@i',
$loop, $matches);
$version = $matches[1];
}
?>