As we know, we can use rsync via ssh to send files between computers, especially on different networks (for example, the Internet) in order to have some secure transfers. (this is correct, and we all agree with him)
and, as you know, rsync does not provide any security when transferring data in the usual way, so we use ssh as the cover.
So, the idea !.
If we use rsync in daemon mode (for example, on a linux backup server located in England) and we start backing up data from Linux computers (for example, from France) using an internet line without using ssh (just use regular rsync daemon)
Example:
rsync -vazi --progress source rsync:// user@england-server.example.com /somefolder/
So the question is:
Do you think this is a safe way?
If not, is there anyone who knows what we transfer and what file contents we transfer?
is there also a chance to catch the password we entered when rsync request for rsync user password?
I know that using ssh or stunnel is safer. but I really want to learn more about why it is safe during normal use, especially when we are rsync data between computers over the Internet.
and thanks for any answers.
Mohammed shannaq
source share