Julian K ffb20d9ee3 newdevice: Added hardware and version from AirOS 8.x (#6802)
newdevice: Added hardware and version from AirOS 8.x (#6802)
2017-06-13 20:55:42 +01:00

19 lines
579 B
PHP

<?php
foreach (array(10,5) as $i) {
$result = snmp_get_multi_oid($device, "dot11manufacturerProductName.$i dot11manufacturerProductVersion.$i", '-OQUs', 'IEEE802dot11-MIB');
// If invalid, $result contains one empty element.
// So we have to verify it contains exactly two elements.
if (count($result) == 2) {
$hardware = 'Ubiquiti ' . $result["dot11manufacturerProductName.$i"];
$version = $result["dot11manufacturerProductVersion.$i"];
list(, $version) = preg_split('/\.v/', $version);
break;
}
}
unset($result);
// EOF