So, I'm kind of making sshusers for ssh tunneling to surf some content which is blocked by my country. But, I don't want somebody to slow down others internet speed , therefore I want to limit the connection to, eg: 100KB/s. I know trickled can be used in this situation but how?
Asked
Active
Viewed 3,901 times
2 Answers
2
Try:
trickle -d 100 -u 100 firefox

qbert220
- 174
- 2
-
Or simply: `trickle -d 100 -u 100 ssh -D 1080 remotehost` – Cakemox May 18 '11 at 08:13
-
Actually I have to limit the bandwidth on Server side so I used trickled – snagcheol May 18 '11 at 17:23
0
Check out wondershaper:

dmourati
- 25,540
- 2
- 42
- 72
-
-
1have you used this? because, I little bit complex, I did not understand how to limit global network of the server. – snagcheol May 18 '11 at 01:41
-
Yea, I'm using it. It actually tries to optimize for port 22 traffic but you want to limit port 22 traffic. – dmourati May 18 '11 at 01:55
-