From 1034c03a9ce2bb12166b4785756b69464c988620 Mon Sep 17 00:00:00 2001 From: Rosiak Date: Fri, 25 Mar 2016 17:15:35 +0100 Subject: [PATCH] Detect Autonomous Cisco AP's --- includes/polling/wifi.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/polling/wifi.inc.php b/includes/polling/wifi.inc.php index c2ea60165..685fac964 100644 --- a/includes/polling/wifi.inc.php +++ b/includes/polling/wifi.inc.php @@ -34,7 +34,7 @@ if ($device['type'] == 'network' || $device['type'] == 'firewall' || $device['ty // FIXME Also interesting to poll? dhcpNumber.0 for number of active dhcp leases } - if ($device['os'] == 'ios' and substr($device['hardware'], 0, 4) == 'AIR-') { + if ($device['os'] == 'ios' and substr($device['hardware'], 0, 4) == 'AIR-' || ($device['os'] == 'ios' && strpos($device['hardware'], 'ciscoAIR') !== false)) { echo 'Checking Aironet Wireless clients... '; $wificlients1 = snmp_get($device, 'cDot11ActiveWirelessClients.1', '-OUqnv', 'CISCO-DOT11-ASSOCIATION-MIB');