Centos5.4双网卡冗余负载均衡

1、新建一个虚拟网卡bond0,可以复制eth0的,复制后要修改内容.
复制 (cp �Ca /etc/sysconfig/network-scripts/ifcfg-eth0 ifcfg-bond0)修改内容为如下:
DEVICE=bond0
BOOTPROTO=none
IPADDR=192.168.100.100
NETMASK=255.255.255.0
NETWORK=192.168.100.0
BROADCAST=192.168.100.255
ONBOOT=yes
 
2、修改eth0 和eht1这2个网卡配置文件文件在/etc/sysconfig/network-scripts/目录下面:
DEVICE=eth0
BOOTPROTO=none
MASTER=bond0
SLAVE=yes
ONBOOT=yes
 
3、 eth1 也是同样的修改.如下:
DEVICE=eth1
BOOTPROTO=none
MASTER=bond0
SLAVE=yes
ONBOOT=yes
 
 
4.修改/etc/modprobe.conf,添加内容如下:
alias bond0 bonding
options bond0 miimon=100 mode=0
注意:mode可以为0, 1,    0为冗余负载均衡,1为失效保护,
 
5、测试之前,先看看有没有加载bonding内核模块(使用lsmod命令),如果没有,那就加载它,使用下面的命令;
modprobe bonding
重新起动网络 
service netowrk restart
 
6、使用ifconfig命令查看结果,如果你能看到如下图类似的输出就没什么问题了:
3

你可能感兴趣的:(centos,负载,网卡,冗余,休闲)