#####team######
1.
team也是鍊路聚合的一種方式。最多支援8塊網卡。
Team 接口:
Team 和 bond0 功能類似
Team 不需要手動加載相應核心子產品
Team 有更強的拓展性
– 支援 8 快網卡
支援模式:
broadcast 廣播容錯
roundrobin 輪詢
activebackup 主備
loadbalance 負載均衡
2.
配置
nmcli connection add con-name team0ifname team0 type team config'{"runner":{"name":"activebackup"}}' ip4172.25.254.144/24
####添加team 運作模式為主備
nmcli connection add con-name eth0 ifname eth0 type team-slave masterteam0 ####給team添加網卡eth0
nmcli connection add con-name eth1 ifname eth1 type team-slave masterteam0 ###給team添加網卡eth1
3
測試
watch -n 1 teamdctl team0 stat ###監視team0的運作狀态
ifconfig eth0 down ####控制eth0挂掉
ifconfig eth0 up ####控制eth0恢複
ifconfig eth1 down ####控制eth1挂掉
ifconfig eth1 up ####控制eth1恢複
做之前必須要有兩塊及以上網卡。重置虛拟機.用指令nm-connection-editor删除eth0原有IP。
第一個界面
1 ifconfig ####檢視網絡
2 nmcli connection add con-name team0 ifname team0 type team config'{"runner":{"name":"activebackup"}}' ip4172.25.254.144/24
3 nmcli connection add con-name eth0 ifname eth0 type team-slave masterteam0 ####給team添加網卡eth0
4 nmcli connection add con-name eth1 ifname eth1 type team-slave masterteam0 ###給team添加網卡eth1
5 ifconfig
6 watch -n 1 teamdctl team0 stat
第二個界面
ping 172.25.254.44
第三個界面
eth0 挂掉 eth1運作;eth0恢複,eth1運作;eth1挂掉,才會換eth0運作
兩張都挂掉,ping不通
######删除team0######
13 nmcli connection delete team0
14 nmcli connection delete eth0
15 nmcli connection delete eth1
16 nmcli connection show