多塊網路卡繫結IP在linux下

lfree發表於2006-05-11

昨天要使用多塊網路卡繫結IP在linux下,,搞了一個下午解決.

使用是rhel4 U3版本.參考核心原始碼的bonding.txt文件.


方法如下:

1.備份/etc/sysconfig/network-scripts目錄下的ifcfg開頭的檔案.

2.修改ifcfg-eth0,1,2,3檔案如下:

DEVICE=eth0
BOOTPROTO=none
HWADDR=xx:xx:xx:xx:xx:xx //mac地址..
ONBOOT=yes
TYPE=Ethernet
MASTER=bond0
SLAVE=yes
USERCTL=no

注意MASTERifcfg-eth2,3要改為bond1

3.建立ifcfg-bond0,1檔案,如下:

DEVICE=bond0
IPADDR=192.168.10.22
NETMASK=255.255.255.0
NETWORK=192.168.10.0
BROADCAST=192.168.10.255
ONBOOT=yes
BOOTPROTO=none
USERCTL=no

DEVICE=bond1
IPADDR=172.16.0.2
NETMASK=255.255.0.0
NETWORK=172.16.0.0
BROADCAST=172.16.0.255
ONBOOT=yes
BOOTPROTO=none
USERCTL=no

4.修改/etc/modprobe.conf檔案,加入:

alias bond0 bonding
options bond0 miimon=100 max_bonds=2

注意一定要加入max_bonds引數,否則僅僅能實現繫結一塊.自己在這裡浪費了時間.

5.重啟網路;:

/etc/rc.d/init.d/netword stop

rmmod bonding

/etc/rc.d/init.d/netword start

ifconfig 看看是否實現,ping檢檢視看.

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267265/viewspace-82849/,如需轉載,請註明出處,否則將追究法律責任。

相關文章