mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
9 lines
286 B
PHP
9 lines
286 B
PHP
<?php
|
|
|
|
$hardware = 'Ubiquiti '.trim(snmp_get($device, 'dot11manufacturerProductName.5', '-Ovq', 'IEEE802dot11-MIB'));
|
|
|
|
$version = trim(snmp_get($device, 'dot11manufacturerProductVersion.5', '-Ovq', 'IEEE802dot11-MIB'));
|
|
list(, $version) = preg_split('/\.v/', $version);
|
|
|
|
// EOF
|