标签:term .com 平衡 虚拟机 mode https bind modprobe image
常用的绑定驱动模式有:TYPE=Ethernet
DEVICE=eth1
ONBOOT=yes
BOOTPROTO=none
USERCTL=no
MASTER=bond0
SLAVE=yes
TYPE=Ethernet
DEVICE=eth2
ONBOOT=yes
BOOTPROTO=none
USERCTL=no
MASTER=bond0
SLAVE=yes
TYPE=Bond
BOOTPROTO=none
ONBOOT=yes
USERCTL=no
DEVICE=bond0
IPADDR=192.168.153.130
NETMASK=255.255.255.0
需要关闭NetworkManager服务
# systemctl stop NetworkManager
# systemctl disable NetworkManager
# vim /etc/modprobe.d/bonding.conf
alias bond0 binding
options bond0 miimon=100 mode=0 //模式0,miimon是用来进行链路监测的,后面指定的是检查的间隔时间,单位是ms
重启网络服务
systemctl restart network
查看内核是否加载
# lsmod |grep bonding
在另一台同网段虚拟机也可以ping通
标签:term .com 平衡 虚拟机 mode https bind modprobe image
原文地址:https://blog.51cto.com/9019400/2372279