您好,登錄后才能下訂單哦!
Red Hat Enterprise Linux 允許管理員使用bonding 內核模塊和稱為通道綁定接口的特殊網絡接口將多個網絡接口綁定到一個通道。根據選擇的綁定模式 , 通道綁定使兩個或更多個網絡接口作為一個網絡接口 , 從而增加帶寬和 / 提供冗余性
1.利用 nmcli 命令管理 bond
nm-connection-editor
刪除所有網絡接口
nmcli connection add type bond con-name bond0 ifname bond0 mode active-backup ip4 172.25.254.199/24
ifconfig
watch -n 1 cat /proc/net/bonding/bond0
nmcli connection add type bond-slave con-name eth0 ifname eth0 master bond0
nmcli connection add type bond-slave con-name eth2 ifname eth2 master bond0
ifconfig eth0 down
2.選擇 Linux 以太網綁定模式
模式 0 ( 平衡輪循 balance-rr) - 輪循策略 , 所有接口都使用采用輪循方式在所有 Slave 中傳輸封包 ; 任何Slave 都可以接收
模式 1 ( 主動備份 active-backup ) - 容錯。一次只能使用一個Slave 接口 , 但是如果該接口出現故障 , 另一個Slave 將 接替它
模式 3 ( 廣播 broadcast) - 容錯。所有封包都通過所有Slave 接口廣播
3.主動備份配置示例
3-1 建立綁定接口 bond0 配置文件 :
/etc/sysconfig/network-scripts/ifcfg-bond0
– BOOTPROTO="none"
– IPADDR="10.1.1.250"
– PREFIX=”24”
– ONBOOT="yes"
– BONDING_OPTS=”mode=1 miimon=50”
3-2 建立 Slave 接口 eth0 配置文件 :
/etc/sysconfig/network-scripts/ifcfg-eth0
– DEVICE="eth0" ####硬件網卡名
– BOOTPROTO="none"
– ONBOOT="yes"
– MASTER="bond0"
– SLAVE="yes“
3-3 建立 Slave 接口 eth2 配置文件 :
/etc/sysconfig/network-scripts/ifcfg-eth2
– DEVICE="eth2"
– BOOTPROTO="none"
– ONBOOT="yes"
– MASTER="bond0"
– SLAVE="yes“
3-4 配置系統加載 binding 模塊 :
/etc/modprobe.d/bonding.conf
– alias bond0 bonding
ifenslave bond0 eth0 eth2
systemctl stop NetworkManager
systemctl restart network
查看 bonding 狀態
– cat /proc/net/bonding/bond0
二。學習配置 team 網絡接口
1.Team 接口
Team 和 bond0 功能類似
Team 不需要手動加載相應內核模塊
Team 有更強的拓展性
– 支持 8 快網卡
2.Team 的種類
broadcast 廣播容錯
roundrobin 輪詢
activebackup 主備
loadbalance 負載均衡
3.通過 nmcli 設定 team
nmcli connection add type team con-name team0 ifname team0 config '{"runner"{"name":"loadbalance"}}' ip4 172.25.254.198/24
nmcli connection add con-name eth0 ifname eth0 type team-slave master team0
nmcli connection add con-name eth2 ifname eth2 type team-slave master team0
4.監控team0,并測試
teamctl team0 stat
ifconfig eth0 down
ifconfig eth0 up
ifconfig eth2 down
ifconfig eth2 up
三。學習配置網絡橋接
1.網絡橋接
網絡橋接用網絡橋實現共享上網主機和客戶機除了利用軟件外,還可以用系統自帶的網絡橋建立連接用雙網卡的機器做主機
2.網絡橋接的配置
vim /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0 ###設備名,可能不同
ONBOOT=yes
BOOTPROTO=none
BRIDGE=br0 ###重點,必須說明
vim /etc/sysconfig/network-scripts/ifcfg-br0
DEVICE=eth0
ONBOOT=yes
BOOTPROTO=none
TYPE=Bridge ###重點,必須說明
IPADDR=172.25.254.198
3.網絡橋接的管理命令
brctl
### 橋接管理命令
– show ### 顯示
– addbr ### 添加網橋
– delbr ### 刪除網橋
– addif ### 添加網橋連接
– delif ### 刪除網橋連接
卸載橋接接口過程
brctl show
brctl delif br0 eth0
brctl show
brctl delbr br0
ifconfig br0 down
brctl show
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。