J'ai mis en place une interface de surveillance utilisant:
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
et l'autre 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)
Que dois-je faire et pourquoi j'ai cette erreur?
La commande utilisée pour configurer l'interface de moniteur mon0
devrait suffire à forcer la surveillance de ce canal 11
.
Sudo airmon-ng start wlan0 11
Mais votre interface wlan0
semble déjà connectée à un point d'accès. Donc, wlan0
est sur le canal 5
de cet AP.
Je suppose que vous avez déjà reçu une note au démarrage de mon0
semblable à celle-ci:
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
Eh bien, vous devriez déconnecter et arrêter tous ces processus:
nmcli d disconnect iface wlan0
Sudo service avahi-daemon stop
Sudo stop network-manager
Sudo pkill wpa_supplicant
Sudo pkill dhclient
Puis relancez le moniteur:
Sudo airmon-ng stop mon0
Sudo airmon-ng start wlan0 11
Vous venez juste de courir;
airmon-ng check kill
Cela va tuer tous les programmes ennuyeux pour le mode de surveillance.