Why is it not possible to use two remotes for rsync? [closed]

why not try and connect to the remote machine and start the
transfer from there. If you are using ssh-keys you can use agent
pass though to manage the authenticate for you.

ssh -A remotehostA rsync /remote/file/on/host/a remoteHostB:/destination/

This command will log you on the remoteHostA and run rsync from there.

Leave a Comment