Erro para pedido sem fio “Set Frequency” (8B04):

3

Eu configurei uma interface de monitoramento usando:

sudo airmon-ng start wlan0 channel 11

sudo iwconfig

wlan0     IEEE 802.11bgn  ESSID:"" 
          Mode:Managed  Frequency:2.437 GHz  Access Point: CC:B2:55:4L:3D:21
          Bit Rate=65 Mb/s   Tx-Power=20 dBm 
          Retry  long limit:7   RTS thr:off   Fragment thr:off
          Power Management:off
          Link Quality=61/70  Signal level=-49 dBm  
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:9  Invalid misc:101   Missed beacon:0

e a outra interface:

ifconfig wlan0

wlan0     Link encap:Ethernet  HWaddr 08:3e:5e:1k:f3:3b 
          inet addr:172.16.50.36  Bcast:172.16.255.255  Mask:255.255.0.0
          inet6 addr: fe80::a3e:8eff:fe81:f31c/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:425992 errors:0 dropped:0 overruns:0 frame:0
          TX packets:61260 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:171687175 (171.6 MB)  TX bytes:9210579 (9.2 MB)

sudo iwlist wlan0 channel

wlan0     14 channels in total; available frequencies :
          Channel 01 : 2.412 GHz
          Channel 02 : 2.417 GHz
          Channel 03 : 2.422 GHz
          Channel 04 : 2.427 GHz
          Channel 05 : 2.432 GHz
          Channel 06 : 2.437 GHz
          Channel 07 : 2.442 GHz
          Channel 08 : 2.447 GHz
          Channel 09 : 2.452 GHz
          Channel 10 : 2.457 GHz
          Channel 11 : 2.462 GHz
          Channel 12 : 2.467 GHz
          Channel 13 : 2.472 GHz
          Channel 14 : 2.484 GHz
          Current Frequency:2.432 GHz (Channel 5)

sudo iwconfig wlan0 channel 11

Error for wireless request "Set Frequency" (8B04) :
    SET failed on device wlan0 ; Operation not permitted.

sudo iw dev wlan0 set channel 11

command failed: Device or resource busy (-16)

sudo airmon-ng start wlan0 11

Found 5 processes that could cause trouble.
If airodump-ng, aireplay-ng or airtun-ng stops working after
a short period of time, you may want to kill (some of) them!
-e 
PID Name
1111    avahi-daemon
1112    avahi-daemon
1147    NetworkManager
1365    wpa_supplicant
9079    dhclient

Process with PID 9079 (dhclient) is running on interface wlan0

Interface   Chipset     Driver
wlan0       Unknown     rt2800pci - [phy0]

                (monitor mode enabled on mon0)

O que devo fazer e porque tenho este erro?

    
por user4650183 31.03.2015 / 11:03

2 respostas

1

O comando usado para configurar mon0 monitor interface deve ser suficiente para forçar o monitoramento desse canal 11 .

sudo airmon-ng start wlan0 11

Mas sua interface wlan0 parece já estar conectada a um ponto de acesso. Então, wlan0 está no canal do AP 5 .

Suponho que você já tenha recebido uma nota ao iniciar mon0 semelhante a este:

Found 5 processes that could cause trouble.
If airodump-ng, aireplay-ng or airtun-ng stops working after
a short period of time, you may want to kill (some of) them!

PID     Name
875     avahi-daemon
883     avahi-daemon
982     NetworkManager
1183    wpa_supplicant
2081    dhclient
Process with PID 2081 (dhclient) is running on interface wlan0

Bem, você deve desconectar e interromper todos esses processos:

nmcli d disconnect iface wlan0

sudo service avahi-daemon stop
sudo stop network-manager
sudo pkill wpa_supplicant
sudo pkill dhclient

Em seguida, inicie o monitor novamente:

sudo airmon-ng stop mon0
sudo airmon-ng start wlan0 11
    
por user.dz 31.03.2015 / 12:21
0

Você só corre;

% bl0ck_qu0te%

Isso eliminará todos os programas irritantes do modo de monitoramento.

    
por Syaiful bahri 05.03.2017 / 20:37