2.4 EtherChannel Flashcards
Configure and verify (Layer 2/Layer 3) EtherChannel (LACP). (28 cards)
What is an EtherChannel?
A logical link that aggregates multiple physical links into one.
EtherChannel combines multiple physical links into one logical interface, increasing bandwidth and improving redundancy by distributing traffic across links.
What are three advantages of implementing EtherChannels?
- Adding redundancy to links
- Balancing load among ports
- Achieving higher bandwidth
EtherChannels enhance network performance by allowing multiple links to operate as a single logical link, providing redundancy and increased throughput.
What command is utilized to configure an interface for EtherChannel?
channel-group 1 mode on
The channel-group command is essential for establishing an EtherChannel configuration on a switch.
List three configurations that must match for a switch port to join a Layer 2 EtherChannel.
- Speed
- Duplex
- VLAN settings
For a switch port to participate in a Layer 2 EtherChannel, certain parameters must be identical, including speed and duplex settings, as well as specific VLAN configurations.
What additional requirements are required for a port in a Layer 3 EtherChannel?
- Speed
- No switchport
- Duplex
In addition to Layer 2 requirements, Layer 3 EtherChannels necessitate that ports are configured with specific settings, including the ‘no switchport’ command.
How do you configure a Layer 3 EtherChannel on a switch?
- Use the command interface range g0/1 - 2 to select interfaces.
- Configure each interface with no switchport to enable Layer 3.
- Add interfaces to the EtherChannel with channel-group mode active or passive for LACP.
- Verify the configuration with show etherchannel summary to ensure the EtherChannel is correctly formed.
Which routing protocols can be used with a Layer 3 EtherChannel?
- OSPF (Open Shortest Path First)
- EIGRP (Enhanced Interior Gateway Routing Protocol)
- BGP (Border Gateway Protocol)
OSPF: A link-state protocol that finds the best paths in large networks.
EIGRP: A Cisco distance-vector protocol with fast convergence and efficient bandwidth use.
BGP: A path-vector protocol for exchanging routing info between autonomous systems.
Fill in the blank:
To configure a Layer 2 EtherChannel, use the command ‘channel-group <number> mode _______’.
on
Setting the mode to on forces the interface to aggregate without using any negotiation protocol like PAgP or LACP.
Which command shows EtherChannel status on a switch?
show etherchannel
The command is used to display the current status and configuration of EtherChannels on a switch.
Which two protocols configure EtherChannel?
- PAGP
- LACP
PAgP (Port Aggregation Protocol): Cisco proprietary protocol for automatic link aggregation.
LACP (Link Aggregation Control Protocol): IEEE standard for dynamic link bundling.
What is the primary difference between PAgP and LACP?
LACP supports more links (up to 16), while PAgP supports up to 8.
Both protocols dynamically negotiate link aggregation, but LACP is an open standard, while PAgP is vendor-specific.
What are key characteristics of the LACP?
- It is configured using the ‘channel-group’ command.
- It is an open standard.
- It is used for an EtherChannel.
LACP is defined by the IEEE 802.3ad standard and enables dynamic link aggregation. It ensures link compatibility and automatically manages bundled links in an EtherChannel. Unlike PAgP, which is Cisco proprietary, LACP is vendor-neutral.
Fill in the blank:
The max number of active ports in an EtherChannel is _______.
8
An EtherChannel can actively use up to 8 ports for LACP, while it can accommodate a total of 16 ports for redundancy. PAgP supports up to 8 ports in total.
True or False:
src-dst-port is a load balancing method in EtherChannel.
True
The ‘src-dst-port’ method in EtherChannel uses both source and destination TCP or UDP ports for load balancing decisions.
What are the three synonymous terms used for EtherChannel?
- EtherChannel
- PortChannel
- Channel-group
These terms are often used interchangeably to refer to the logical aggregation of multiple physical links into a single interface for increased bandwidth and redundancy. PortChannel and Channel-group are commonly seen in Cisco configurations.
True or False:
The ‘on’ keyword in EtherChannel configuration uses PAgP or LACP.
False
When configuring EtherChannel with the channel-group command, using the ‘on’ mode means that EtherChannel is forced to be active without using any negotiation protocol such as PAgP or LACP.
What must be true for PAgP to work between two switches?
At least one side must use the desirable mode.
In PAgP (Port Aggregation Protocol), for the EtherChannel to form, at least one of the switches must be set to desirable mode, where it actively attempts to initiate the aggregation. If both switches are set to auto mode, neither will actively negotiate, and the channel will not form.
What command is used to configure LACP on a switch?
channel-group <number> mode active or passive.
LACP (Link Aggregation Control Protocol) can be configured with the channel-group command in active mode (initiates aggregation) or passive mode (responds to requests).
What does ‘P’ mean in the show etherchannel summary output?
The port is bundled (working) in the channel.
The ‘P’ status code indicates that the port is successfully bundled into the EtherChannel and is actively participating in traffic forwarding.
What does the output ‘Protocol: -‘ indicate in the show etherchannel command?
The channel does not use LACP or PAgP.
It means the EtherChannel was manually configured without a negotiation protocol like LACP or PAgP. In this case, the EtherChannel is operating in static mode, where links are aggregated without dynamic protocol management.
What is the default STP cost for a 1 Gbps EtherChannel?
4
The STP cost of 4 is the default value for a 1 Gbps link in an EtherChannel, as compared to the default cost of 19 for a single 1 Gbps link in standard STP.
What happens when there is a native VLAN mismatch in an EtherChannel?
The port is suspended and removed from the EtherChannel.
For example, if SW1’s G1/0/21 port has a native VLAN mismatch, it will be suspended and removed from the EtherChannel, impacting network connectivity.
What is the purpose of EtherChannel load distribution?
To select the physical port for forwarding frames.
EtherChannel load distribution selects the physical link for each frame based on header fields (e.g., MAC or IP addresses) and the configured method (e.g., src-dst-mac, src-dst-ip), ensuring balanced traffic across the links.
List the common EtherChannel load distribution methods.
- src-mac
- dst-mac
- src-dst-mac
- src-ip
- dst-ip
- src-dst-ip
- src-port
- dst-port
- src-dst-port
Different switches may support different methods based on their model and software version.