Linux – Wondershaper does not work

bandwidthbandwidth-controlcentoslinux

I am using wondershaper to limit download upload speed. What it does is, it limits download but then it blocks upload. I have an 1 gbit connection and
I want to limit it's download speed to 500 mbps and upload speed to 500 mbps.

The command I'm using for this is:

wondershaper eth0 9798 9790

Here is the link to my config: http://pastebin.com/WBqj1H1Y

I have tried to change the numbers but still upload is blocked for some reason.

Best Answer

Your command syntax looks wrong. To limit download and upload speed on interface eth0 to 512 Kbps try this:

wondershaper -a eth0 -d 512 -u 512

Please read about wondershaper here:

https://github.com/magnific0/wondershaper

Related Topic