Files
librenms-librenms/includes/polling/os/ubiquitiap.inc.php
2015-03-25 16:33:05 +00:00

11 lines
269 B
PHP

<?php
$data = snmp_get_multi($device, "dot11manufacturerProductName.5 dot11manufacturerProductVersion.5", "-Oqv", "IEEE802dot11-MIB");
$hardware = $data[0];
if (preg_match("/(v[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)/", $data[1],$matches)) {
$version = $matches[0];
}
?>