PDA

View Full Version : encryption during rsync


gkontos
06-10-2008, 07:25 PM
Greetings forum,

I would like to know if anyone has "played" with encrypted rsync.
Let me clarify, I have a VPS with 300GB which I want to use for backing up my file-server using rsync over ssh. But I would like the destination target to be encrypted. Any suggestions ?

Thanks,
George

anomie
06-10-2008, 07:35 PM
Using rsync over ssh (-e ssh) gets you encryption on the wire. Can you explain what you mean by the target being encrypted?

stukov
06-10-2008, 08:19 PM
Do you mean you want to encrypt your data after it was securely transfered from one machine to the other?

gkontos
06-10-2008, 09:40 PM
Do you mean you want to encrypt your data after it was securely transfered from one machine to the other?
Exactly that!!!

stukov
06-10-2008, 09:43 PM
You could always encrypt the hard drive. I heard "geli" does that.

Otherwise, if you want to secure data from other users running the machine, there is always GPG.

Is one of those option the one you were looking for?

gkontos
06-11-2008, 11:20 AM
Actually the file server is a FreeBSD 6.3 and the destination is a CenOS 5.
Are you aware of any kind of encryption that is rsync aware ?

s25
06-12-2008, 11:08 PM
I am looking at doing something similar check out:
http://duplicity.nongnu.org/ or /usr/ports/sysutils/duplicity

gkontos
06-13-2008, 11:08 AM
I am looking at doing something similar check out:
http://duplicity.nongnu.org/ or /usr/ports/sysutils/duplicity

Looks very promising thanks!

George