> does anyone know what password authentication rsync uses, and how the > passwords on the wire are encrypted? > > i know i could read andrew's paper, but i just don't have the time. > thanks!
>From the man page: -e, --rsh=COMMAND This option allows you to choose an alternative remote shell program to use for communication between the local and remote copies of rsync. By default, rsync will use rsh, but you may like to instead use ssh because of its high security. 1 Mar 1999 12 rsync(1) rsync(1) You can also choose the remote shell program using the RSYNC_RSH environment variable. rsync --rsh=ssh ... will give you good security. Stony