2

I have created a virtual Wi-Fi adapter by command

netsh wlan set hostednetwork mode=allow ssid=MyHotspot key=MyPassword
netsh wlan start hostednetwrok

Everything works fine. I just want to ask if there exists a command for monitoring the traffics of this network? I mean I connect by my mobile to this network and I want to get a name of a device that is connected.

ZygD
  • 22,092
  • 39
  • 79
  • 102
Nikolas Charalambidis
  • 40,893
  • 16
  • 117
  • 183

2 Answers2

6

this can show you the number of devices connected, you need a third party tool to find names of devices:

netsh wlan show hostednetwork
Nikolas Charalambidis
  • 40,893
  • 16
  • 117
  • 183
Mostafa
  • 131
  • 1
  • 6
  • Thank you for responce ;)) Yes, I have tried this command, but I need to know these names, Thus that third party. Do you know how to solve it? – Nikolas Charalambidis Apr 15 '15 at 19:04
  • Is it possible to show the SSID of the client instead of MAC address? – skpblack Sep 27 '18 at 21:02
  • You suggested third party tool to view the names and other information of the connected devices. Can't we do exactly how third party tools do to gathers information from command? – Bibek Ghimire Dec 19 '18 at 01:55
-7

The command can be :

echo connected devices
Abdulla Nilam
  • 36,589
  • 17
  • 64
  • 85
  • Hey Man! This is a completely wrong answer. This only echoes `connected devices` . This need not to be here – frunkad Aug 09 '16 at 18:12