Added memory to CiscoWLC, added discovery of APs to CiscoWLC, Fixed wrong table used in accesspoint-tab

This commit is contained in:
Frederik Mogensen
2016-06-24 22:29:18 +02:00
parent 7356464153
commit 49a613a44d
3 changed files with 143 additions and 16 deletions
@@ -0,0 +1,12 @@
<?php
if ($device['os'] == 'ciscowlc') {
echo 'Cisco WLC';
$total = str_replace('"', "", snmp_get($device, "1.3.6.1.4.1.14179.1.1.5.3.0", '-OvQ'));
$avail = str_replace('"', "", snmp_get($device, "1.3.6.1.4.1.14179.1.1.5.2.0", '-OvQ'));
if ((is_numeric($total)) && (is_numeric($avail))) {
discover_mempool($valid_mempool, $device, 0, 'ciscowlc', 'Memory', '1', null, null);
}
}
@@ -0,0 +1,12 @@
<?php
if ($device['os'] == 'ciscowlc') {
echo "Cisco WLC";
$total = str_replace('"', "", snmp_get($device, "1.3.6.1.4.1.14179.1.1.5.2.0", '-OvQ'));
$avail = str_replace('"', "", snmp_get($device, "1.3.6.1.4.1.14179.1.1.5.3.0", '-OvQ'));
$mempool['total'] = ($total * 1024);
$mempool['free'] = ($avail * 1024);
$mempool['used'] = (($total - $avail) * 1024);
}
+119 -16
View File
@@ -32,22 +32,11 @@ if (empty($hardware)) {
$hardware = snmp_get($device, 'sysObjectID.0', '-Osqv', 'SNMPv2-MIB:CISCO-PRODUCTS-MIB');
}
$oids_AP_Name = array(
'bsnAPName',
);
$oids_AP_Users = array(
'bsnApIfNoOfUsers',
);
foreach ($oids_AP_Name as $oid) {
$stats = snmpwalk_cache_oid($device, $oid, $stats, 'AIRESPACE-WIRELESS-MIB', null, '-OQUsxb');
}
foreach ($oids_AP_Users as $oid) {
$APstats = snmpwalk_cache_oid($device, $oid, $APstats, 'AIRESPACE-WIRELESS-MIB', null, '-OQUsxb');
}
$stats = snmpwalk_cache_oid($device, "bsnAPEntry", $stats, 'AIRESPACE-WIRELESS-MIB', null, '-OQUsb');
$radios = snmpwalk_cache_oid($device, "bsnAPIfEntry", $radios, 'AIRESPACE-WIRELESS-MIB', null, '-OQUsb');
$APstats = snmpwalk_cache_oid($device, 'bsnApIfNoOfUsers', $APstats, 'AIRESPACE-WIRELESS-MIB', null, '-OQUsxb');
$loadParams = snmpwalk_cache_oid($device, "bsnAPIfLoadChannelUtilization", $loadParams, 'AIRESPACE-WIRELESS-MIB', null, '-OQUsb');
$interferences = snmpwalk_cache_oid($device, "bsnAPIfInterferencePower", $interferences, 'AIRESPACE-WIRELESS-MIB', null, '-OQUsb');
$numAccessPoints = count($stats);
$numClients = 0;
@@ -80,3 +69,117 @@ $fields = array(
rrdtool_update($wificlientsrrd, $fields);
$graphs['wifi_clients'] = true;
$ap_db = dbFetchRows('SELECT * FROM `access_points` WHERE `device_id` = ?', array($device['device_id']));
foreach ($radios as $key => $value) {
$indexName = substr($key, 0, -2);
$channel = str_replace('ch', '', $value['bsnAPIfPhyChannelNumber']);
$mac = str_replace(' ', ':', $stats[$indexName]['bsnAPDot3MacAddress']);
$name = $stats[$indexName]['bsnAPName'];
$numasoclients = $value['bsnApIfNoOfUsers'];
$radionum = array_pop(explode('.',$key));
$txpow = $value['bsnAPIfPhyTxPowerLevel'];
$type = $value['bsnAPIfType'];
$interference = 128 + $interferences[$key . '.' . $channel]['bsnAPIfInterferencePower'];
// TODO
$numactbssid = 0;
$nummonbssid = 0;
$nummonclients = 0;
$radioutil = $loadParams[$key]['bsnAPIfLoadChannelUtilization'];
d_echo(" name: $name\n");
d_echo(" radionum: $radionum\n");
d_echo(" type: $type\n");
d_echo(" channel: $channel\n");
d_echo(" txpow: $txpow\n");
d_echo(" radioutil: $radioutil\n");
d_echo(" numasoclients: $numasoclients\n");
d_echo(" interference: $interference\n");
// if there is a numeric channel, assume the rest of the data is valid, I guess
if (is_numeric($channel)) {
$rrd_file = $config['rrd_dir'].'/'.$device['hostname'].'/'.safename("arubaap-$name.$radionum.rrd");
if (!is_file($rrd_file)) {
$dslist = 'DS:channel:GAUGE:600:0:200 ';
$dslist .= 'DS:txpow:GAUGE:600:0:200 ';
$dslist .= 'DS:radioutil:GAUGE:600:0:100 ';
$dslist .= 'DS:nummonclients:GAUGE:600:0:500 ';
$dslist .= 'DS:nummonbssid:GAUGE:600:0:200 ';
$dslist .= 'DS:numasoclients:GAUGE:600:0:500 ';
$dslist .= 'DS:interference:GAUGE:600:0:2000 ';
rrdtool_create($rrd_file, "--step 300 $dslist ".$config['rrd_rra']);
}
$fields = array(
'channel' => $channel,
'txpow' => $txpow,
'radioutil' => $radioutil,
'nummonclients' => $nummonclients,
'nummonbssid' => $nummonbssid,
'numasoclients' => $numasoclients,
'interference' => $interference,
);
rrdtool_update($rrd_file, $fields);
}
$foundid = 0;
for ($z = 0; $z < sizeof($ap_db); $z++) {
if ($ap_db[$z]['name'] == $name && $ap_db[$z]['radio_number'] == $radionum) {
$foundid = $ap_db[$z]['accesspoint_id'];
$ap_db[$z]['seen'] = 1;
continue;
}
}
if ($foundid == 0) {
$ap_id = dbInsert(
array(
'device_id' => $device['device_id'],
'name' => $name,
'radio_number' => $radionum,
'type' => $type,
'mac_addr' => $mac,
'channel' => $channel,
'txpow' => $txpow,
'radioutil' => $radioutil,
'numasoclients' => $numasoclients,
'nummonclients' => $nummonclients,
'numactbssid' => $numactbssid,
'nummonbssid' => $nummonbssid,
'interference' => $interference
),
'access_points');
} else {
dbUpdate(
array(
'mac_addr' => $mac,
'type' => $type,
'deleted' => 0,
'channel' => $channel,
'txpow' => $txpow,
'radioutil' => $radioutil,
'numasoclients' => $numasoclients,
'nummonclients' => $nummonclients,
'numactbssid' => $numactbssid,
'nummonbssid' => $nummonbssid,
'interference' => $interference
),
'access_points',
'`accesspoint_id` = ?', array($foundid));
}
}//end foreach
for ($z = 0; $z < sizeof($ap_db); $z++) {
if (!isset($ap_db[$z]['seen']) && $ap_db[$z]['deleted'] == 0) {
dbUpdate(array('deleted' => 1), 'access_points', '`accesspoint_id` = ?', array($ap_db[$z]['accesspoint_id']));
}
}