Wireless Access

last person joined: 20 hours ago 

Access network design for branch, remote, outdoor, and campus locations with HPE Aruba Networking access points and mobility controllers.
Expand all | Collapse all

count of associated users on IAP virtual controller

This thread has been viewed 2 times
  • 1.  count of associated users on IAP virtual controller

    Posted Mar 06, 2018 08:45 PM

    Hi Everyone,

    can someone confirm if the IAP virtual controllers support an OID that shows the total associated user/device count ? The only two I can find (below) in the MIBs are not being populated by the Virtual controllers, and I can't find any info to indicate the IAPs support this.

     

     

    OID: 1.3.6.1.4.1.14823.2.2.1.5.3.1.1.1.2
    .wlanAPNumClients(2)
    Module: WLSX-WLAN-MIB

    OID: 1.3.6.1.4.1.14823.2.2.1.4.1.1
    .wlsxTotalNumOfUsers(1)
    Module: WLSX-USER-MIB

     

    Thanks

    Jason



  • 2.  RE: count of associated users on IAP virtual controller
    Best Answer

    Posted Mar 07, 2018 01:15 AM

    seems not, you may have to try something like counting the results from the aiClientTable, such as aiClientMACAddress, e.g.

     

    root@kali:/home/mibs/6.4.4.6# snmpwalk -v2c -c secret123 -mALL -M. -O0X 192.168.1.123 aiClientMACAddress 2>&1 | grep STRING | wc -l
    2
    root@kali:/home/mibs/6.4.4.6# 
    root@kali:/home/mibs/6.4.4.6# snmpwalk -v2c -c secret123 -mALL -M. -O0X 192.168.1.123 aiClientMACAddress 2>&1 | grep STRING
    AI-AP-MIB::aiClientMACAddress[STRING: 9a:fb:e0:07:a2:12] = STRING: 9a:fb:e0:07:a2:12
    AI-AP-MIB::aiClientMACAddress[STRING: f4:5c:81:97:e2:61] = STRING: f4:5c:81:97:e2:61
    root@bt:/home/mibs/6.4.4.6# 

    however,  associated clients which dont have an IP dont show up in the above results (found that by accident when capturing the above), just a point to note.