Emulating a Slow Internet Link for HTTP


/ Published in: Bash
Save to your folder(s)

recover to normal speed with
/sbin/ipfw delete 100
/sbin/ipfw delete 200
... or reboot


Copy this code and paste it in your HTML
  1. #!/bin/sh
  2.  
  3. /sbin/ipfw add 100 pipe 1 ip from any 80 to any out
  4. /sbin/ipfw add 200 pipe 2 ip from any 80 to any in
  5. /sbin/ipfw pipe 1 config bw 128Kbit/s queue 64Kbytes delay 250ms
  6. /sbin/ipfw pipe 2 config bw 128Kbit/s queue 64Kbytes delay 250ms

URL: http://terminalapp.net/emulating-a-slow-internet-link-for-http/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.