Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to visually evaluate web pages response time for several Internet connections types (DSL, Cable, T1, dial-up etc.) while my browser and web server are on the same LAN or even on the same machine. Are there any simple network tools or browser plug-ins that slow down network bandwidth to simulate different real-world connection scenarios.

I appreciate any input on that.

share|improve this question
1  
Just a note, you might cross-post this on serverfault.com. – JP Alioto Jul 7 '09 at 20:55
2  
OSX Mountain Lion users can use Network Link Conditioner - stackoverflow.com/questions/11699805/…. – Joe Masilotti Aug 22 '12 at 19:17

9 Answers

up vote 10 down vote accepted

try Traffic Shaper XP you can easily limit speed of IE or other browser with this App and its also freeware

share|improve this answer
kaspersky reports the download from that site as containing a trojan downloader program. – Bob Moore Nov 13 '10 at 17:07
Symantec Enpdpoint Protection didn't find any problems with the file. – Ishmael Apr 26 '11 at 17:25
7  
Doesn't seem to work on Windows 7. – Znarkus Aug 15 '11 at 8:26

On Linux, see netem: the kernel already contains support for traffic shaping, and can simulate high latency, low bandwidth, packet losses, and all sort of other adverse conditions, even on a loopback device (so you don't need a real, physical network to test across).

share|improve this answer
14  
+1 to this. Awesome. With a single command I can make "localhost" behave like a public internet service on coffee shop wifi: sudo tc qdisc add dev lo root netem delay 500ms – Sam Stokes May 12 '10 at 21:21
4  
Sweet! The docs are here: linuxfoundation.org/collaborate/workgroups/networking/netem – Thomas Ahle Aug 11 '10 at 17:24
Awesome. Just what I was looking for. – magiconair Aug 2 '11 at 16:09
5  
Super cool. Just want to add how to remove the emulation again. To add: sudo tc qdisc add dev lo root netem delay 100ms To remove: sudo tc qdisc del dev lo root netem delay 100ms – freeall May 17 '12 at 10:54
1  
Sometimes I would like to vote up 10 times. Fantastic tool. – Arius2038 Sep 27 '12 at 14:23

I am resurrecting this thread because I hade the same need recently. Amazingly I discovered that Fiddler can be used to do that by customizing the rules and adding this line oSession["response-trickle-delay"] = "150"; in the section OnBeforeResponse. Fiddler is really amazing

share|improve this answer
17  
In recent versions of Fiddler, you only need to enable Simulate Modem Speeds under Rules -> Performance. – Znarkus Aug 15 '11 at 9:34
3  
+1 Fiddler is an exceptional tool, perhaps overkill for just this but definitely worth having around. You can easily get Fiddler to only fiddle with one program by using the process filter, no setting up of proxies in your program needed! – Deebster Jan 27 '12 at 12:07
I was already a lover of Fiddler but now I just can't live without it. I didn't know that the tool I need lives with me every day :) – SoMoS May 29 '12 at 19:20
1  
Note that this is a windows-only solution, unless you are willing to fiddle with hacks and workarounds. – crazy2be Feb 23 at 4:58

My work uses this tool, and it seems quite good: http://www.dallaway.com/sloppy/

Best of luck.

share|improve this answer
+1 Java-based, so it works great on OSX (haven't tried it on Windows or Linux yet) - easy to install & run, works transparently, and doesn't leave a mess afterwards! – Richard Inglis Feb 12 '12 at 13:01
yep, excellent tool, web based jnlp (no install needed, just launch it) it creates a proxy on localhost, port is configurable, speed can be changed dynamically +32 ;) – jobano Mar 14 '12 at 3:31

I've successfully used TMnetSim (bottom of the page, under “Other Tools” - the link says something like “ZIP: TMnetSim Network Simulator version 2.4 32-bit (600KB)”

It's not just for websites - you can slow connections to any TCP port. I was using it to simulate a slow SQL Server (port 1433).

share|improve this answer
What OS were you using? I couldn't get it to work at all under 32-bit Windows 7... – GuyBehindtheGuy Sep 2 '10 at 16:10
@GuyBehindtheGuy: did you ever have any luck? I have the same need and OS... – RedFilter Nov 13 '10 at 23:23
2  
I ended up using DummyNet. There's a Windows version here: info.iet.unipi.it/~luigi/dummynet – GuyBehindtheGuy Nov 15 '10 at 19:48

DummyNet

Try this FreeBSD based VMWare image. It also has an excellent how-to, purely free and stands up in 20 minutes.

share|improve this answer
1  
Thanks for the tip on this. Turns out there's now a native Windows version available, which I used successfully. – GuyBehindtheGuy Nov 15 '10 at 19:49
I went this way. But configuration took me ~4 hours. I should have known to replace "192.168.0." to "192.168.196." (the subnet) through all the rc.conf and rc.firewall. – modosansreves Aug 10 '11 at 21:17

If you use Apache, you can use mod_bandwith.

See here for configuration parameters.

share|improve this answer
i cannot access the howto.. – hariseldon78 May 15 '12 at 11:51

Try Microsoft's NEWT, it worked perfect for me. It supplies customized latency, packet drop techniques and more :)

http://blog.mrpol.nl/2010/01/14/network-emulator-toolkit/

share|improve this answer

If you'd like a hardware solution, Netgear has a series of cheap ($50 or so) switches that do bandwidth limiting. Netgear Prosafe GS105E and similar switches are worth investigating.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.