mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
More work for initial Cambium support
This commit is contained in:
@@ -1,3 +1,11 @@
|
||||
<?php
|
||||
|
||||
list(,$version,$hardware) = explode(" ", $device['sysDescr'],3);
|
||||
$canopy_type = snmp_get($device,"boxDeviceType.0", "-Oqv", "WHISP-BOX-MIBV2-MIB");
|
||||
|
||||
if (stristr($canopy_type,"MIMO OFDM")) {
|
||||
$hardware = 'PMP 450';
|
||||
} elseif (stristr($canopy_type,"OFDM")) {
|
||||
$hardware = 'PMP 430';
|
||||
} else {
|
||||
$hardware = 'PMP 100';
|
||||
}
|
||||
|
Reference in New Issue
Block a user