I've successfully installed Kamikaze 8.09 on my Netgear WGT634U with the intention of configuring it as a WiFi packet sniffer. I have access to the serial port and I would like to dump WiFi packets onto the serial port. Currently, I've been trying to use tcpdump, but I'm open to anything that will do the job. The closest I've come is the following:
1) Remove the 'option disabled' line from the /etc/config/wireless file fore wifi0.
2) run the following
- wlanconfig ath0 destroy
- wlanconfig ath0 create wlandev wifi0 wlanmode monitor
- ifconfig ath0 up
- tcpdump -i ath0
This doesn't work quite as expected, since it stops after a while and also because the information is a little too low-level for me. I'm looking for something more on the packet level, similar to what would happen if I ran tcpdump on the WAN device (eth0). Any advice would be appreciated. Thanks.