What's new

XT8 Wireless Client list by SSID by Band

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

TechGodfather

New Around Here
I want to use SSH to get a list of client mac address connections by wireless SSID broadcast - I have several "guest" wireless SSID's setup and I want to see what client's are connected to what SSID. If we can see the SSID info by band that would be even better. I currently have 3 broadcast SSID's and I want to see each grouping of connected clients by this if it is possible from the SSH level. Even the GUI is fine but I can't seem to see or find that information. Thanks in advance:

SSID #1 2.4
client1 mac xx.xx.xx.xx
client2 mac xx.xx.xx.xx

SSID #2 5ghz
client3 mac xx.xx.xx.xx
client4 mac xx.xx.xx.xx

SSID #3 2.4
client5 mac xx.xx.xx.xx

You get the idea. Again thanks!
 
Have you tried opening "system log -- wireless log" in the GUI?


Or you just want to see associated clients in SSH:
For 2.4 GHz
Code:
wl -i $(nvram get wl0_ifname) assoclist

For 5 GHz-1
Code:
wl -i $(nvram get wl1_ifname) assoclist

For 1st guest network on 2.4 GHz
Code:
wl -i $(nvram get wl0.1_ifname) assoclist

For 2nd guest network on 5 GHz
Code:
wl -i $(nvram get wl1.2_ifname) assoclist
 
Last edited:

Latest threads

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Top