You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A good guide can be found at https://linuxvox.com/blog/linux-tc-qdisc/
4
+
5
+
## qdisc
6
+
7
+
Add a PFIFO to drop after queue reaches 1000 packets
8
+
9
+
tc qdisc add dev eth0 root pfifo limit 1000
10
+
11
+
Remove qdisc
12
+
13
+
tc qdisc del dev eth0 root
14
+
15
+
Show current queue statistics
16
+
17
+
tc -s qdisc ls dev eth0
18
+
19
+
Limit interface to max bandwith (from https://unix.stackexchange.com/questions/39218/throttle-the-download-speed-of-wget-or-curl-while-downloading#39219)
0 commit comments