A client recently said that their site was loading slowly from remote sites. We got the specification of the network connection used, but I always forget how to do bandwidth limiting and latency simulation on OS X. This is a note for myself so I don't have to go searching again.

Configure a pipe that has the appropriate bandwidth limit and delay.

sudo ipfw pipe 1 config bw 16Kbit/s delay 350ms

Attach it to all traffic going to or from port 80.

sudo ipfw add 1 pipe 1 src-port 80
sudo ipfw add 2 pipe 1 dst-port 80

Now traffic coming from or going to port 80 anywhere is limited by the pipe that you specified. Do your testing and once you get frustrated with slow access to the web remove the rules like so:

sudo ipfw delete 1
sudo ipfw delete 2

Finally, delete the now defunct pipe like so:

sudo ipfw pipe 1 delete
written by
Craig
published
2009-12-04
Disagree? Found a typo? Got a question?
If you'd like to have a conversation about this post, email craig@barkingiguana.com. I don't bite.
You can verify that I've written this post by following the verification instructions:
curl -LO http://barkingiguana.com/2009/12/04/simulating-slow-or-laggy-network-connections-in-os-x.html.orig
curl -LO http://barkingiguana.com/2009/12/04/simulating-slow-or-laggy-network-connections-in-os-x.html.orig.asc
gpg --verify simulating-slow-or-laggy-network-connections-in-os-x.html.orig{.asc,}