Zmegolaz 4be175578b Fix: AirOS version and hardware. (#8034)
* Added more sub-oids for airos version and hardware.

* Rewrote hardware and software detection for airos to getnext.
2018-01-06 23:20:31 -06:00

13 lines
327 B
PHP

<?php
$result = snmp_getnext($device, "dot11manufacturerProductName", '-OQv', 'IEEE802dot11-MIB');
$hardware = 'Ubiquiti ' . $result;
$result = snmp_getnext($device, "dot11manufacturerProductVersion", '-OQv', 'IEEE802dot11-MIB');
$version = $result;
list(, $version) = preg_split('/\.v/', $version);
unset($result);
// EOF