redhat5.4 雙網路卡 bonding

wmlm發表於2011-09-30

剛做完一個DG環境,其中要求伺服器的兩塊網路卡做成一主一備,對網路卡繫結的操作過程如下

紅帽子5.4預設已經載入bonding驅動

登入主機 10.20.2.21

一.配置bond0
# cd /etc/sysconfig/network-scripts/
# cp ifcfg-bond0 bak_ifcfg-bond0
# vi /etc/sysconfig/network-scripts/ifcfg-bond0

[@more@]

將第一行改成 DEVICE=bond0
# cat ifcfg-bond0
DEVICE=bond0
BOOTPROTO=static
IPADDR=10.20.2.21
NETMASK=255.255.255.0
GATEWAY=10.20.2.254
ONBOOT=yes
TYPE=Ethernet

二 配置eth0
# cp ifcfg-eth0 bak_ifcfg-eth0
# cat ifcfg-eth0
DEVICE=eth0
BOOTPROTO=none
ONBOOT=yes
MASTER=bond0 #如果不寫,則必須做第五步
SLAVE=yes #如果不寫,則必須做第五步
USERCTL=yes

三 配置eth1
# cp ifcfg-eth1 bak_ifcfg-eth1
# cat ifcfg-eth1

DEVICE=eth1
BOOTPROTO=none
ONBOOT=yes
MASTER=bond0 #如果不寫,則必須做第五步
SLAVE=yes #如果不寫,則必須做第五步
USERCTL=yes

四 修改/etc/modprobe.conf 新增
alias bond0 bonding
options bond0 miimon=100 mode=1 primary=eth0

五 修改/etc/rc.d/rc.local 可選
ifenslave bond0 eth0 eth1

或者
/etc/rc.local
modprobe bonding miimon=100 mode=1

六 重啟作業系統後檢查
# cat /proc/net/bonding/bond0


登入備機
更換IP地址 重複以上操作

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

相關文章