1、关闭和停止NetworkManager服务
# service NetworkManager stop
# chkconfig NetworkManager off
2、加载bonding模块
# modprobe --first-time bonding
3、创建基于bond0接口的配置文件
# vim /etc/sysconfig/network-scripts/ifcfg-bond0
DEVICE=bond0 TYPE=Bond BOOTPROTO=none ONBOOT=yes IPADDR=172.16.0.183 NETMASK=255.255.255.0 GATEWAY=172.16.0.1 DNS1=114.114.114.114 USERCTL=no BONDING_OPTS="mode=6 miimon=100"
4、加载bond0接口到内核
# vi /etc/modprobe.d/bonding.conf
alias bond0 bonding
5、编辑eth0、eth1的接口文件
# vim /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
MASTER=bond0
SLAVE=yes
USERCTL=no
ONBOOT=yes
BOOTPROTO=none
# vim /etc/sysconfig/network-scripts/ifcfg-eth1
DEVICE=eth1
MASTER=bond0
SLAVE=yes
USERCTL=no
ONBOOT=yes
BOOTPROTO=none
6、加载模块、重启网络与测试
# modprobe bonding
# service network restart
进行高可用测试,拔掉其中的一条网线看丢包和延时情况, 然后在插回网线(模拟故障恢复),再看丢包和延时的情况。