Displaying 1 result from an estimated 1 matches for "lrem02".
2008 May 05
2
Rsync with daemon over SSH on port 22 not daemon port
Hi gurus!
First time post:
Scenario want to talk to daemon locked behind a firewall using encrypted transfer of files.
Have daemon setup on port 10001.
Do not have NC, do not have root access.
Client command :
rsync -avzul -e "ssh -vvv -l username" /home/users/blah/ rsync://lrem02:10001::/live
As you can see the connection is set to talk to lrem02 on port 10001 however i want to encrypt transfer so i assumed i could do the following:
rsync -avzul -e "ssh -vvv -l username -L 10001:lrem01:22" /home/users/blah/ rsync://lrem02:10001::/live
However this doesnt work a...