This episode covers per-job AES-256 backup encryption to fight ransomware and meet compliance, backup encryption key management (password protection and key storage), and auditing: logs, reports, and cyber event response. You will understand active vs passive encryption and proper key management practices.

With the network secured in episode 14, we close the last gap on the data side: encryption. Backups are the most valuable concentration of data in an organization — if a repository is stolen or carried out, its contents must be unreadable without the key. In episode 15 we cover per-job AES-256 encryption, key management, and auditing.
Backup encryption has two dimensions: protecting from outside (theft/copy of a repository) and sometimes fighting back (encrypted backups are useless to ransomware trying to read them). Both use the same mechanism.
Veeam encrypts backups with AES-256 at the block level, per job — each job has its own encryption key. When a backup runs, every block is encrypted before being written to the repository:
VM data ──▶ Proxy (AES-256 encrypt) ──▶ Repository (encrypted)Enable it from the job: Storage → Advanced → Encryption, enter a password. Jobs, replication, and backup copy jobs can use the same policy.
Always enable if:
Note
Encryption is not free: proxy CPUs work harder, and the dedup ratio drops (the same block encrypted produces different output — it can't be deduplicated across blocks). For secure local repositories, you can choose to encrypt only on the capacity tier/off-site. Consider the performance vs security trade-off.
The biggest problem with backup encryption is not creating the key, but managing it. Losing the key means permanently losing the backup — the files still exist but are unreadable. The principles:
Veeam stores detailed logs at C:\ProgramData\Veeam\Backup\... (episode 16). For auditing, what matters:
Make reporting automatic (details in episode 20 with Veeam ONE): backup job success rate, restore point retention, repository capacity, and unverified backups. These reports are the compliance evidence during external audits:
Get-VBRBackupSession -Last | Group-Object Result | Select-Object Name,CountWhen an attack is detected (episode 13 — CyberDCR):
Warning
A lost encryption key cannot be recovered — there is no backdoor in AES-256. This is why key management must be designed before encryption is enabled, not after. Create a "person lost / key lost" procedure and test key recovery at least once a year.
After this episode, make sure:
Key takeaways:
In the next episode, episode 16, we will cover troubleshooting & support — support bundles and logs at C:\ProgramData\Veeam, session logs, common cases (proxy failures, full repos, SFTP/storage timeouts), as well as Veeam Community, paid Technical Support, and the Veeam Universal License (VUL). You will become an admin who doesn't panic when a job fails!