SHIFTING DIMENSION
DIMENSION 00 // ORIGIN

Picture a server.
Inside it, every one of the company's invoices.
What if it won't boot tomorrow morning?

On this journey we'll follow a single file: invoice_2026.pdf, living inside the accounting server SRV-ACCOUNTING. We'll pull it out of the production environment, carry it through every dimension of the Veeam universe, and bring it back alive from a disaster. By the end, you'll understand end-to-end how backup actually works.

MISSION: make invoice_2026.pdf immortal. TOOL: Veeam Backup & Replication. DURATION: 7 dimensions.
DIMENSION 01 // PRODUCTION ENVIRONMENT

It all begins with a snapshot.

Veeam never stops a running VM. Instead it tells the hypervisor (vSphere/Hyper-V), "take a photo of this VM's current state." But before the photo there's a critical step: Application-Aware Processing. A temporary runtime process is sent into the VM and Windows VSS is triggered; applications like SQL, Exchange, and Active Directory bring their disks to a consistent state. That way a database restored from backup doesn't wake up "corrupted" β€” it wakes up spotless.

SRV-ACCOUNTING
πŸ“„ invoice_2026.pdf
state: running Β· users active
1 Β· Guest process injected (VIX/WMI)
2 Β· VSS writers frozen (freeze)
3 Β· Hypervisor snapshot taken (<1 s)
4 Β· VSS released (thaw) β€” users noticed nothing
5 Β· Veeam now reads from the frozen copy
A snapshot is not a backup β€” it's just a "write changes to another file for now" command. As soon as Veeam finishes reading, the snapshot is deleted (consolidate). Leaving a snapshot open for days bloats the production disk; that's why Veeam cleans it up the moment the job is done.
// take a snapshot first
DIMENSION 02 // BACKUP PROXY

Which route will the data take?
You choose the path.

The snapshot is ready. Now the Backup Proxy steps in: its Veeam Data Mover service reads, compresses, and deduplicates the data, then sends it to the repository (data channel: TCP 2500–3300). But first there's a decision β€” which transport mode will the proxy use to reach the VM's disk? Click one:

β–Έ DIRECT STORAGE ACCESS

The proxy connects directly to production storage over FC/iSCSI/NFS. It never touches the ESXi hosts or the production network.

FASTEST

β–Έ VIRTUAL APPLIANCE (HOT-ADD)

The virtual proxy attaches the VM's disks to itself via SCSI hot-add and reads from the hypervisor I/O stack.

FAST Β· VIRTUAL PROXY

β–Έ NETWORK (NBD/NBDSSL)

Data is pulled over the network through the ESXi management interface. The slowest β€” but it works in every environment.

UNIVERSAL FALLBACK

So why does a 1 TB disk back up in minutes?

The answer: Changed Block Tracking (CBT). The hypervisor keeps a map of which blocks have changed since the last backup. Veeam simply asks, "what changed since yesterday?" β€” and reads only those blocks. Press the button and see the difference:

unchanged block changed block (flagged by CBT) read by Veeam
// pick a transport mode and run the CBT demo
DIMENSION 03 // BACKUP CHAIN

invoice_2026.pdf now lives inside a chain.

The data the proxy sends is written to files in the repository: a full backup .VBK on Sunday, the nightly changes on weekdays as .VIB (increment) files, and the chain's map as the .VBM metadata file. At restore time, Veeam reads this chain to rebuild whichever day you want. Try it yourself β€” take a few nights of backups:

β–Έ FOREVER FORWARD INCREMENTAL

One full + endless increments. When retention fills, the oldest VIB is merged into the VBK β€” little space, little I/O. (This is what you just did.)

β–Έ REVERSE INCREMENTAL

The most recent point is always a full VBK; older states are written back into .VRB files. Fastest restore, but 3x I/O during the backup.

β–Έ SYNTHETIC FULL

A periodic new full is synthesized on the repository from the existing chain rather than from production. Production is never strained.

// take at least 3 nights of backups and do one merge
DIMENSION 04 // SCALE-OUT REPOSITORY

As a backup ages, it changes tiers.
Slide through time yourself.

SOBR combines multiple storage devices into a single logical pool and manages the backups' lifecycle automatically. Use the slider below to age invoice_2026.pdf's backup β€” watch which tier it filters down to:

TODAY30 DAYS90 DAYS1 YEAR+
// backup 0 days old β€” on the Performance tier, ready for instant restore

β—‰ PERFORMANCE TIER

Fast block storage. Daily operational restores come back from here within seconds.

BACKUP IS HERE

β—Ž CAPACITY TIER

S3-compatible object storage. With a move/copy policy, backups are moved here automatically β€” the off-site copy (the "1" in 3-2-1) is created on its own.

BACKUP IS HERE

β—Œ ARCHIVE TIER

S3 Glacier / Azure Archive. The oldest backups are kept in frozen space for years at the lowest cost.

BACKUP IS HERE
Tip: on the Capacity tier, copy mode places a copy in the cloud while the backup is still on Performance (instant off-site protection); move mode relocates it after a set age and frees local space. The two can also be used together.
DIMENSION 05 // BLACK HOLE

03:12. A ransomware has slipped into the network.
It hunts the backups first.

The first target of modern attacks isn't production β€” it's the backups, because a victim with no backup pays the ransom. Below are two repositories: an ordinary Windows share and a Hardened Repository (Linux + XFS immutability: for a set period the backups can't be deleted or altered, not even by root). Launch the attack and see the difference:

ORDINARY REPOSITORY (SMB)

invoice.vbkmon.vibtue.vibwed.vibmap.vbm

HARDENED REPOSITORY ⛨

invoice.vbkmon.vibtue.vibwed.vibmap.vbm
βœ— Ordinary repository: all backups encrypted. No recovery point.
βœ“ Hardened repository: the immutability flag rejected the write/delete requests. The chain is fully intact.

Veeam's other defense layers are engaged too: SureBackup automatically boots and verifies backups in an isolated virtual lab (the zero in 3-2-1-1-0 β€” zero errors); Threat Hunter in v13 scans backup data for malware; inline entropy analysis catches encryption behavior while the backup is still being taken; and Veeam ONE spots abnormal increment growth and raises an alarm β€” encrypted data doesn't compress, so the incremental backup suddenly balloons, and the telescope doesn't miss it.
// you must witness the attack first
DIMENSION 06 // THE RETURN

08:00. The boss is at the door:
"Where is invoice_2026.pdf?"

The production server was encrypted, but the chain in the Hardened Repository is intact. Now the critical question: how will you get back? Veeam offers you not one path but options that fit the scenario. Pick one:

β–Έ INSTANT RECOVERY

The VM is run directly from the backup file β€” the Mount Service (TCP 9401) publishes the backup like a datastore. You're up in minutes; in the background it's migrated to production via Storage vMotion.

RTO: MINUTES

β–Έ FILE-LEVEL RESTORE

No need for the whole VM β€” the backup is mounted and only invoice_2026.pdf is pulled from the file browser. Thanks to the Guest Catalog index, the file is found in a second by search.

SINGLE FILE

β–Έ FULL VM RESTORE

The entire VM is rebuilt from the chosen restore point. The cleanest return β€” it takes a bit longer, and after an attack it's usually done with antivirus-scanning Secure Restore.

FULL REBUILD
// pick a restore method
DIMENSION 07 // COMMAND CENTER

The journey is complete. Here's the full map of the universe.

invoice_2026.pdf has been recovered. Now let's tie the big picture together β€” who watches all these dimensions, who manages them?

β–Έ ENTERPRISE MANAGER

Manages multiple VBR servers from a single web console (TCP 9443). Federated catalog search finds files across all sites in one query; with the self-service portal users recover their own files themselves β€” no one gets called at 3 a.m.

β–Έ VEEAM ONE

The monitoring and reporting telescope: SLA reports, capacity planning, protection-gap analysis, and the ransomware anomaly alarms you just saw.

β–Έ THE v13 ERA

The current release, v13: a Linux-based hardened Software Appliance, a browser-based Web UI, gRPC communication, BLAKE3 hashing, Kerberos-first, Threat Hunter, and the Veeam Intelligence AI assistant.

DIMENSION 01 β€” App-aware VSS + snapshot: a consistent, uninterrupted photo
DIMENSION 02 β€” Proxy + transport mode + CBT: only changed blocks flow
DIMENSION 03 β€” VBK/VIB/VBM chain: a new point in time every night
DIMENSION 04 β€” SOBR: an aging backup filters from Performance β†’ Capacity β†’ Archive
DIMENSION 05 β€” Hardened repo + SureBackup + Threat Hunter: no gateway to the black hole
DIMENSION 06 β€” Instant / file-level / full restore: a return that fits your scenario
RESULT β€” 3-2-1-1-0: 3 copies Β· 2 media Β· 1 off-site Β· 1 immutable Β· 0 verification errors
SERVICEROLEPORT
Veeam Backup ServiceJob engine & coordination (VBR)TCP 9392
Guest Catalog ServiceFile indexing catalogTCP 9393
Mount ServiceInstant recovery / file restore mountTCP 9401
Installer ServiceComponent deployment (all managed servers)TCP 6160
Transport ServiceProxy/repository component communicationTCP 6162
Data Mover channelsThe actual backup data streamTCP 2500–3300
Enterprise ManagerWeb UI & REST APITCP 9443
PostgreSQLConfiguration DB (v12+ default)TCP 5432