Linux下双网卡绑定,实现网卡冗余

编辑虚拟网络接口配置文件,指定网卡IP
1. change the /etc/sysconfig/network-scripts/ifcfg-bond0 configuration.
# cat  ifcfg-bond0
DEVICE=bond0
BOOTPROTO=static
IPADDR=172.24.80.168
NETMASK=255.255.255.0
BROADCAST=172.24.80.250
ONBOOT=yes
TYPE=Ethernet
# 不要指定单个网卡的IP 地址、子网掩码或网卡 ID。将上述信息指定到虚拟适配器(bonding)中即可。
2. change the /etc/sysconfig/network-script/ifcfg-eth0 configuration
#cat ifcfg-eth0
DEVICE=eth0
ONBOOT=yes
BOOTPROTO=none
MASTER=bond0
SLAVE=yes
# 更改另一个虚拟网卡文件eth1,同上eth0配置.

3. append the /etc/modules.conf configuration
#cat /etc/modules.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会认为链路没有问题而继续使用.
4.append the /etc/rc.d/rc.local configuration
# vi /etc/rc.d/rc.local
加入两行
ifenslave bond0 eth0 eth1
route add -net 172.31.3.254 netmask 255.255.255.0 bond0
到这时已经配置完毕重新启动机器.

你可能感兴趣的:(linux,绑定,网卡,冗余,休闲)