Ben's notes

Linux, Unix, network, radio...

User Tools

Site Tools


rhel7_teaming_instead_of_bonding

This is an old revision of the document!


RHEL7 teaming instead of bonding

  • Configure bonding:
    # Create team device
    nmcli c add type team con-name Team0 ifname team0 config '{"runner": {"name": "lacp"}}'
    
    # Add NICs to team
    nmcli c add type team-slave con-name Team0-port1 ifname eno1     master Team0
    nmcli c add type team-slave con-name Team0-port2 ifname enp2s0f0 master Team0
    nmcli c add type team-slave con-name Team0-port3 ifname enp2s0f1 master Team0
    nmcli c add type team-slave con-name Team0-port4 ifname enp4s0   master Team0
    
    # Bring up team
    nmcli c up Team0-port1
    nmcli c up Team0-port2
    nmcli c up Team0-port3
    nmcli c up Team0-port4
    
    # Verify team0 is up, list ports
    ip link
    teamnl team0 ports
    teamdctl team0 state
    
    # Create VLAN devices
    nmcli con add type vlan con-name VLAN10 dev  team0 id 10
    nmcli con add type vlan con-name VLAN50 dev  team0 id 50
    nmcli con add type vlan con-name VLAN100 dev team0 id 100
    nmcli con add type vlan con-name VLAN110 dev team0 id 110
    
    
rhel7_teaming_instead_of_bonding.1426529075.txt.gz · Last modified: 2015/03/16 18:04 by admin