42 lines
1.7 KiB
PHP
Raw Normal View History

2016-03-22 09:32:26 -04:00
<?php
/*
* LibreNMS
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version. Please see LICENSE.txt at the top level of
* the source code distribution for details.
*/
$cambium_type = snmp_get($device, 'sysDescr.0', '-Oqv', '');
$is_epmp = snmp_get($device, 'sysObjectID.0', '-Oqv', '');
$version = $cambium_type;
if (strstr($cambium_type, 'Cambium PTP 50650')) {
$masterSlaveMode = ucfirst(snmp_get($device, 'masterSlaveMode.0', '-Oqv', "CAMBIUM-PTP650-MIB"));
$hardware = 'PTP 650 '. $masterSlaveMode;
include 'includes/polling/wireless/cambium-650.inc.php';
} elseif (strstr($cambium_type, 'PTP250')) {
2016-03-22 09:32:26 -04:00
$masterSlaveMode = ucfirst(snmp_get($device, 'masterSlaveMode.0', '-Oqv', "CAMBIUM-PTP250-MIB"));
$hardware = 'PTP 250 '.$masterSlaveMode;
include 'includes/polling/wireless/cambium-250.inc.php';
} elseif (strstr($is_epmp, '.17713.21')) {
2016-03-22 09:32:26 -04:00
$epmp_ap = snmp_get($device, 'wirelessInterfaceMode.0', '-Oqv', 'CAMBIUM-PMP80211-MIB');
$epmp_number = snmp_get($device, 'cambiumSubModeType.0', '-Oqv', 'CAMBIUM-PMP80211-MIB');
if ($epmp_ap == 1) {
if ($epmp_number == 5) {
$hardware = 'ePTP Master';
} else {
2016-03-22 09:32:26 -04:00
$hardware = 'ePMP AP';
}
} elseif ($epmp_ap == 2) {
2016-03-22 09:32:26 -04:00
if ($epmp_number == 4) {
$hardware = 'ePTP Slave';
} else {
2016-03-22 09:32:26 -04:00
$hardware = 'ePMP SM';
}
}
$version = snmp_get($device, 'cambiumCurrentuImageVersion.0', '-Oqv', 'CAMBIUM-PMP80211-MIB');
include 'includes/polling/wireless/cambium-epmp.inc.php';
}