Chinaunix首页 | 论坛 | 博客
  • 博客访问: 186342
  • 博文数量: 51
  • 博客积分: 689
  • 博客等级: 上士
  • 技术积分: 525
  • 用 户 组: 普通用户
  • 注册时间: 2010-03-03 13:05
文章分类

全部博文(51)

文章存档

2014年(1)

2013年(2)

2012年(7)

2011年(11)

2010年(30)

分类:

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

阅读(1196) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~