您好,登錄后才能下訂單哦!
今天做的雙網卡實驗是實現高可用性網絡的一部分,關于雙網卡的使用有兩種模式:主備模式和負載均衡模式。從字面意思上我們就能明白雙網卡的工作方式。
雙網卡驅動模塊bonding 網卡別名bond0
下面是小編實現雙網卡的基本思路(主備模式):
1、 找出網卡綁定所需要的模塊bonding 并在/etc/modprobe.conf文件中編輯虛擬網卡bond0與模塊bonding的依賴關系以及模式選項的選擇配置
2、 在/etc/sysconfig/network-scripts/目錄中產生一個文件ifcfg-bond0并編輯該文件
3、 在開機啟動腳本中(/etc/rc.d/rc.local)聲明虛擬網卡bond0 對網卡eth0 eth2的綁定
4、 加載模塊 modprobe bonding
[root@rhel5 network-scripts]# vim /etc/modprobe.conf
//100毫秒檢測一次 mode=1表示主備模式,mode=0表示負載均很模式
[root@rhel5 ~]# vim /etc/sysconfig/network-scripts/ifcfg-eth0
//把eth0,eth2變為自動獲得地址模式,開機自動檢測
[root@rhel5 ~]# vim /etc/sysconfig/network-scripts/ifcfg-eth2
[root@rhel5 ~]# lsmod |grep bond*
[root@rhel5 network-scripts]# cp ifcfg-eth0 ifcfg-bond0
[root@rhel5 network-scripts]# vim ifcfg-bond0
//bond0配成靜態地址,開機自動檢測
[root@rhel5 net]# vim /etc/rc.d/rc.local
//在開機啟動腳本中聲明虛擬網卡bond0對網卡eth0和eth2的綁定
[root@rhel5 ~]# modprobe bonding
//加載bonding模塊
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。