Created
March 17, 2014 07:34
-
-
Save IGZalbertogregoris/9595329 to your computer and use it in GitHub Desktop.
Emulate network latency in Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install iproute (Ubuntu) | |
sudo apt-get install iproute | |
# Increase network latency in eth0 (250 milliseconds) | |
sudo tc qdisc add dev eth0 root netem delay 250ms | |
# Delete network modifications | |
sudo tc qdisc del dev eth0 root netem | |
# To make this change in localhost you must only replace "eth0" to "lo" ( --- WARNING --- in this case time will double ) | |
sudo tc qdisc add dev lo root netem delay 250ms | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment