环境:eth0,eth1绑定为bond0,绑定ip为192.168.1.110。
操作:
1:bondind模块配置。
在/etc/modprobe.conf中添加bond模块内容:
1
2
3
|
#vi /etc/modprobe.conf
alias
bond0 bonding
options bond0 miimon=100 mode=0
|
mode0表示负载均衡模式,mode1表示主备模式,默认eth0为主工作网卡
2:创建网卡ifcfg-bond0。
1
2
3
4
5
6
7
8
|
#cd /etc/sysconfig/network-scripts/
#vi ifcfg-bond0
DEVICE=bond0
IPADDR=192.168.1.110
NETMASK=255.255.255.0
ONBOOT=
yes
BOOTPROTO=static
USERCTL=no
|
3:配置网卡eth0,ech1。
echo0:
1
2
3
4
5
6
7
|
vi
ifcfg-eth0
DEVICE=eth0
BOOTPROTO=static
ONBOOT=
yes
MASTER=bond0
SLAVE=
yes
USERCTL=
yes
|
1
2
3
4
5
6
7
|
#vi ifcfg-eth1
DEVICE=eth1
BOOTPROTO=static
ONBOOT=
yes
MASTER=bond0
SLAVE=
yes
USERCTL=
yes
|
把两张网卡的MASTER都指向bond0。
4:重启网络,使配置生效。
#service network restart
本文转自 icenycmh 51CTO博客,原文链接:http://blog.51cto.com/icenycmh/1672872,如需转载请自行联系原作者