Skip to main content

Cisco Wap SNMP

Overview​

Cisco is a provider of network solutions.

The Centreon Monitoring Connector Cisco Wap SNMP relies on the SNMP protocol to query and collect the status and metrics of the Cisco Wireless Access Point equipment.

Monitoring Connector assets​

Monitored objects​

  • Client
  • CPU
  • Interfaces
  • Memory
  • Uptime
  • Virtual access point

Collected metrics​

Metric nameDescriptionUnit
clients.connected.countTotal number of clients connected on the access pointcount
radio.clients.connected.countNumber of clients connected radio channel of the access pointcount

Prerequisites​

The SNMP agent must be configured and running. Please refer to the manufacturer documentation to achieve this. The Centreon Poller must be able to reach the UDP/161 SNMP port of the Cisco Wap device.

Installation​

  1. Install the Centreon package on every Centreon Poller expected to monitor Cisco Wireless Access Point equipments:
yum install centreon-plugin-Network-Cisco-Wap-Snmp
  1. On the Centreon Web interface, install the Cisco Wap SNMP Monitoring Connector through Configuration > Monitoring Connectors Manager page.

Host configuration​

Create your Host and apply the Net-Cisco-Wap-SNMP-custom Host Template. You must set SNMP Community and Version in the dedicated fields of the Host Form.

When using SNMP v3, use the SNMPEXTRAOPTIONS Macro to add specific authentication parameters More information in the Troubleshooting SNMP section.

MandatoryNameDescription
SNMPEXTRAOPTIONSConfigure your own SNMPv3 credentials combo

How to test my plugin and what do the main parameters stand for ?​

Once the plugin is installed, you can test it logging into the CLI with the centreon-engine user.

/usr/lib/centreon/plugins//centreon_cisco_wap_snmp.pl --plugin=network::cisco::wap::snmp::plugin \
--mode=clients \
--hostname=10.30.2.11 \
--snmp-community=centreon-cisco-wap \
--snmp-version=2c \
--warning-clients-connected=90 \
--critical-clients-connected=100 \
--verbose

OK: clients connected: 1 | 'clients.connected.count'=1;0:90;0:100;0; 'wlan0#radio.clients.connected.count'=0;;;0; 'wlan1#radio.clients.connected.count'=1;;;0;
Radio interface 'wlan0' clients connected: 0
Radio interface 'wlan1' clients connected: 1

The command above collects the number of clients connected to the Cisco Access Point (--mode=clients). Mandatory options are the IP/FQDN of the device (--hostname=10.30.2.11) and the SNMP version you have set on your appliance (--snmp-community='centreon-cisco-wap').

This command would trigger a WARNING alarm if the number of clients connected to the device is greater than 90 (--warning-clients-connected='90') and a CRITICAL alarm if the number of clients connected to the device is greater than 100 (--critical-clients-connected='100').

All available options for a given mode can be displayed by adding the --help parameter to the command:

/usr/lib/centreon/plugins//centreon_cisco_wap_snmp.pl \
--plugin=network::cisco::wap::snmp::plugin \
--mode=clients \
--help

All plugin modes can be listed with the following command:

/usr/lib/centreon/plugins//centreon_cisco_wap_snmp.pl \
--plugin=network::cisco::wap::snmp::plugin \
--list-mode

Troubleshooting​

UNKNOWN: SNMP GET Request : Timeout​

If you get this error, it may indicate that some flows are blocked between the Centreon Poller and the Cisco devices. It can also mean that the Centreon Host Configuration doesn't reflect the SNMP configuration on Cisco side (version, community).

UNKNOWN: SNMP GET Request : Cant get a single value.​

You may get this error when SNMP privileges are not wide enough. You can check that the SNMP community used in your command line has enough rights to walk the Cisco entreprise SNMP branch: .1.3.6.1.4.1.9.6.1.104 You can use the snmpwalk utilities which is provided through net-snmp package.