Hello everyone,
I am trying to configure a failover for the management interface and was wondering if someone could help me out. Below is how my configuration is now...
eno1 and eno2 are integrated NIC ports on the motherboard, and enp11s0f0 and enp11s0f1 is a PCIe card I have installed. So how would I create a failover for the management interface? Just create a bridge and add both ports? If so, I assume it would just failover if one cable was unplugged correct? TIA
I am trying to configure a failover for the management interface and was wondering if someone could help me out. Below is how my configuration is now...
Code:
auto lo
iface lo inet loopback
auto eno1 # this interface is the mangement interface for Promox web GUI
iface eno1 inet static
address 192.168.1.20/24
gateway 192.168.1.1
iface eth0 inet manual
iface eth1 inet manual
iface ens3f0 inet manual
iface ens3f1 inet manual
auto eno2 # not used atm, would like this to be the failover for eno1
iface eno2 inet static
address 192.168.1.21/24
iface eth3 inet manual
iface enp11s0f0 inet manual # added to vmbr0, would eventually like to create an LACP port with port enp11s0f1 below
iface enp11s0f1 inet manual # not used atm, would eventually like to create an LACP port with port enp11s0f0 above
iface eth2 inet manual
auto vmbr0 # bridge interface used for the VM network
iface vmbr0 inet static
address 192.168.1.30/24
bridge-ports enp11s0f0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
source /etc/network/interfaces.d/*
eno1 and eno2 are integrated NIC ports on the motherboard, and enp11s0f0 and enp11s0f1 is a PCIe card I have installed. So how would I create a failover for the management interface? Just create a bridge and add both ports? If so, I assume it would just failover if one cable was unplugged correct? TIA