Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

rsync + ssh in file tansfer.

Status
Not open for further replies.

md1750

MIS
Apr 18, 2001
80
US
How I configure rsync with ssh in solaris to enable secure file transfer.
 
You can do that by executing rsync -e ssh <more rsync opts.> <source> <dest>.

OR

In the new versions you can set RSYNC_RSH=&quot;ssh2 -c des&quot; variable if you want to specify the encription mode.

EDC
 
How do I set up rsync+ssh on solaris to enable secure file transfer.
 
You have to install ssh and rsync separately.

RSYNC uses by default rsh as remote shell, with the option &quot;-e&quot; you are telling it use an alternate remote shell, in this case ssh.

EDC
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top