mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-12 16:06:25 +02: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
|