Airmon-ng (Monitor Mode)
Post

Airmon-ng (Monitor Mode)

Airmon-ng

Airmon-ng is a convenient way to enable and disable monitor mode on various wireless interfaces.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Displays the status and information about the wireless interfaces
airmon-ng

# List programs that can interfere with aircrack-ng suite
sudo airmon-ng check 

# Kill processes that can interfere with aircrack-ng suite
sudo airmon-ng check kill

# Create an interface (wlan0mon) in monitor mode from an existing one (wlan0)
sudo airmon-ng start wlan0

# Stop monitor mode
sudo airmon-ng stop wlan0

# Start monitor mode only on channel 2 (only do this when the tool that will be used next doesn't change channels itself)
sudo airmon-ng start wlan0 2

# manually set channel
iw dev wlan0 set channel 13

# Check that we changed the channel correctly
sudo iw dev wlan0 info

# verbose and debug mode
sudo airmon-ng --verbose
sudo airmon-ng --debug