歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux綜合 >> Linux安裝

雙網卡綁定

 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需要加載驅動。 


Copyright © Linux教程網 All Rights Reserved