EtherChannel Flashcards

1
Q

Why we have EtherChannel

A

End hosts do not constantly send traffic over the network
Most of the time their network connection is sitting idle

Because of this you can connect less uplinks to each higher layer than the number of hosts you have and still maintain acceptable network performance

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

Oversubscription Rule-of-Thumb

A

20:1 ratio from access layer to distribution layer
If you had 20 PCs connected with 1Gbps NICs at the access layer, you would require a single 1Gbps uplink to the distribution layer

4:1 ratio from distribution to core layer links

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

EtherChannel Overview

A

AKA: Port Channel | LAG (Link Aggregation) | Link Bundle

Groups multiple physical interfaces into a single logical interface
Spanning Tree sees EtherChannel as a single interface, so it does not block any ports
We can now get the full 20 Gbps bandwidth (regarding issue above)

Load Balancing & Redundancy:
Traffic is load balanced across all links in the EtherChannel
If an interface goes down its traffic will failover to the remaining links

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

NIC Teaming

A

AKA: Bonding | NIC Balancing | Link Aggregation

Combines multiple NICs into a single logical interface

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

EtherChannel Load Balancing

A

Packets from the same flow are always load balanced on the same interface

  • Round robin load balancing is not used here
  • Could cause packets to arrive out of order

Any single flow receives the bandwidth of a single link in the port channel as a maximum

A port channel can be thought of as a multi-lane motorway
-Cars stay in a single lane, but because there are multiple lanes, the overall traffic gets there quicker

EtherChannel provides redundancy & load balancing. If a link fails, the flows will be load balanced to the remaining links

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

EtherChannel Protocols: LACP

A

Link Aggregation Control Protocol:
Open standard
Switches on both sides negotiate the port channel creation/maintenance
This is the preferred method

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

EtherChannel Protocols: PAgP

A

Port Aggregation Protocol:
Cisco proprietary
Switches on both sides negotiate the port channel creation/maintenance

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

Static EtherChannel

A

Switches do not negotiate creation/maintenance
Settings must still match on both sides for port channel to come up

Use if LACP is not supported on both sides

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

EtherChannel Configuration Requirements

A

All protocols are configured with:
Channel-group

Both sides must have matching configuration:
Speed/duplex
Access/trunk mode
Native & allowed VLANs on trunks
Access VLAN on access ports
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

LACP Configuration

A

LACP interfaces can be set as Active or Passive

If SW1’s interfaces are Active, & SW2’s are Passive:
-Port channel will come up

If both sides are passive:
-Port channel will NOT come up

If both sides are active:

  • Port channel will come up
  • This is recommended so you don’t have to think about which side is which
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Command: Configure LACP Active on interfaces F0/23 and F0/24

A

interface range f0/23 - 24
channel-group 1 mode active

interface port-channel 1
switchport mode trunk

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

PAgP Configuration

A

PAgP interfaces can be set as Desirable or Auto

If one side is Desirable, and the other Auto
-Port channel will come up

If both sides are auto
-Port channel will NOT come up

If both sides are desirable

  • Port channel will come up
  • Recommended
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Command: Configure PAgP Desirable on interfaces F0/23 and F0/24

A

interface range f0/23 - 24
channel-group 1 mode desirable

interface port-channel 1
switchport mode trunk

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

Command: Configure static EtherChannel on interfaces F0/23 and F0/24

A

interface range f0/23 - 24
channel-group 1 mode on

interface port-channel 1
switchport mode trunk
switchport trunk native vlan 199 —> or whatever the Native VLAN is for both sides

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

Multi-Chassis EtherChannel

A

Cisco supports Multi-chassis EtherChannel tech on some switches

These switches support a shared EtherChannel from different switches

The switches must be configured with matching settings

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

Multi-Chassis EtherChannel Technologies

A

StackWise
Selected Catalyst switch platforms (3750, 3850, & 9000 families)

VSS (Virtual Switching System)
Selected Catalyst switch platforms (4500 & 6500 families)

vPC (Virtual Port Channel)
On the Nexus switch family

17
Q

Command: Layer 3 EtherChannel Configuration

A

Interface range GigabitEthernet 1/0/1 - 2
No switchport –> The main difference is this command
Channel-group 1 mode | active | auto | desirable | on | passive –> Same options as layer 2

Interface port-channel 1
Ip address 192.168.0.1 255.255.255.252
No shutdown