1.cd /etc/sysconfig/network-scripts/;touch ifcfg-bond0
2.cd /etc/sysconfig/network-scripts/;cat ifcfg-eth0 ifcfg-bond0
3.vi ifcfg-bond0 修改结果如下
DEVICE=bond0
BOOTPROTO=static
BROADCAST=192.168.0.255
IPADDR=192.168.0.10
NETMASK=255.255.255.0
ONBOOT=yes
TYPE=Ethernet
4.vi /etc/modprobe.conf 增加如下两行
alias bond0 bonding
options bond0 miimon=100 mode=1
说明:miimon是用来进行链路监测的。比如:miimon=100,那么系统每100ms监测一次链路连接状态,如果有一条线路不通就转入另一条线路;mode的值表示工作模式,他共有0,1,2,3四种模式,常用的为0,1两种。
mode=0表示load balancing (round-robin)为负载均衡方式,两块网卡都工作。
mode=1表示fault-tolerance (active-backup)提供冗余功能,工作方式是主备的工作方式
也就是说默认情况下只有一块网卡工作,另一块做备份.
bonding只能提供链路监测,即从主机到交换机的链路是否接通。如果只是交换机对外的链路down掉了,而交换机本身并没有故障,那么bonding会认为链路没有问题而继续使用
5.编辑 /etc/rc.d/rc.local文件,加入两行
ifenslave bond0 eth0 eth1
route add -net 192.168.0.0 netmask 255.255.255.0 bond0
6.reboot,重启后执行ifconfig命令查看网卡的信息,发现bond,eth0.eth1的MAC是同一个MAC,并且获得了eth0的IP地址,说明绑定成功。
7.cat /proc/net/bonding/bond0 #查看绑定结果
Ethernet Channel Bonding Driver: v3.4.0 (October 7, 2008)
Bonding Mode: fault-tolerance (active-backup) #绑定模式
Primary Slave: None
Currently Active Slave: eth1
MII Status: up
MII Polling Interval (ms): 100
Up Delay (ms): 0
Down Delay (ms): 0
Slave Interface: eth0
MII Status: up
Link Failure Count: 1 #断链次数
Permanent HW addr: f4:ce:46:b0:49:46