This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

Does Intel Centrino Wireless-N 2200 (2x2 BGN) support wireshark sniffing

0

Hi

Am using Lenovo Thinkpad T430 with Intel Centrino Wireless-N 2200 (2x2 BGN) as built in WLAN card. Ubuntu OS is running on this.

Want to use WLAN card as WLAN sniffer. Does this WLAN card support monitor mode ?

  1. sudo ifconfig wlan0 down
  2. sudo iwconfig wlan0 mode monitor
  3. sudo iwconfig wlan0 channel 1
  4. sudo ifconfig wlan0 up
  5. sudo wireshark &

Unfortunately following error is coming after step 3 :: Error for wireless request “set frequency” (8B04) : Set failed on device wlan0 ; Device or resource busy

asked 14 Nov '13, 07:08

vamsi's gravatar image

vamsi
11223
accept rate: 0%


One Answer:

0

please follow the instructions in my answer to a similar question, especially the airmon-ng part to enable monitor mode:

http://ask.wireshark.org/questions/26347/unable-to-capture-wireless-traffic-on-monitor-mode-on-ubuntu-1004-version

Error for wireless request “set frequency” (8B04) : Set failed on device wlan0 ; Device or resource busy

The device might be in use by another tool. On Ubuntu it could be the "Network Manager". Please disable the Network Manager and then try again.

https://help.ubuntu.com/community/NetworkManager#Disabling_NetworkManager
http://dijks.wordpress.com/2012/07/06/how-to-disable-network-manager-in-ubuntu-12-04-precise/

Regards
Kurt

answered 14 Nov '13, 07:47

Kurt%20Knochner's gravatar image

Kurt Knochner ♦
24.8k1039237
accept rate: 15%

Hey

Thanks for quick suggestion. I stopped network manager, but even then it comes as follows ::

sudo stop network-manager sudo ifconfig wlan0 down sudo iwconfig wlan0 mode monitor sudo iwconfig wlan0 channel 6

Error for wireless request “set frequency” (8B04) : Set failed on device wlan0 ; Device or resource busy

(15 Nov '13, 03:55) vamsi

Set failed on device wlan0 ; Device or resource busy

well, Network Manager was just the most likely tool. There might be others on your system. As we don't know the configuration of your system, you are the only one that to figure out what software is accessing the card. Sorry ...

BTW: You are not connected to a wireless network via wlan0 while you try to run airmon-ng, are you?

(15 Nov '13, 04:57) Kurt Knochner ♦

I made sure WiFi is not connected. Infact, its disabled.

(17 Nov '13, 19:26) vamsi

You ran:

  1. sudo iwconfig wlan0 mode monitor
  2. sudo iwconfig wlan0 channel 1

Maybe you should try to run it in the opposite order

  1. sudo iwconfig wlan0 channel 1
  2. sudo iwconfig wlan0 mode monitor
(22 Nov '13, 02:29) Kurt Knochner ♦