一、team工作模式:
1.roundrobin模式也称为轮询模式,相当于 bond 中的 mode 0.
注意:在使用roundrobin模式必须要在交换机上做以太通道,不然会出现网络无法连通。
2.activebackup模式 主备模式, 相当于 bond 中的 mode 1.
在交换机上不需要做链路聚合配置,一般使用此模式。
二、配置
1.创建team接口
#nmcli con add type team con-name team0 ifname team0 config '{"runner":{"name": "activebackup"}}'
2.给接口配置IP地址、网关、dns
#nmcli con modify team0 ipv4.address '192.168.1.10/24' ipv4.gateway '192.168.1.1' ipv4.dns '202.106.0.20'
3.设置接口模式为手动模式,取消DHCP
#nmcli con modify team0 ipv4.method manual
4.将物理网卡添加到team中
#nmcli con add con-name team0-em1 type team-slave ifname em1 master team0
#nmcli con add con-name team0-em2 type team-slave ifname em2 master team0
5.激活team0等网卡
#nmcli con up team0
#nmcli con up team0-em1
#nmcli con up team0-em2
6.查看team0 状态
#teamdctl team0 state