librenms/includes/polling/os/canopy.inc.php

14 lines
270 B
PHP
Raw Normal View History

2015-04-02 07:50:43 +00:00
<?php
2015-07-13 18:10:26 +00:00
$canopy_type = snmp_get($device, 'boxDeviceType.0', '-Oqv', 'WHISP-BOX-MIBV2-MIB');
2015-04-06 22:03:19 +00:00
2015-07-13 18:10:26 +00:00
if (stristr($canopy_type, 'MIMO OFDM')) {
2015-04-06 22:03:19 +00:00
$hardware = 'PMP 450';
2015-07-13 18:10:26 +00:00
}
else if (stristr($canopy_type, 'OFDM')) {
2015-04-06 22:03:19 +00:00
$hardware = 'PMP 430';
2015-07-13 18:10:26 +00:00
}
else {
2015-04-06 22:03:19 +00:00
$hardware = 'PMP 100';
}