1 什么是bond

   网卡bond是通过多张网卡绑定为一个逻辑网卡,实现本地网卡的冗余,带宽扩容和负载均衡,在生产场景中是一种常用的技术。Kernels 2.4.12及以后的版本均供bonding模块,以前的版本可以通过patch实现。可以通过以下命令确定内核是否支持 bonding:

[root@lixin network-scripts]#cat /boot/config-2.6.32-573.el6.x86_64 |grep -i bonding
CONFIG_BONDING=m
[root@lixin network-scripts]#

2 bond的模式


bond的模式常用的有两种:

  mode=0(balance-rr)

    表示负载分担round-robin,并且是轮询的方式比如第一个包走eth0,第二个包走eth1,直到数据包发送完毕。

    优点:流量提高一倍

    缺点:需要接入交换机做端口聚合,否则可能无法使用

  mode=1(active-backup)

    表示主备模式,即同时只有1块网卡在工作。

    优点:冗余性高

    缺点:链路利用率低,两块网卡只有1块在工作

bond其他模式:

  mode=2(balance-xor)(平衡策略)

    表示XOR Hash负载分担,和交换机的聚合强制不协商方式配合。(需要xmit_hash_policy,需要交换机配置port channel)

  mode=3(broadcast)(广播策略)

    表示所有包从所有网络接口发出,这个不均衡,只有冗余机制,但过于浪费资源。此模式适用于金融行业,因为他们需要高可靠性的网络,不允许出现任何问题。需要和交换机的聚合强制不协商方式配合。

    特点:在每个slave接口上传输每个数据包,此模式提供了容错能力

  mode=4(802.3ad)(IEEE 802.3ad 动态链接聚合)

    表示支持802.3ad协议,和交换机的聚合LACP方式配合(需要xmit_hash_policy).标准要求所有设备在聚合操作时,要在同样的速率和双工模式,而且,和除了balance-rr模式外的其它bonding负载均衡模式一样,任何连接都不能使用多于一个接口的带宽。

    特点:创建一个聚合组,它们共享同样的速率和双工设定。根据802.3ad规范将多个slave工作在同一个激活的聚合体下。外出流量的slave选举是基于传输hash策略,该策略可以通过xmit_hash_policy选项从缺省的XOR策略改变到其他策略。需要注意的是,并不是所有的传输策略都是802.3ad适应的,尤其考虑到在802.3ad标准43.2.4章节提及的包乱序问题。不同的实现可能会有不同的适应性。

    必要条件:

        条件1:ethtool支持获取每个slave的速率和双工设定

        条件2:switch(交换机)支持IEEE802.3ad Dynamic link aggregation

        条件3:大多数switch(交换机)需要经过特定配置才能支持802.3ad模式

  mode=5(balance-tlb)(适配器传输负载均衡)

    是根据每个slave的负载情况选择slave进行发送,接收时使用当前轮到的slave。该模式要求slave接口的网络设备驱动有某种ethtool支持;而且ARP监控不可用。

    必要条件:

        ethtool支持获取每个slave的速率

  mode=6(balance-alb)(适配器适应性负载均衡)

    在5的tlb基础上增加了rlb(接收负载均衡receiveload balance).不需要任何switch(交换机)的支持。接收负载均衡是通过ARP协商实现的.

bond模式小结:

    mode5和mode6不需要交换机端的设置,网卡能自动聚合。mode4需要支持802.3ad。mode0,mode2和mode3理论上需要静态聚合方式。

3 配置bond


测试环境:

[root@lixin ~]# cat/etc/redhat-release
CentOS release 6.7 (Final)
[root@lixin ~]# uname -r
2.6.32-573.el6.x86_64
[root@lixin~]#

 

1、配置物理网卡

[root@lixin network-scripts]#cat ifcfg-eth0    
DEVICE=eth0
TYPE=Ethernet
ONBOOT=yes
BOOTPROTO=none
MASTER=bond0
SLAVE=yes         //可以没有此字段,就需要开机执行ifenslave bond0 eth0 eth1命令了。
[root@lixin network-scripts]#
[root@lixin network-scripts]#cat ifcfg-eth1    
DEVICE=eth1
TYPE=Ethernet
ONBOOT=yes
BOOTPROTO=none
MASTER=bond0
SLAVE=yes       
[root@lixin network-scripts]#

 

2、配置逻辑网卡bond0

[root@lixin network-scripts]#cat ifcfg-bond0     //需要我们手工创建
DEVICE=bond0
TYPE=Ethernet
ONBOOT=yes
BOOTPROTO=static
IPADDR=10.0.0.10
NETMASK=255.255.255.0
DNS2=4.4.4.4
GATEWAY=10.0.0.2
DNS1=10.0.0.2
[root@lixin network-scripts]#

由于没有这个配置文件我们可以使用拷贝一个ifcfg-eth1来用:cp ifcfg-{eth0,bond1}

 

3、加载模块,让系统支持bonding

[root@lixin ~]# cat/etc/modprobe.conf  //不存在的话,手动创建(也可以放在modprobe.d下面)
alias bond0 bonding
options bond0 miimon=100 mode=0
[root@lixin ~]#

配置bond0的链路检查时间为100ms,模式为0。

 

注意:

  linux网卡bonging的备份模式实验在真实机器上做完全没问题(前提是linux内核支持),但是在vmware workstation虚拟中做就会出现如下图问题。  

  配置完成后出现如上图问题,但是bond0能够正常启动也能够正常使用,只不过没有起到备份模式的效果。当使用ifdown eth0后,网络出现不通现象。

[root@lixin etc]# cat/etc/modprobe.d/modprobe.conf
alias bond0 bonding
options bond0 miimon=100 mode=0fail_over_mac=1
[root@lixin etc]#

 

4、加载bond module

[root@lixin etc]# modprobe bonding

 

5、查看绑定结果

[root@lixin etc]# cat/proc/net/bonding/bond0
Ethernet Channel BondingDriver: v3.7.1 (April 27, 2011)
 
Bonding Mode: load balancing(round-robin)
MII Status: up
MII Polling Interval (ms): 100
Up Delay (ms): 0
Down Delay (ms): 0
 
Slave Interface: eth0
MII Status: up
Speed: 1000 Mbps
Duplex: full
Link Failure Count: 0
Permanent HW addr:00:50:56:28:7f:51
Slave queue ID: 0
 
Slave Interface: eth1
MII Status: up
Speed: 1000 Mbps
Duplex: full
Link Failure Count: 0
Permanent HW addr:00:50:56:29:9b:da
Slave queue ID: 0
[root@lixin etc]#

4 测试bond


   由于使用的是mode=0,负载均衡的方式,这时我们ping百度,然后断开一个网卡,此时ping不会中断。

[root@lixin etc]# pingbaidu.com
PING baidu.com (111.13.101.208)56(84) bytes of data.
64 bytes from 111.13.101.208:icmp_seq=1 ttl=128 time=10.6 ms
64 bytes from 111.13.101.208:icmp_seq=2 ttl=128 time=9.05 ms
64 bytes from 111.13.101.208:icmp_seq=3 ttl=128 time=11.7 ms
64 bytes from 111.13.101.208:icmp_seq=4 ttl=128 time=7.93 ms
64 bytes from 111.13.101.208:icmp_seq=5 ttl=128 time=9.50 ms
64 bytes from 111.13.101.208:icmp_seq=6 ttl=128 time=7.17 ms
64 bytes from 111.13.101.208:icmp_seq=7 ttl=128 time=21.2 ms
64 bytes from 111.13.101.208:icmp_seq=8 ttl=128 time=7.46 ms
64 bytes from 111.13.101.208:icmp_seq=9 ttl=128 time=7.82 ms
64 bytes from 111.13.101.208:icmp_seq=10 ttl=128 time=8.15 ms
64 bytes from 111.13.101.208:icmp_seq=11 ttl=128 time=6.89 ms
64 bytes from 111.13.101.208: icmp_seq=12ttl=128 time=8.33 ms
64 bytes from 111.13.101.208:icmp_seq=13 ttl=128 time=8.65 ms
64 bytes from 111.13.101.208:icmp_seq=14 ttl=128 time=7.16 ms
64 bytes from 111.13.101.208:icmp_seq=15 ttl=128 time=9.31 ms
64 bytes from 111.13.101.208:icmp_seq=16 ttl=128 time=10.5 ms
64 bytes from 111.13.101.208:icmp_seq=17 ttl=128 time=7.61 ms
64 bytes from 111.13.101.208:icmp_seq=18 ttl=128 time=10.2 ms
^C
--- baidu.com ping statistics---
18 packets transmitted, 18received, 0% packet loss, time 17443ms
rtt min/avg/max/mdev = 6.899/9.417/21.254/3.170 ms
//用另一个终端手动关闭eth0网卡,ping并没有中断
[root@lixin etc]# !ca
cat /proc/net/bonding/bond0
Ethernet Channel BondingDriver: v3.7.1 (April 27, 2011)
 
Bonding Mode: load balancing(round-robin)
MII Status: up
MII Polling Interval (ms): 100
Up Delay (ms): 0
Down Delay (ms): 0
 
Slave Interface: eth0
MII Status: down
Speed: Unknown
Duplex: Unknown
Link Failure Count: 1
Permanent HW addr:00:50:56:28:7f:51
Slave queue ID: 0
 
Slave Interface: eth1
MII Status: up
Speed: 1000 Mbps
Duplex: full
Link Failure Count: 0
Permanent HW addr:00:50:56:29:9b:da
Slave queue ID: 0
[root@lixin etc]#

//查看bond0状态,发现eth0,down了,但是bond正常