cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
11363
Views
16
Helpful
4
Replies

Cisco WLC AP count over SNMP

CSCO11724338
Level 1
Level 1

Hi,

Is it possible to monitore a quantity of AP on Cisco WLC and quantity of wireless clients?

I was found only list of AP names over snmp...

Thanks in advance

4 Replies 4

CSCO11724338
Level 1
Level 1

If someone has become interested, I have found only one way.

I have created a power shell script that collect all AP names (1 line in text document by 1 name) and then use wc -l to calculate number of lines.

This script provide me really value of number of AP's. And then, I use this result in our monitoring system to get the graphs.

Script is on linux server machine.

Hi Andrey,

i was just looking for a similar solution.... Are you willing to share the script with us?

Greetings Ralf

Hi, Ralf

If not late

I use script directly in monitoring system

main ()

{

VALUE=`snmpwalk -v 2c -c xxxCommunityxxx X.X.X.X 1.3.6.1.4.1.9.9.513.1.1.1.1.2 | wc -l`

echo "Message: Warning! Number of registed APs decriased."

echo "Data:Count"

echo "Count\t$VALUE"

exit 0

}

main $*

This is shell. but you can use simple only one line

`snmpwalk -v 2c -c xxxCommunityxxx X.X.X.X 1.3.6.1.4.1.9.9.513.1.1.1.1.2 | wc -l`

(from linux)

Christian Maier
Level 1
Level 1

For those reading later.
the MIB/OID to read out the number of AP is
1.3.6.1.4.1.9.9.618.1.8.4.0
And the number of clients is
1.3.6.1.4.1.9.9.618.1.8.12.0

Hope this helps someone.

Sent from Cisco Technical Support iPad App