Can someone please tell me how to check if a wlan card supports promiscuous mode
Asked
Active
Viewed 1.8k times
2 Answers
3
To check if your wireless card supports monitor mode, you can use iw list.
Run in a terminal:
iw list
Output:
Supported interface modes:
* IBSS
* managed
* AP
* AP/VLAN
* monitor
In Supported interface modes, if you find monitor to be present then that means that your wireless card supports monitor mode.
Akshay Anurag
- 250