When used as a normal wireless client, the firmware will automatically find the best access point based on signal quality and associate with it. This feature extends to monitor mode as well, so it's best to select the SSID name first and then let the card figure out the correct channel. Manually setting the channel doesn't seem to be honored.
Firmware version 4.25.30 seems to work.
To enable monitor mode with these cards and start capturing:
shell# iwconfig eth0 mode monitor shell# iwconfig eth0 essid <SSID> shell# ifconfig wifi0 up shell# ifconfig eth0 up shell# tcpdump -n -i wifi0 -s1500 -w <savefile>In the case that your wireless-tools support isn't capable of understanding the above "mode monitor" command, you can enable monitor mode by using the following:
shell# echo "Mode: y" > /proc/driver/aironet/eth0/ConfigThe link type should then change to IEEE802_11.
To enable monitor mode with these cards and start capturing:
shell# ancontrol -M 1 shell# ifconfig an0 up ssid <SSID> shell# tcpdump -n -i an0 -s1500 -w <savefile>$Id: monitor-cisco.html,v 1.2 2005/07/28 09:47:55 kos Exp $