Intermittent AirPort connectivity issues are among the toughest to troubleshoot at a service depot. I would say that in 90% of cases, the problem is with the actual network(s), but how can you spot the remaining 10%? Typically the machine will connect just fine to your local network. What you need is to generate some traffic and then monitor that over a period of time.
This is where iperf comes in:
Iperf was developed by NLANR/DAST as a modern alternative for measuring maximum TCP and UDP bandwidth performance. Iperf allows the tuning of various parameters and UDP characteristics. Iperf reports bandwidth, delay jitter, datagram loss.
In other words it can do a hell of a lot more than just generate traffic, but that's what we'll use it for this time. iperf consists of two parts - a client and a server. I run our server on our FreeBSD box:
$ cd /usr/ports/net/iperf
$ sudo make install clean
$ iperf -sD
That installed iperf and launched it as a server in the background. Now we need to run the client on the machine we want to test. For this, I created a dead-simple AppleScript wrapper for iperf (which also includes the iperf binary itself), just double-click and enter the address of the iperf server. This launches iperf with some options apropriate for long term testing, in a new Terminal window.
The script (called "aptest", also part of MTK) tries to bind the iperf instance to the AirPort interface. This will wreak havoc on your wireless network - I would advise to set up a separate base station for this kind of testing. :-)
It would be fun to one day create a proper GUI that would plot the CSV output of iperf, but this will have to do for now...