<OL style=""LIST-STYLE-TYPE: " class='\" list-paddingleft-2'>
实验目的双网卡绑定,解决负载均衡和主备自动切换。
Linux操作系统6.5,bond0,eth1,eth2.
bond0 10.10.9.126 eth1无 eth2无。
配置如下:
cd /etc/sysconfig/network-scripts/ /进入网络配置文件中
cp ifcfg-eth0 ifcfg-bond0 /复制ifcfg-eth0 改名为ifcfg-bond0 原来的ifcfg-eth0继续存在
配置ifcfg-bond0
DEVICE=bond0
BOOTPROTO=noneONBOOT=yesIPADDR=10.10.9.126DNS=202.106.196.115NETMASK=255.255.255.0GATEWAY=10.10.9.3TYPE=Ethernet配置ifcfg-eth1
TYPE=Ethernet
DEVICE=eth1BOOTPROTO=staticONBOOT=yes配置ifcfg-eth2
DEVICE=eth2
BOOTPROTO=staticONBOOT=yes配置vi /etc/rc.d/rc.local
配置etc/moprobe.conf
alias eth2 e1000
alias eth1 e1000alias bond0 bondingoption bond0 miimon=100 mode=0 /mode 参数有0,1,2,30=负载均衡方式,两块网卡都工作
1=只有一块网卡工作,另一块做备份
保存结束。重启网卡.OK