I am in the process of troubleshooting a single node in my cluster before expanding the configuration.
Each node has 4 NICs:
- enp5s0 is the primary NIC where the webui is attached (working properly)
- enp10s0 is an XG card for a separate SAN (working properly)
- enp8s0 and enp9s0 are a pair that my goal is to get bonded and used by the VMs to communicate leaving enp5s0 for the cluster sync and webui.
My current config is below. For now, enp9s0 is unused.
When I connect a VM to vmbr0, DHCP works.
When I connect the same VM to vmbr1, DHCP does not work.
I can ping both interfaces from external hosts.
I have tried with and without bridge-stp, since they are on the same segment, I believe bridge-stp is the safe answer.
I have tried with the gateway on both bridges, moving it has no effect.
Thanks in advance for pointing out my silly mistakes!
Each node has 4 NICs:
- enp5s0 is the primary NIC where the webui is attached (working properly)
- enp10s0 is an XG card for a separate SAN (working properly)
- enp8s0 and enp9s0 are a pair that my goal is to get bonded and used by the VMs to communicate leaving enp5s0 for the cluster sync and webui.
My current config is below. For now, enp9s0 is unused.
Code:
auto lo
iface lo inet loopback
iface enp5s0 inet manual
iface enp8s0 inet manual
iface enp9s0 inet manual
auto enp10s0
iface enp10s0 inet static
address 172.16.4.1/29
mtu 9000
auto vmbr0
iface vmbr0 inet static
address 172.16.0.11/22
bridge-ports enp5s0
bridge-stp on
bridge-fd 0
auto vmbr1
iface vmbr1 inet static
address 172.16.1.1/22
gateway 172.16.0.1
bridge-ports enp8s0
bridge-stp on
bridge-fd 0
When I connect a VM to vmbr0, DHCP works.
When I connect the same VM to vmbr1, DHCP does not work.
I can ping both interfaces from external hosts.
I have tried with and without bridge-stp, since they are on the same segment, I believe bridge-stp is the safe answer.
I have tried with the gateway on both bridges, moving it has no effect.
Thanks in advance for pointing out my silly mistakes!
Last edited: