|
|
|
|
|
by 1kGarand
2715 days ago
|
|
I see some terrible backup strategies here. 1. Backups should not be on a single drive.
2. Backups without checksums will result in corruption.
3. Offsite is a must.
4. Unencrypted off site backup means someone already copied your data.
5. Encrypted offsite backups should have forward secrecy. So different keys for each file and keys file gets backed up encrypted. My backup strategy:
File server runs zfs raidz with Daily/weekly/monthly snapshots on disk. Snapshots get copied to 2 external drives, zfs mirrored. Files get encrypted and uploaded to backblaze using my custom software. Nothing fancy, just standard authenticated encryption (chacha20poly-poly1306) but with per file key management and argon2. |
|
Any references on PFS for backups? Was there no existing OSS backup solution that implements PFS?