ubuntu 绑定,如何在可用时自动切换到主从属

ubuntu 绑定,如何在可用时自动切换到主从属

https://www.unixmen.com/linux-basics-create-network-bonding-on-ubuntu-14-10/

我已经配置了模式 1:bond-mode active-backup 的绑定。

 ln@ubuntu:~$ cat /etc/network/interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback


auto ens33
iface ens33 inet manual
bond-master bond0
bond-primary ens33

#eth2 configuration
auto ens38
iface ens38 inet manual
bond-master bond0

# Bonding eth1 & eth2 to create bond0 NIC
auto bond0
iface bond0 inet static
address 192.168.199.71
gateway 192.168.199.1
netmask 255.255.255.0
bond-mode active-backup
bond-miimon 100
bond-updelay 500
bond-slaves none

ens33 是 bond-primary。当 ens33 不可用时,ens38 开始工作,然后 ens33 可用,网络将无法工作。ping 将失败。

From 192.168.199.71 icmp_seq=3 Destination Host Unreachable

如何解决这个问题?

相关内容