Tell me more ×
IT Security Stack Exchange is a question and answer site for IT security professionals. It's 100% free, no registration required.

Is the native rsync protocol (port 873) secure? Does it encrypt data or credentials?

I'm planning on using rsync to store encrypted files in the cloud, I'm wondering whatever the password is transferred in clear.

share|improve this question

1 Answer

up vote 14 down vote accepted

The native rsync protocol does not encrypt anything. It is meant only for trusted networks.

To use rsync in a secure way, use it with SSH (see the "-e" command-line option) or over a VPN.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.