Files
notes/documents/debian/limit_upload_speed/content.md
2024-08-10 00:38:32 -05:00

18 lines
277 B
Markdown

# limit_upload_speed
### check speed
```bash
speedtest
```
### view eth0 speed
```bash
nload eth0
```
### limit upload to 50Mbit
```bash
tc qdisc add dev eth0 root tbf rate 500kbit burst 16kbit latency 50ms
```
### remove limit on upload
```bash
tc qdisc del dev eth0 root
```