全部博文(51)
分类:
2010-08-03 14:39:00
新建一个虚拟网卡bond0,可以复制eth0的,复制后要修改内容.
复制 (cp –a /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 | grep bonding命令),如果没有,那就加载它,使用下面的命令;
modprobe bonding
重新起动网络
service netowrk restart
6、使用ifconfig命令查看结果,cat /proc/net/bonding/bond0