-
-
Notifications
You must be signed in to change notification settings - Fork 90
Open
Labels
Description
Hello.
Tell me how to properly slow down traffic on Raspbian?
I only use a wired connection.
I do this (Raspbian on Raspberry Pi):
- I checked the read-write speed before the experiment:
- Installed iptables, iproute2 (with tc package)
- Installed tcconfig
curl -sSL https://raw.githubusercontent.com/thombashi/tcconfig/master/scripts/installer.sh | sudo bash - Set the traffic limit to eth0 with the command from the example:
sudo tcset eth0 --rate 100Kbps - I checked this installation with the command from the example:
{
"eth0": {
"outgoing": {
"protocol=ip": {
"filter_id": "800::800",
"rate": "100Kbps"
}
},
"incoming": {}
}
} - I check the read-write speed via FTP:
Nothing changed...
Question for the experts: what am I doing wrong?
Are there other working means to slow down traffic?
Maybe the Raspberry Pi needs a different solution?
Thanks for answers.