Files
librenms-librenms/includes/polling/os/speedtouch.inc.php

16 lines
364 B
PHP
Raw Normal View History

<?php
$serial = '';
// list(,$hardware,) = explode(" ", $hardware);
$hardware = $device['sysDescr'];
$features = '';
// Filthy hack to get software version. may not work on anything but 585v7 :)
$loop = snmp_get($device, 'ifDescr.101', '-Oqv');
if ($loop) {
preg_match('@([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)@i', $loop, $matches);
$version = $matches[1];
}