EtherChannel Technology (Redundancy Connection in A Network)
EtherChannel Technology (Redundancy Connection in A Network)
Network engineers love redundancy in a network; it allows for lines to fail without
affecting the connection to the internet for end users. What’s even better is that using
EtherChannel technologies, we can make redundant links and use them to increase the
speed to local servers on site.
1. Same Duplex
2. Same Speed
3. Same VLAN Configuration (Ex. native VLAN and allowed VLAN should be same)
4. Switch Port Modes should be the same (Access or Trunk Mode)
Link Aggregation Control Protocol (LACP): is an IEEE 802.3ad standard where we can
combine up to 8 ports that can be active and another 8 ports that can be in standby
mode.
Page 1 of 7
Why Do We Need EtherChannel?
Below are the advantages and benefits of implementing EtherChannel on our networks:
Increased Bandwidth
In our network planning, we always take into account the cost. For example, our
company needs more than 100 Mbps bandwidth, but our hardware only supports Fast
Ethernet (100 Mbps). In this case, we can opt not to upgrade the hardware by
implementing EtherChannel.
Redundancy
Since more than one physical connection is combined into one logical connection,
EtherChannel enables more available links in instances where one or more links go
down.
Load Balancing
With load balancing, we are able to balance the traffic load across the links and
improves the efficient use of bandwidth.
EtherChannel Terminologies
Spanning Tree Protocol: Is a data link layer protocol that prevents loops in
networks with redundant links.
Page 2 of 7
Port Aggregation Protocol (PAGP)
NOTE: For an ether channel to form, the modes must be compatible on either side of
the links. The table below shows different mode combinations that can form ether
channel links.
Page 3 of 7
Link Aggregation Control Protocol (LACP)
Link Aggregation Control Protocol (LACP) is like the PAGP protocol, but it is an open
standard protocol and facilitates ether channels’ configuration in multi-vendor
environments. Not limited to cisco switches only; it allows both active links and standby
links.
The table below shows various mode combinations that can form ether channel links
with LACP.
NOTE: Active links are the ether channel links currently transmitting the traffic. When
one of the currently active links goes down, the Standby links become active and takes
over.
Page 4 of 7
--| Configuration |--
SW-01 Configuration
SW-01>
SW-01>en
SW-01#configure terminal
SW-01(config)#interface range gigabitEthernet 0/1-2
SW-01(config-if-range)#switchport mode trunk
SW-01(config-if-range)#channel-protocol pagp
SW-01(config-if-range)#channel-group 1 mode desirable
SW-01(config-if-range)#exit
SW-01(config)#exit
SW-01#wr
Building configuration...
[OK]
SW-01#
Page 5 of 7
SW-02 Configuration
SW-01>
SW-01>en
SW-01#configure terminal
SW-01(config)#interface range gigabitEthernet 0/1-2
SW-01(config-if-range)#switchport mode trunk
SW-01(config-if-range)#channel-protocol pagp
SW-02(config-if-range)#channel-group 1 mode auto
SW-01(config-if-range)#exit
SW-01(config)#exit
SW-01#wr
Building configuration...
[OK]
SW-01#
Page 6 of 7
--| Confirmation |--
Page 7 of 7