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 ) |