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

16 lines
255 B
Markdown

### 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
```