Configuring Network Teaming on RHEL 7
Configuring Network Teaming on RHEL 7
RHEL 7
Using NetworkManager
Create a team interface:
nmcli connection add type team con-name team0 ifname team0 team.config \ |
Assign the port interfaces to the team:
nmcli con add type ethernet slave-type team con-name team0-port1 ifname enp7s0 master team0 |
Configure the IPv4 settings:
nmcli con modify team0 ipv4.addresses '192.0.2.1/24' ipv4.gateway '192.0.2.254' ipv4.dns '192.0.2.253' ipv4.dns-search 'example.com' ipv4.method manual |
Enables all ports automatically when the bond is enabled:
nmcli con modify team0 connection.autoconnect-slaves 1 |
Activate the connection:
nmcli con up team0 |
Display the status of the team:
teamdctl team0 state |
All articles on this blog are licensed under CC BY-NC-SA 4.0 unless otherwise stated.

