使用多块网卡虚拟成为一块网卡,具有相同的IP地址。这项技术其实在sun和cisco中已经存在,分别称为Trunking和etherchannel技术,在Linux中,这种技术称为bonding。
因为bonding在内核2.4.x中已经包含了,只需要在编译的时候把网络设备选项中的Bonding driver support选中就可以了。
然后,重新编译核心,重新起动计算机,执行如下命令:
ismod bonding
ifconfig eth0 down
ifconfig eth1 down
ifconfig bond0 ipaddress
ifenslave bond0 eth0
ifenslave bond0 eth1
现在两块网卡已经象一块一样工作了.这样可以提高集群节点间的数据传输.
你最好把这几句写成一个脚本,再由/etc/rc.d/rc.local调用,以便一开机就生效.
bonding对于服务器来是个比较好的选择,在没有千兆网卡时,用两三块100兆网卡作bonding,可大大提高服务器到交换机之间的带宽.但是需要在交换机上设置连接bonding网卡的两个口子映射为同一个虚拟接口。
或者通过更改脚本,重启机器来实现bonging。脚本实例如下:
[root@YNYXWEB01 network-scripts]# cat ifcfg-bond0
DEVICE=bond0
USERCTL=no
ONBOOT=yes
NETWORK=10.10.10.0
IPADDR=10.10.10.4
NETMASK=255.255.255.0
BROADCAST=10.10.10.255
GATEWAY=10.10.10.254
[root@YNYXWEB01 network-scripts]#
[root@YNYXWEB01 network-scripts]# cat ifcfg-eth0
DEVICE=eth0
USERCTL=no
ONBOOT=yes
MASTER=bond0
SLAVE=yes
BOOTPROTO=none
[root@YNYXWEB01 network-scripts]# cat ifcfg-eth1
DEVICE=eth1
USERCTL=no
ONBOOT=yes
MASTER=bond0
SLAVE=yes
BOOTPROTO=none
[root@YNYXWEB01 network-scripts]#
[root@YNYXWEB01 network-scripts]# cat /etc/modprobe.conf
alias bond0 bonding
options bond0 miimon=100 mode=1
alias eth0 bnx2
alias eth1 bnx2
alias scsi_hostadapter aacraid
alias scsi_hostadapter1 ata_piix
alias usb-controller ehci-hcd
alias usb-controller1 uhci-hcd
[root@YNYXWEB01 network-scripts]#
第三块网卡绑定的配置
[root@localhost network-scripts]# cat ifcfg-eth2
BOOTPROTO=none
DEVICE=eth2
ONBOOT=yes
MASTER=bond0
USERCTL=no
SLAVE=yes
一旦配置完机器的网络配置文件,应该重新启动网络以使修改生效。使用下面的命令来重新启动网络:/etc/rc.d/init.d/network restart。
阅读(883) | 评论(0) | 转发(0) |