1.原理简介
在日常的网络中为了实现网络的容错能力通常给一台比较重要的主机配置多块网卡来避免单点故障当有一块网卡出现故障时能够保证网络的正常连通。在linux下使用bonding技术来实现,什么是bonding需要从网卡的混杂(promisc)模式说起。我们知道,在正常情况下,网卡只接收目的硬件地址(MAC Address)是自身Mac的以太网帧,对于别的数据帧都滤掉,以减轻驱动程序的负担。但是网卡也支持另外一种被称为混杂promisc的模式,可以接收网络上所有的帧,比如tcpdump,就是运行在这个模式下。bonding也运行在这个模式下,而且修改了驱动程序中的mac地址,将两块网卡的Mac地址改成相同,可以接收特定mac的数据帧。然后把相应的数据帧传送给bond驱动程序处理。Redhat Linux的网络配置,是通过修改几个配置文件来实现的。
2.linux下双网卡绑定的配置
1)首先检查系统模块bonding
2)确定bonding模块存在后修改网卡配置文件
[root@localhost ~]# cd /etc/sysconfig/network-scripts/
[root@localhost network-scripts]# vim ifcfg-eth0 //编辑eth0的配置文件
修改的配置内容如下:
3)以同样的方式修改eth1
[root@localhost network-scripts]# vim ifcfg-eth1
4)创建虚拟网卡bond0并配置其内容
[root@localhost network-scripts]# cp ifcfg-eth1 ifcfg-bond0
[root@localhost network-scripts]# vim ifcfg-bond0
5)配置bonding,修改/etc/modprobe.conf mode=1即1模式。其特点:只有一个设备处于活动状态,当一个宕掉另一个马上由备份转换为主设备。mac地址是外部可见得,从外面看来,bond的MAC地址是唯一的,以避免switch(交换机)发生混乱。此模式只提供了容错能力;由此可见此算法的优点是可以提供高网络连接的可用性,但是它的资源利用率较低,只有一个接口处于工作状态
[root@localhost network-scripts]# vim /etc/modprobe.conf
6)把bond0加入开机启动脚本,并把eth0,eth1加入bond0
[root@localhost network-scripts]# vim /etc/rc.d/rc.local
7)至此所有的配置已完成,重启系统查看bond0的信息
[root@localhost network-scripts]# 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: eth0
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: 0
Permanent HW addr: 00:0c:29:70:3f:f7
Slave Interface: eth1
MII Status: up
Link Failure Count: 1
Permanent HW addr: 00:0c:29:70:3f:01
查看bond0网卡信息
[root@localhost network-scripts]# ifconfig
bond0 Link encap:Ethernet HWaddr 00:0C:29:70:3F:F7
inet addr:192.168.1.11 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: fe80::20c:29ff:fe70:3ff7/64 Scope:Link
UP BROADCAST RUNNING MASTER MULTICAST MTU:1500 Metric:1
RX packets:675 errors:0 dropped:0 overruns:0 frame:0
TX packets:512 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:63116 (61.6 KiB) TX bytes:67636 (66.0 KiB)
eth0 Link encap:Ethernet HWaddr 00:0C:29:70:3F:F7
UP BROADCAST RUNNING SLAVE MULTICAST MTU:1500 Metric:1
RX packets:660 errors:0 dropped:0 overruns:0 frame:0
TX packets:503 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:60877 (59.4 KiB) TX bytes:65317 (63.7 KiB)
Interrupt:67 Base address:0x2000
eth1 Link encap:Ethernet HWaddr 00:0C:29:70:3F:F7
UP BROADCAST RUNNING SLAVE MULTICAST MTU:1500 Metric:1
RX packets:20 errors:0 dropped:0 overruns:0 frame:0
TX packets:18 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:2539 (2.4 KiB) TX bytes:3721 (3.6 KiB)
8)测试1模式
现在关闭eth1
[root@localhost network-scripts]# 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: eth0
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: 0
Permanent HW addr: 00:0c:29:70:3f:f7
Slave Interface: eth1
MII Status: down //eth1为关闭状态
Link Failure Count: 2
Permanent HW addr: 00:0c:29:70:3f:01
仍然可以通信
3.mode 0 的实现
mode 0下bond所绑定的网卡的IP都被修改成相同的mac地址,如果这些网卡都被接在同一个交换机,那么交换机的arp表里这个mac地址对应的端口就有多 个,那么交换机接受到发往这个mac地址的包应该往哪个端口转发呢?正常情况下mac地址是全球唯一的,一个mac地址对应多个端口肯定使交换机迷惑了。所以mode0下的bond如果连接到交换机,交换机这几个端口应该采取聚合方式(cisco称为 ethernetchannel,foundry称为portgroup),因为交换机做了聚合后,聚合下的几个端口也被捆绑成一个mac地址
现在只需要修改修改/etc/modprobe.conf 配置文件其它配置不改动
[root@localhost network-scripts]# vim /etc/modprobe.conf
alias eth0 pcnet32
alias bond0 bonding
alias scsi_hostadapter mptbase
alias scsi_hostadapter1 mptspi
alias scsi_hostadapter2 ata_piix
alias snd-card-0 snd-ens1371
options snd-card-0 index=0
options snd-ens1371 index=0
remove snd-ens1371 { /usr/sbin/alsactl store 0 >/dev/null 2>&1 || : ; }; /sbin/modprobe -r --ignore-remove snd-ens1371
alias eth1 pcnet32
options bond0 miimon=100 mode=0 //模式0
重启系统查看bond0的信息
关闭eth1测试
4.其它模式介绍
mode=2,即:(balance-xor) XOR policy(平衡策略)
特点:基于指定的传输HASH策略传输数据包。传输策略可以通过xmit_hash_policy选项指定,此模式提供负载平衡和容错能力。
mod=3,即:broadcast(广播策略)
特点:在每个slave接口上传输每个数据包,此模式提供了容错能力.