4

When setting wlan0 to monitor mode with sudo iwconfig wlan0 mode Monitor I get the following error:

Error for wireless request "Set Mode" (8B06) :
    SET failed on device wlan0 ; Operation not supported.

How to resolve this?

Simon
  • 141
  • 1
  • 1
  • 3

2 Answers2

1

Broadcom Corporation BCM43225 802.11b/g/n (rev 01) doesn't support monitor mode on Linux.

Pilot6
  • 92,041
0

You could also try to start wlan0 in monitoring mode by

airmon-ng start wlan0

lumen
  • 505