Tony Murray 9284bc60ff Update code in includes to be PSR-2 compliant (#4220)
refactor: Update code in /includes to be psr2 compliant #4220
2016-08-28 18:32:58 +01:00

48 lines
1.6 KiB
PHP

<?php
if ($device['os'] == 'cambium') {
$cambium_type = snmp_get($device, 'sysDescr.0', '-Oqv', '');
$is_epmp = snmp_get($device, 'sysObjectID.0', '-Oqv', '');
$divisor = 1;
if (strstr($cambium_type, 'Cambium PTP 50650')) {
$mib = 'CAMBIUM-PTP650-MIB';
$oid = 'receivePower.0';
$divisor = 10;
} elseif (strstr($cambium_type, 'PTP250')) {
$oid = 'receivePower.0';
$mib = 'CAMBIUM-PTP250-MIB';
$divisor = 10;
} elseif (strstr($is_epmp, '.17713.21')) {
$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 != 1) {
$oid = 'cambiumSTADLRSSI.0';
$mib = 'CAMBIUM-PMP80211-MIB';
}
} else {
$oid = 'cambiumSTADLRSSI.0';
$mib = 'CAMBIUM-PMP80211-MIB';
}
} else {
$oid = '1.3.6.1.4.1.161.19.3.2.2.21.0';
$mib = 'WHISP-BOX-MIBV2-MIB';
}
$oids = trim(str_replace('"', '', snmp_get($device, "$oid", '-OsqnU', $mib)));
d_echo($oids."\n");
if (!empty($oids)) {
echo 'Cambium Signal ';
}
$type = 'cambium';
if (!empty($oids)) {
list(,$current) = explode(' ', $oids);
$current = $current / $divisor;
$index = $oid;
$descr = 'Signal';
discover_sensor($valid['sensor'], 'signal', $device, $oid, $index, $type, $descr, $divisor, '1', null, null, null, null, $current);
}
}