Network - Setup Teamed Interfaces

From UNIX Systems Administration
Revision as of 14:52, 9 April 2022 by Michael Kohler (talk | contribs) (Created page with "== RHEL 7+ == # Create the team interface #: <tt>'''# nmcli connection add type team con-name team0 ifname team0 team.runner <activebackup | lacp | loadbalance | roundrobin>''...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

RHEL 7+

  1. Create the team interface
    # nmcli connection add type team con-name team0 ifname team0 team.runner <activebackup | lacp | loadbalance | roundrobin>
  2. Assign the port interfaces to the team.
    # nmcli connection add type ethernet slave-type team con-name team0-port0 ifname <interface1> master team0
    # nmcli connection add type ethernet slave-type team con-name team0-port1 ifname <interface2> master team0
  3. Statically assign network information
    # nmcli connection modify team0 ipv4.addresses <IP address>/<CIDR subnet mask>
    # nmcli connection modify team0 ipv4.gateway <gateway IP address>
    # nmcli connection modify team0 ipv4.dns <DNS IP address>
    # nmcli connection modify team0 ipv4.dns-search <search domain>
    # nmcli connection modify team0 ipv4.method manual
    # nmcli connection modify teamo connection.autoconnect yes

Further Reading