当前位置: > Linux教程 > Linux学习 >

双网卡绑定

时间:2017-02-17 19:11来源:linux.it.net.cn 作者:IT
 1.新建/etc/sysconfig/network-scripts/ifcfg-bond0文件
DEVICE=bond0
ONBOOT=yes
BOOTPROTO=none
IPADDR=10.184.190.145
NETMASK=255.255.255.128
GATEWAY=10.184.190.254
USERCTL=no

2.更改/etc/sysconfig/network-scripts/ifcfg-eth0网卡属性
DEVICE=eth0
ONBOOT=yes
BOOTPROTO=none
MASTER=bond0
USERCTL=no

3.更改/etc/sysconfig/network-scripts/ifcfg-eth1网卡的属性
DEVICE=eth1
ONBOOT=yes
BOOTPROTO=none
MASTER=bond0
USERCTL=no

4.编辑/etc/modprobe.conf文件,加入以下内容
alias bond0 bonding
options bond0 miimon=100 mode=0

5.加入/etc/rc.d/rc.local启动项
ifenslave bond0 eth0 eth1

6.启动网卡
ifconfig bond0 10.184.190.145 up
ifenslave bond0 eth0 eth1

注:完成以上步骤一定要重启计算机,由于bonding需要加载驱动。 


(责任编辑:IT)
------分隔线----------------------------