mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Added more sub-oids for airos version and hardware. * Rewrote hardware and software detection for airos to getnext.
13 lines
327 B
PHP
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
|