Hi, I'm using rsync with ssh, and would like to know if you have a solution to rsync from one server to another, in the following scheme: A --- B --- C I'm on B, and want to rsync from C to A. I have no rights to copy from C to A directly, and no rights to play on ports. Every server is installed with ssh, which I can customise. Any ideas ? Olivier
>>>>> "OK" == Olivier Kaloudoff <kalou@kalou.net> writes:OK> Hi, I'm using rsync with ssh, and would like to know if you have a OK> solution to rsync from one server to another, in the following OK> scheme: OK> A --- B --- C OK> I'm on B, and want to rsync from C to A. I have no rights OK> to copy from C to A directly, and no rights to play on ports. OK> Every server is installed with ssh, which I can customise. OK> Any ideas ? To copy from C to A via B use (some variation of) user@C$ rsync --rsh ssh --rsync-path 'ssh user@A rsync' sourcefile user@B:destfile So from B you just need to lauch something similar on C via ssh (presumably).