redhat 6.3 雙網路卡繫結

lovehewenyu發表於2014-03-06

1.檢驗系統是否支援bonding

[root@rac1 ~]# cat /etc/issue
Red Hat Enterprise Linux Server release 6.3 (Santiago)
Kernel \r on an \m

[root@rac1 ~]# cat /boot/config-2.6.32-279.el6.x86_64 | grep -i bonding
CONFIG_BONDING=m

#CONFIG_BONDING=m 表示支援bonding

2.備份並修改網路卡配置
cp ifcfg-eth0 /home/oracle/ifcfg-eth0.bak

vi ifcfg-bond0
DEVICE=bond0
BOOTPROTO=none
IPADDR=192.168.0.21
NETMASK=255.255.255.0
GATEWAY=192.168.0.1
USERCTL=no
>

vi ifcfg-eth0
DEVICE="eth0"
BOOTPROTO="none"
ONBOOT="yes"
MASTER=bond0
SLAVE=yes
HWADDR="08:00:27:94:5F:72"

vi ifcfg-eth1
DEVICE="eth1"
BOOTPROTO="none"
ONBOOT="yes"
MASTER=bond0
SLAVE=yes
HWADDR="08:00:27:CE:CE:FA"

3.配置繫結模型
vi /etc/modprobe.d/dist.conf 尾部新增
alias bond0 bonding
options bond0 mode=1 miimon=100
注:mode=1主備模式,mode=0負載均衡模式需要交換機支援

4.配置網路卡啟動順序
vi /etc/rc.d/rc.local
ifenslave bond0 eth0 eth1
touch /var/lock/subsys/local

5.關閉NetworkManager服務
service NetworkManager stop
chkconfig NetworkManager off

6.重啟網路卡
service network restart

7.重啟伺服器
reboot

8.檢視介面配置
ifconfig
網路卡的MAC地址是否與bond的一致,一致則成功

9.撥掉單根網線檢視bonding是否真正生效

 

 


 

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

相關文章