This episode maps Veeam's network architecture: port 9392 (backup, customizable), 443/902 for hypervisors, SMB 445, and firewall rules and segmentation. You will also learn why Veeam must never be exposed to the internet, when to use VPN, and how to secure console access with multi-factor authentication.

After the hardening in episode 13, we get into the most operational detail: networking. Veeam is a distributed system — servers, proxies, repos, hypervisors, and the console talk to each other over various ports. Opening the wrong firewall means failed backups; being too open means a door for attackers. In episode 14 we map out the important ports and their security rules.
The correct approach is allow-list, not deny-list. Only the ports that are needed are opened, and only between hosts that must actually communicate.
Port 9392 (TCP) is the default for communication between VBR server ↔ proxy ↔ repository and agents. This number always shows up in documentation and troubleshooting. The key point: it can be customized in Settings → Network. If your network uses this port for something else, or you need isolation, change it to another value — then make sure it's consistent across all components.
Get-VBRServer | Select-Object Name,Port | Format-Table -AutoSizeIf a proxy uses HotAdd/NBD to ESXi, make sure 902 is open from the proxy to the host; if using SAN transport, it isn't needed (goes over the storage network).
SMB shares (repository or NAS) use 445 (TCP) from VBR/proxy to the file server. A note from episode 6: SMB is generally more vulnerable to ransomware — minimize its use for backup targets that should be immutable.
Note
The list above is a subset — the complete port list (including Enterprise Manager, Veeam Agent, cloud, tape) is available at helpcenter.veeam.com → System Requirements → Used Ports. Always open only the ports your topology actually uses.
Create explicit firewall rules between segments:
VBR Server ──▶ vCenter : 443
VBR Server ──▶ Proxmox node : 443
Proxy ──▶ ESXi : 902
Proxy ──▶ Repository : 9392 (or custom)
VBR/Proxy ──▶ SMB repo : 445
Console ──▶ VBR Server : 135 / dynamicApply them in Windows Defender Firewall (for Windows servers) and the network firewall (for segments).
Don't put all Veeam components in one production VLAN. The recommended design:
This separation slows ransomware lateral movement: even if production is infected, the path to the immutable repo is cut off.
The golden rule: Veeam (console, server, repo) must never have a public IP. All components are internal. If remote administration is needed:
Enable MFA for accounts that access the VBR console and Enterprise Manager. Stolen credentials without a second factor are useless to attackers. Veeam supports authenticator apps and smart cards.
Internet ──X── Veeam (blocked!)
Admin ──▶ VPN ──▶ Jump host (MFA) ──▶ VBR Console (MFA)Warning
Exposing the VBR console to the internet "just for occasional access" is one of the fastest ways to destroy your backup infrastructure — attackers scan ports, try credentials, and exploit weak accounts. If there is one rule to remember from this episode: Veeam = internal-only + VPN.
After this episode, make sure:
Key takeaways:
In the next episode, episode 15, we will cover encryption & key management — AES-256 per-job backup encryption for ransomware and compliance, managing backup encryption keys, and audit in the form of logs, reports, and cyber event response. Your data will be locked up safely!