vmbr0 entered blocking|disabled state

almiller

Member
Dec 1, 2020
21
0
21
59
I can't seem to login to my proxmox 7.2-7 server on the vmbr0 interface but I CAN on the vmbr1 interface?

I'm seeing alot of "vmbr0: port x entered [blocking|disabled|forwarding] state" messages

My local DNS ressolves correctly:
Code:
(base)  almiller  ~  dig proxmox.internal.lan proxmox.internal.lab +short
192.168.254.101
172.17.1.100

What's wierd is that I CAN login to a VM with an IP in the same subnet as vmbr0.

Code:
(base)  almiller  ~  dig rocky.internal.lan +short
192.168.254.74
(base)  almiller  ~  ssh rocky.internal.lan ip addr show dev ens18 |grep inet
    inet 192.168.254.74/24 brd 192.168.254.255 scope global dynamic noprefixroute ens18

I have configured /etc/network/interfaces with
Code:
auto lo
iface lo inet loopback
iface eno1 inet manual
iface eno2 inet manual

auto vmbr0.1
iface vmbr0.1 inet static
        address  192.168.254.101/24
        gateway  192.168.254.254

auto vmbr0
iface vmbr0 inet manual
        bridge-ports eno1
        bridge-stp off
        bridge-fd 0
        bridge-vlan-aware yes
        bridge-vids 2-4094

auto vmbr1.30
iface vmbr1.30 inet static
        address  172.17.1.100/24
        gateway  172.17.1.1

auto vmbr1
iface vmbr1 inet manual
        bridge-ports eno2
        bridge-stp off
        bridge-fd 0
        bridge-vlan-aware yes
        bridge-vids 2-4094
 
Nevermind, it seems to have magically started working without changing anything?


Code:
 (base)  almiller ~  ssh -t  root@192.168.254.101 ip addr show|grep global
    inet 192.168.254.101/24 scope global vmbr0.1
    inet 172.17.1.100/24 scope global vmbr1.30
Connection to 192.168.254.101 closed.

(base)  almiller  ~  ssh -t  root@172.17.1.100 ip addr show|grep global
    inet 192.168.254.101/24 scope global vmbr0.1
    inet 172.17.1.100/24 scope global vmbr1.30
Connection to 172.17.1.100 closed.