REDHAT 6 双网卡 TEAM
2012-05-30 00:25:55
Mode0 : Round-robin策略:按顺序传输数据包,从第一个可用的slave到最后一个可用的slave。该模式提供了负载均衡和容错机制。
Mode1: Active-backup(激活-备份)策略:只有一个slave是激活的(active)。其他的slave只有在当前激活的slave故障后才会变为激活的(active)。
Mode6: balance-tlb模式,同时加上针对IPV4流量的接收负载均衡(receive load balance, rlb),而且不需要任何switch(交换机)的支持。
1. 创建bound网卡
vi /etc/syconfig/network-scripts/ifcfg-bound0
DEVICE=bond0
BOOTPROTO=no
BROADCAST=10.0.2.255
IPADDR=10.0.2.168
NETMASK=255.255.255.0
NETWORK=10.0.2.0
ONBOOT=yes
USERCTL=no
GATEWAY=10.0.2.2
2. 修改网卡eth0的配置
vim /etc/syconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
BOOTPROTO=none
MASTER=bond0
SLAVE=yes
ONBOOT=yes
3. 修改网卡eth1的配置
vim /etc/syconfig/network-scripts/ifcfg-eth1
DEVICE=eth1
BOOTPROTO=none
MASTER=bond0
SLAVE=yes
ONBOOT=yes
4.创建modprobe.conf, Redhat6与5不同, 没有/etc/modprobe.conf这个文件.
vim /etc/modprobe.d/net-bound0.conf
alias bond0 bonding
options bond0 miimon=100 mode=6 (100毫秒监视一次)
说明
如果是主备冗余模式,需将
options bond0 miimon=100 mode=0中
mode改为1
其它改为
options bond0 miimon=100 mode=1 primary=eth0
primary=eth0表示当前主网卡为eth0
5. 重启网络服务
service network restart
评论(0)