Files

13 lines
327 B
PHP
Raw Permalink Normal View History

<?php
2018-01-07 06:20:31 +01:00
$result = snmp_getnext($device, "dot11manufacturerProductName", '-OQv', 'IEEE802dot11-MIB');
$hardware = 'Ubiquiti ' . $result;
2018-01-07 06:20:31 +01:00
$result = snmp_getnext($device, "dot11manufacturerProductVersion", '-OQv', 'IEEE802dot11-MIB');
$version = $result;
list(, $version) = preg_split('/\.v/', $version);
unset($result);
// EOF