|
Table of Contents
How to limit the bandwith of a SSH connection
Put this into Host server1
Hostname server1-slow
Port 222
proxycommand pv -q -L 50k | nc your.host.example.com 222
An other approach could be to create an alias in alias ssh-slow='ssh -o "ProxyCommand pv -q -L 50k | nc your.host.example.com 222"' Comments |