Using MIBs to monitor connected clients
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2014 05:42 AM
Hi,
We run 9.6.1.0 build 15 on our Zonedirector 1100 running 11 Ap's, we are using PRTG as our network monitoring kit and we want to be able to see the number of units that are currently connected to each AP, we have the most current MIB's from the website which is the sensor we should be using to be able to see the number of clients on each AP?
We have tried the following sesnors:
Radio stats max sta
radio stats num auth sta
radio stats num sta
wlan0/1 num sta
Thanks,
Julius
We run 9.6.1.0 build 15 on our Zonedirector 1100 running 11 Ap's, we are using PRTG as our network monitoring kit and we want to be able to see the number of units that are currently connected to each AP, we have the most current MIB's from the website which is the sensor we should be using to be able to see the number of clients on each AP?
We have tried the following sesnors:
Radio stats max sta
radio stats num auth sta
radio stats num sta
wlan0/1 num sta
Thanks,
Julius
4 REPLIES 4
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2014 03:44 PM
Try this:
https://github.com/bot779/getruckus
I'm not aware offhand, of what SNMP OID tells you how many clients are connected but his code will display a list of mac addresses per AP.
-Bill
https://github.com/bot779/getruckus
I'm not aware offhand, of what SNMP OID tells you how many clients are connected but his code will display a list of mac addresses per AP.
-Bill
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2014 04:54 PM
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2014 09:04 AM
You can try this.
You can get total number of clients on each AP by using below oid.
Use 9.7 mibs,
Mib file name: RUCKUS-ZD-WLAN-MIB
Oid: .1.3.6.1.4.1.25053.1.2.2.1.1.2.1.1.15
String: .iso.org.dod.internet.private.enterprises.ruckusRootMIB.ruckusObjects.ruckusZD.ruckusZDWLANModule.ruckusZDWLANMIB.ruckusZDWLANObjects.ruckusZDWLANAPInfo.ruckusZDWLANAPTable.ruckusZDWLANAPEntry.ruckusZDWLANAPNumSta
You can get total number of clients on each AP by using below oid.
Use 9.7 mibs,
Mib file name: RUCKUS-ZD-WLAN-MIB
Oid: .1.3.6.1.4.1.25053.1.2.2.1.1.2.1.1.15
String: .iso.org.dod.internet.private.enterprises.ruckusRootMIB.ruckusObjects.ruckusZD.ruckusZDWLANModule.ruckusZDWLANMIB.ruckusZDWLANObjects.ruckusZDWLANAPInfo.ruckusZDWLANAPTable.ruckusZDWLANAPEntry.ruckusZDWLANAPNumSta
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2014 03:27 PM
Oh... Sudhakar has a better answer than me.
Here's my answer anyway.
Checking some old SNMP notes...
You should try this:
> user@linux:ruckus# snmpwalk -On -c $COMMUNITYSTRING -v2c -Pe -m "" $CONTROLLER-IP .1.3.6.1.4.1.25053.1.2.2.1.1.2.1.1.15
> user@linux:ruckus# snmpwalk -On -c $COMMUNITYSTRING -v2c -Pe -m "" $CONTROLLER-IP .1.3.6.1.4.1.25053.1.2.2.1.1.2.1.1.16
> user@linux:ruckus# snmpwalk -On -c $COMMUNITYSTRING -v2c -Pe -m "" $CONTROLLER-IP .1.3.6.1.4.1.25053.1.2.2.1.1.2.1.1.2
replace $COMMUNITYSTRING with "public" or whatever your community string is.
replace $CONTROLLER-IP with the IP address of your zonedirector.
Did that give you what you want?
My old SNMP notes can be found here:
https://forums.ruckuswireless.com/ruc...
Here's my answer anyway.
Checking some old SNMP notes...
You should try this:
> user@linux:ruckus# snmpwalk -On -c $COMMUNITYSTRING -v2c -Pe -m "" $CONTROLLER-IP .1.3.6.1.4.1.25053.1.2.2.1.1.2.1.1.15
> user@linux:ruckus# snmpwalk -On -c $COMMUNITYSTRING -v2c -Pe -m "" $CONTROLLER-IP .1.3.6.1.4.1.25053.1.2.2.1.1.2.1.1.16
> user@linux:ruckus# snmpwalk -On -c $COMMUNITYSTRING -v2c -Pe -m "" $CONTROLLER-IP .1.3.6.1.4.1.25053.1.2.2.1.1.2.1.1.2
replace $COMMUNITYSTRING with "public" or whatever your community string is.
replace $CONTROLLER-IP with the IP address of your zonedirector.
Did that give you what you want?
My old SNMP notes can be found here:
https://forums.ruckuswireless.com/ruc...

