Hello Proxmox Team,
Imagine you have the following situation:
/eth0--->switch1\
Proxmox Box / \__SwitchX^ ring topology between switches
/eth1--->switch2 /
in my example i'm using ethX interfaces but is the same if you have bonding setup.
This is working configuration if we manual edit /etc/network/interfaces.
When making this configuration of the interfaces to be given their sequence (I mean Bridge Ports).
auto lo
iface lo inet loopback
iface eth0 inet manual
iface eth1 inet manual
auto vmbr0
iface vmbr0 inet static
address 17.16.10.11
netmask 255.255.240.0
gateway 17.16.10.1
bridge_ports eth0
bridge_ports eth1
bridge_stp on
bridge_fd 0
auto vmbr0.7
iface vmbr0.7 inet manual
vlan-raw-device vmbr0
auto vmbr1
iface vmbr1 inet manual
bridge_ports vmbr0.7
bridge_stp off
bridge_fd 0
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
When we creating bridge from the Proxmox Gui he rearranges interfaces in a way that breaks the sequence of startup configuration and vlan interfaces are not created respectively and bridges which bridge ports are those vlans.
auto vmbr0.7
iface vmbr0.7 inet manual
vlan-raw-device vmbr0
auto vmbr0.8
iface vmbr0.8 inet manual
vlan-raw-device vmbr0
auto lo
iface lo inet loopback
iface eth0 inet manual
iface eth1 inet manual
auto vmbr0
iface vmbr0 inet static
address 17.16.10.11
netmask 255.255.240.0
gateway 17.16.10.1
bridge_ports eth0
bridge_ports eth1
bridge_stp on
bridge_fd 0
auto vmbr1
iface vmbr1 inet manual
bridge_ports vmbr0.7
bridge_stp off
bridge_fd 0
auto vmbr2
iface vmbr2 inet manual
bridge_ports vmbr0.8
bridge_stp off
bridge_fd 0
Where the vmbr2 is the new one bridge which i'm creating through the GUI.
Configuration breaks because vlan vmbr0.8 depends of bridge vmbr0 which has not yet been created and launched.
Proxmox Team Please fix this !!!!
Imagine you have the following situation:
/eth0--->switch1\
Proxmox Box / \__SwitchX^ ring topology between switches
/eth1--->switch2 /
in my example i'm using ethX interfaces but is the same if you have bonding setup.
This is working configuration if we manual edit /etc/network/interfaces.
When making this configuration of the interfaces to be given their sequence (I mean Bridge Ports).
auto lo
iface lo inet loopback
iface eth0 inet manual
iface eth1 inet manual
auto vmbr0
iface vmbr0 inet static
address 17.16.10.11
netmask 255.255.240.0
gateway 17.16.10.1
bridge_ports eth0
bridge_ports eth1
bridge_stp on
bridge_fd 0
auto vmbr0.7
iface vmbr0.7 inet manual
vlan-raw-device vmbr0
auto vmbr1
iface vmbr1 inet manual
bridge_ports vmbr0.7
bridge_stp off
bridge_fd 0
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
When we creating bridge from the Proxmox Gui he rearranges interfaces in a way that breaks the sequence of startup configuration and vlan interfaces are not created respectively and bridges which bridge ports are those vlans.
auto vmbr0.7
iface vmbr0.7 inet manual
vlan-raw-device vmbr0
auto vmbr0.8
iface vmbr0.8 inet manual
vlan-raw-device vmbr0
auto lo
iface lo inet loopback
iface eth0 inet manual
iface eth1 inet manual
auto vmbr0
iface vmbr0 inet static
address 17.16.10.11
netmask 255.255.240.0
gateway 17.16.10.1
bridge_ports eth0
bridge_ports eth1
bridge_stp on
bridge_fd 0
auto vmbr1
iface vmbr1 inet manual
bridge_ports vmbr0.7
bridge_stp off
bridge_fd 0
auto vmbr2
iface vmbr2 inet manual
bridge_ports vmbr0.8
bridge_stp off
bridge_fd 0
Where the vmbr2 is the new one bridge which i'm creating through the GUI.
Configuration breaks because vlan vmbr0.8 depends of bridge vmbr0 which has not yet been created and launched.
Proxmox Team Please fix this !!!!