6

I'm after running this command to simulate a network latency of 500ms with 100ms std deviation:

tc qdisc add dev eth2 root netem delay 500ms 100ms

Trouble is, I forget how to cancel this command! My computer currently has an awful latency and I don't know how to get rid of it!

Many thanks in advance,

Eamorr
  • 596
  • 5
  • 13
  • 27

1 Answers1

7
# tc qdisc del dev eth2 root
# tc -s qdisc ls dev eth2

Should clear all rules on eth2.

petrus
  • 5,287
  • 25
  • 42