This episode explores Veeam storage: Windows/Linux repositories, SMB/NFS, and S3 object storage, plus the Scale-Out Backup Repository (SOBR) with capacity tier. You will also understand dedup & compression (None, Dedupe-friendly, Local target) and integration with hardware deduplication appliances such as HPE StoreOnce and ExaGrid.

After the first successful job in episode 5, now we focus on the home for backups: repositories & storage. In episode 6 we dissect the types of repositories — Windows, Linux, SMB/NFS, and S3 object storage — then dedup & compression and hardware deduplication appliance integration.
The storage choice determines almost everything: backup speed, restore speed, cost per GB, and ransomware resilience. Choose wrong, and you will pay for it repeatedly in operations.
A folder on a Windows server (local or mapped drive). The simplest option: create the repository, Veeam installs the components and starts storing .vbk/.vib files there. Suitable for labs and Windows-first environments.
A folder on a Linux server — often the production choice for three advantages: performance (the Veeam Linux data mover is efficient), cost (Linux without storage licensing), and security — it supports hardened repositories (immutable) which we cover in episode 13. Add the Linux server as a Managed Server, then create the repository on its mount point.
$srv = Get-VBRServer -Name "backup01.lab"
Add-VBRBackupRepository -Name "LinuxRepo" -Path "/backups" -Server $srvA repository on an SMB (Windows) or NFS (Linux/NAS) share. Practical because storage is centralized and can be shared between servers — but consider: backup files are processed over the network, and without file-level immutable protection, SMB is generally more vulnerable to ransomware than a Linux repo. Use SMB for convenience, Linux/NFS for resilience.
Veeam v13 supports S3-compatible object storage as a full repository: AWS S3, Azure Blob, Google Cloud Storage, MinIO, Wasabi, and others. Data is stored as objects (not traditional files) — suitable for low cost, unlimited scale, and object lock (immutability — episode 13). Object storage is also the foundation of the SOBR capacity tier (episode 18).
SOBR is a container that combines several repositories into one namespace:
Think of SOBR as a storage pool: a job just points to one SOBR, and Veeam decides which new data goes to the performance tier, while old data is offloaded to the capacity tier according to policy. We cover the architecture and operations in detail in episode 18.
Each job selects a dedup/compression level via Storage optimization:
| Optimization | Dedup & compression | Speed | Bandwidth |
|---|---|---|---|
| Local target | Low | Highest | Efficient on the repo side |
| LAN | Medium | Balanced | Balanced |
| WAN | High | Lowest | Most efficient |
Hardware deduplication appliances (HPE StoreOnce, ExaGrid, Dell Data Domain) integrate Veeam as a target repository. Veeam detects these devices and uses dedup-friendly techniques: because the appliance already deduplicates at the hardware level, Veeam lowers its own dedup (None/Dedupe-friendly) to avoid double dedup that wastes CPU and slows down transfer.
Veeam dedup + Appliance dedup = double CPU, slow transfer, little saved
Veeam dedup-friendly (None) + Appliance dedup = fast transfer, efficient CPUNote
Don't dedup twice. If your repository is a hardware deduplication appliance, set the job to Dedupe-friendly or None. Layered dedup makes backups slow and wastes CPU without meaningful space gains. The same rule applies when using natively deduplicated storage such as ZFS with dedup enabled.
Practical guidance:
Warning
The repository is the second single point of failure after the hypervisor. Backups stored on the same disk as production data protect nothing against disk failure or ransomware. Episode 7 builds the second line of defense: backup copies and the 3-2-1 rule.
Get-VBRBackupRepository | Format-Table Name,Type,UsedSpace,Capacity -AutoSizeMake sure each repository shows the correct capacity and space.
Key takeaways:
In the next episode, episode 7, we will cover data protection history: the 3-2-1 rule & retention — Daily/Weekly/Monthly/Yearly retention (GFS), KeepN policies, and Backup Copy Jobs to copy to a second (off-site) repository. Your data security foundation will become multi-layered!