Troubleshooting Network
No Network Connection
Check 1: Bridge Exists
# Show bridges
brctl show
# Check IP
ip addr show vmbr0Check 2: VM Network Config
# Check VM network
qm set 100 --net0 virtio,bridge=vmbr0
# Restart networking
systemctl restart networkingCheck 3: Firewall
# Check firewall
ufw status
# Allow all traffic (test)
ufw disableDNS Issues
# Test DNS
nslookup proxmox.local 8.8.8.8
# Update resolv.conf
echo "nameserver 8.8.8.8" > /etc/resolv.conf