librenms-librenms/includes/polling/device-speedtouch.inc.php

25 lines
549 B
PHP

<?php
echo("Doing Thompson Speedtouch ");
$serial = "";
#list(,$hardware,) = explode(" ", $hardware);
$hardware = $sysDescr;
$features = "";
### Filthy hack to get software version. may not work on anything but 585v7 :)
$loop = shell_exec($config['snmpget'] . ' -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];
}
echo("$hardware - $version - $features - $serial\n");
#include("hr-mib.inc.php");
?>