Network Teaming or Bonding to Configure Aggregated Network Links Flashcards

1
Q

Adding a team

A

man nmcli-examples
/Example 7

man teamd.conf

nmcli con add type team con-name stlteam0 ifname stlteam0 config ‘{“runner”: {“name”: “activebackup”}}’

nmcli con mod stlteam0 ipv4.addresses ‘10.1.152.34/24’ ipv4.gateway 10.1.152.1 ipv4.dns 10.1.152.3 connection.autoconnect yes

nmcli con mod stlteam0 +ipv4.dns 10.1.152.5

nmcli con mod stlteam0 ipv4.method manual

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Checking the status on a teamed interface

A

teamdctl stlteam0 state

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Adding ports to the configuration

A

nmcli con add type team-slave con-name stlteam0-port1 ifname enp0s6 master stlteam0

nmcli con add type team-slave con-name stlteam0-port2 ifname enp0s7 master stlteam0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Bring up the interfaces and the team

A

nmcli con up stlteam0-port1
nmcli con up stlteam0-port2
nmcli con up stlteam0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly