-2

apart from airodump command can we use any other command to see how many wi-fi clients are associated to access points

  • First rule of using tools is understanding them. It is a wrong premise believing airodump will show you all the wifi-clients to the nearby APs, for several reasons that are clearly out of topic here. I would also avoid Kali. – Rui F Ribeiro Jan 14 '19 at 11:57
  • 1
    Possible duplicate of [Is there a way to list the connected devices on my wifi access point?](https://unix.stackexchange.com/questions/40087/is-there-a-way-to-list-the-connected-devices-on-my-wifi-access-point) – GAD3R Jan 15 '19 at 08:01

1 Answers1

0
sudo nmap -sn <ip addr of your router>/24

- this scans all the devices connected to your AP.

Read nmap documentation for more. really handy tool to learn about.

Kushagra Karira
  • 118
  • 2
  • 11