Thursday 15 March 2012

Limit bandwidth of rsync over ssh

This will limit the connection to 80Kb/s:

rsync -auvPe "trickle -d 80 ssh" user@host:/src/ /dst/

Possibly Related Posts

1 comment:

  1. Is there any difference between using this solution (userspace) instead of the native --bwlimit option from rsync?

    ReplyDelete