After updating Veeam to Version 13, the Proxmox VE server is no longer reachable. Specifically, the Proxmox server cannot be reached from the Veeam Backup Server on TCP ports 8006 and 22.
Veeam reports:
Backup Infrastructure → Proxmox unavailable
On the Proxmox server:
On the Veeam Backup Server:
The Windows Firewall is disabled:
Proxmox VE Server
The Proxmox firewall is disabled:
Additional verification:
The VM firewall is disabled:
https://192.168.110.106:8006
This indicates that the Proxmox server itself is operational and that the issue appears to be specific to communication between the Veeam Backup Server and the Proxmox VE host.
What could be the cause? I would be grateful for any help. Cheers, Claus
Veeam reports:
Backup Infrastructure → Proxmox unavailable
- Veeam Backup & Replication: Version 13.0.2.29, IP 192.168.110.79
- Proxmox VE: Version 8.2.7, IP 192.168.110.106
On the Proxmox server:
Code:
tcpdump -nn -i eno1 host 192.168.110.79
On the Veeam Backup Server:
Code:
Test-NetConnection 192.168.110.106 -Port 8006
Test-NetConnection 192.168.110.106 -Port 22
curl.exe -vk https://192.168.110.106:8006
Firewall Configuration
Veeam Backup Server (192.168.110.79)The Windows Firewall is disabled:
Code:
Set-NetFirewallProfile -Profile Domain,Private,Public -Enabled False
Proxmox VE Server
The Proxmox firewall is disabled:
Code:
systemctl stop pve-firewall
Additional verification:
- iptables is not filtering any traffic (default policy: ACCEPT).
Code:
root@proxmox:~# iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source
- nftables contains no rules.
The VM firewall is disabled:
Code:
qm set 103 --net0 virtio=BC:24:11:9C:01:EE,bridge=vmbr0,firewall=0
Successfully Verified
1. Proxmox Ports and Services
Code:
root@proxmox:~# ss -tlnp | egrep ':22|:8006'
LISTEN 0 128 0.0.0.0:22 0.0.0.0:* users("sshd",pid=1486,fd=3))
LISTEN 0 128 [::]:22 [::]:* users("sshd",pid=1486,fd=4))
LISTEN 0 4096 *:8006 *:* users("pveproxy worker",pid=614596,fd=6),("pveproxy worker",pid=613380,fd=6),("pveproxy worker",pid=612830,fd=6),("pveproxy worker",pid=612829,fd=6),("pveproxy worker",pid=558100,fd=6),("pveproxy",pid=552469,fd=6))
2. DNS Resolution and Routing
Verified and functioning correctly.3. Direct Access to Proxmox VE
The Proxmox VE web interface is accessible from other systems on the network at:https://192.168.110.106:8006
This indicates that the Proxmox server itself is operational and that the issue appears to be specific to communication between the Veeam Backup Server and the Proxmox VE host.
What could be the cause? I would be grateful for any help. Cheers, Claus
Last edited: