Is it possible to create multiple bonds on the same slaves?
We have two ethernet ports on each server. We'd like to have one ethernet port with a public address and one ethernet port with a private address but also ensure redundancy.
Is it possible to create two active-backup bonds using the same interfaces?
iface bond0 inet static
address XXX.XXX.XXX.XXX
bond-slaves eth0 eth1
bond-primary eth0
bond-mode active-backup
iface bond0 inet static
address 192.168.1.2
bond-slaves eth1 eth0
bond-primary eth1
bond-mode active-backup
Where as eth1 will serve the private network and eth0 will serve the public network until there is a failure.