SlideShare ist ein Scribd-Unternehmen logo
1 von 8
Downloaden Sie, um offline zu lesen
A.K. Gautam
                                            ciscobulls@gmail.com

             CCNP SWITCH
        PORTABLE STUDY GUIDE
                       &
         PRACTICE WORK BOOK


ANUJ KUMAR




             email:- ciscobulls@gmail.com
                anuj_dev007@yahoo.com
                  networkbulls.com
A.K. Gautam
                                                                                                   ciscobulls@gmail.com

                                        PORT AGGREGATION/ETHERCHANNEL

Spanning tree protocol only allows a single link between switch to switch because it prevents bridge loop.
Cisco Ether channel technology allows for the scaling of the link bandwidth by aggregating or bundling parallel links.
In Ether channel treats multiple line as a single link, logical link. The ether channel allows for two or eight links.
The Cisco catalyst family of switches supports two types of link aggregation.
PAgP (port aggregation protocol): - It is cisco proprietary protocol. It is default protocol, when we port channel
created.
LACP (link aggregation control protocol): - It is industy standard protocol. Its standard IEEE 802.3ad based protocol.
Etherchannel provide redundancy.
If one link fails traffic is automatically moved to another link.
Conditions:-

    1.   Both side same media type and speed.
    2.   Same duplex.
    3.   Same Vlan(If access)
    4.   Same trunking encapsulation and mode(if trunk)
    5.   Same native vlan.

Note: - Load is not balanced equally across links.
Etherchannel uses a hashing algorithm. Two inputs are used (Source IP address and Destination IP address)
How this work.
We will focus on the 2, 4, or 8 link because it is easier to understand for you.
A 2 link Etherchannel bundle require a 1 bit index using an XOR.
If the index is 0, link 0 is selected.
If the index is 1, link 1 is selected.
A 4 link Etherchannel bundle requires a 2 bit index using an XOR.
4 possible links: 00, 01, 10, 11
Let’s See
00 = link 0
01 = link 1
10 = link 2
11 = link 3
An 8 link etherchannel bundle requires a 3 bit index using an XOR.
8 possible links: 000, 001, 010, 011, 100, 101, 110, 111.
Same as:-
000 = link 0
001 = link 1
010 = link 2
011 = link 3
100 = link 4
101 = link 5
110 = link 6
111 = link 7
Note: - XOR (Exclusive OR), 0 value = false, 1 value = True. If boot bits have same value (both 0, both 1), the XOR will
result in a 0. Otherwise, if these value are different (one is a 0 and other is a 1), the result will be 1.
A.K. Gautam
                                                                                                       ciscobulls@gmail.com




                                                                                                     Example: 2 Link
                                                                                                     EtherChannel.




Packet sent from 172.16.1.1 to 10.10.10.16. The chosen hash uses Source IP (172.16.1.1) and Destination IP
(10.10.10.16) address.
172.16.1.1 => 00000001 (Source IP address)
10.10.10.16 => 00001000 (Destination IP address)
 In our example we have 2 links in the EtherChannel (1 bit index):
             The XOR is performed only one rightmost(right side) bit 1 XOR 0
             1 XOR 0 = 1
             Link 1 is used
Note: - XOR of the two bits result in 0, then link 0 is used. If XOR of the two bits result in 1, then link 1 is used.




Example: 4 Link EtherChannel.
                                                            Link 0

                                                               Link 3




Packet sent from 172.16.1.1 to 10.10.10.46. The chosen hash uses Source IP (172.16.1.1) and Destination IP
(10.10.10.46) address.
172.16.1.1 => 00000001 (Source IP address)
10.10.10.46 => 00001110 (Destination IP address)
 In our example we have 4 links in the EtherChannel (2 bit index):
The XOR is performed only 2 rightmost (right side) bit 01 XOR 00
Each bit is computed separately
01 XOR 10 = 11
1 XOR 0 = 1
A.K. Gautam
                                                                                             ciscobulls@gmail.com

0 XOR 1 = 1
According to link
0 XOR 0 = 0 link = 0
0 XOR 1 = 1 link = 1
1 XOR 0 = 1 link = 2
1 XOR 1 = 0 link = 3




                                                            Link 0
Example: 4 Link EtherChannel




                                                   Link 7

Packet sent from 172.16.1.1 to 10.10.10.46. The chosen hash uses Source IP (172.16.1.1) and Destination IP
(10.10.10.46) address.
172.16.1.1 => 00000001 (Source IP address)
10.10.10.46 => 00001110 (Destination IP address)
If there are 8 links in the EtherChannel (3 bit index):
The XOR is performed only on the 3 rightmost bits 001 XOR 110
Each bit is computed separately
001 XOR 110 = 111
1 XOR 0 = 1
0 XOR 1 = 1
0 XOR 1 = 1
According to link
8 possible links: 000, 001, 010, 011, 100, 101, 110, 111.
Same as:-
000 = link 0
001 = link 1
010 = link 2
011 = link 3
100 = link 4
101 = link 5
110 = link 6
111 = link 7

See more Information:-
            http://www.cisco.com/en/US/tech/tk389/tk213/technologies_tech_note09186a0080094714.shtml
A.K. Gautam
                                                                                             ciscobulls@gmail.com

                                  CONFIGURE ETHERCHANNEL LOAD BALANCING.
                                                 EthjerChannel

                                 On                                            On



                                            PAgP Negotiated EtherChannel

                            Desirable       EtherChannel                       Auto



                                             LACP Negotiated EtherChannel
                                 Active                                        Passive




Load balancing configure on Global mode.

Switch(config)# port-channel load-balance method
Switch(config)# port-channel load-balance ?
  dst-ip         Dst   IP Addr                 bits
  dst-mac        Dst   Mac Addr                bits
  src-dst-ip     Src   XOR Dst IP Addr         XOR
  src-dst-mac    Src   XOR Dst Mac Addr        XOR
  src-ip         Src   IP Addr                 bits
  src-mac        Src   Mac Addr                bits



EtherChannel protocol
The Cisco Catalyst family of switches supports both:
Port Aggregation Protocol (PAgP) - Cisco proprietary (Default when port channel is created).
Link Aggregation Control Protocol (LACP) - Industry standard 802.3ad-based protocol (When a Cisco switch is
connected to a non-Cisco switch use LACP)
Note: - Must be same protocol on the both side.
switch(config)# interface range fa 0/1 - 4
switch(config-if-range)# channel-protocol ?
   lacp Prepare interface for LACP protocol
   pagp Prepare interface for PAgP protocol
switch(config-if-range)# channel-protocol pagp

Channel-group number: 1 – 64
(Does not need to be the same on both switches but it’s recommended that it usually is)

switch(config)# interface range fa 0/1 - 4
switch(config-if-range)# channel-protocol ?
  lacp Prepare interface for LACP protocol
  pagp Prepare interface for PAgP protocol
A.K. Gautam
                                                                                                 ciscobulls@gmail.com

switch(config-if-range)# channel-group number mode {active | on | {auto [non-
silent]} | {desirable [non-silent]} | passive}

                                         if No PAgP or LACP negotiation used

switch(config)# interface range fa 0/1 – 4
switch(config-if-range)# channel-protocol pagp
switch(config-if-range)# channel-group 1 mode on
  active          Enable LACP unconditionally
  auto            Enable PAgP only if a PAgP device is detected
  desirable Enable PAgP unconditionally
  on              Enable Etherchannel only
  passive         Enable LACP only if a LACP device is detected
Note: - Both ends must be on

                                           PAgP (Port Aggregation Protocol)
PAgP modes: -
1: -Desirable
2: -Auto
1:- in this mode switch sends a request to neighbor switch for either channel negotiation.
2:- in this mode a switch read for negotiation but it does not send a request to neighbor switch for either channel
negotiation.
Switch1(config)# interface range fa 0/1 – 4
Switch1(config-if-range)#switchport mode trunk
Switch1(config-if-range)# switchport trunk encapsulation dot1q
Switch1(config-if-range)# channel-protocol pagp
Switch1(config-if-range)# channel-group 1 mode desirable


Switch2(config)# interface range fa 0/1 – 4
Switch2(config-if-range)#switchport mode trunk
Switch2(config-if-range)#switchport trunk encapsulation dot1q
Switch2(config-if-range)# channel-protocol pagp
Switch2(config-if-range)# channel-group 1 mode auto

Note: - Load balancing does not have to match.
switch1(config)# port-channel load-balance dst-ip
switch2(config)# port-channel load-balance src-dst-ip

Verifying: -
Switch#show       etherchannel       protocol
Switch#show       etherchannel       load-balance
Switch#show       ehterchannel       summary
Switch#show       etherchannel       port
A.K. Gautam
                                                                                                 ciscobulls@gmail.com

                                      LACP (Link Aggregation control Protocol)
LACP Modes: -
1: -Active:
2: -Passive:
1: - An interface in the active mode can negotiation an EtherChannel with another interface that is in the active or
passive mode.
2: - An interface in the passive mode cans negotiation an EtherChannel with another interface that is in the active
mode.
Note: - An interface in the passive mode cannot negotiation an EtherChannel with another interface that is also in
the passive mode because neither interface starts LACP negotiation.

Switch1(config)# interface range fa 0/1 – 4
Switch1(config-if-range)#switchport mode trunk
Switch1(config-if-range)# switchport trunk encapsulation dot1q
Switch1(config-if-range)# channel-protocol lacp
Switch1(config-if-range)# channel-group 1 mode active


Switch2(config)# interface range fa 0/1 – 4
Switch2(config-if-range)#switchport mode trunk
Switch2(config-if-range)#switchport trunk encapsulation dot1q
Switch2(config-if-range)# channel-protocol lacp
Switch2(config-if-range)# channel-group 1 mode passive

Port Priority
LACP uses the port priority to decide which port should be put in standby mode.
Ports with lower priority are active, and rest ports are standby (Default
32678).
For Example we use 4 links.
Switch1(config)# interface range fa 0/1 – 2
Switch1(config-if-range)#switchport mode trunk
Switch1(config-if-range)# switchport trunk encapsulation dot1q
Switch1(config-if-range)# channel-protocol lacp
Switch1(config-if-range)# channel-group 1 mode active
Switch1(config-if-range)#lacp port-priority 99

Switch1(config)# interface range fa 0/3 – 4
Switch1(config-if-range)#switchport mode trunk
Switch1(config-if-range)#switchport trunk encapsulation dot1q
Switch1(config-if-range)# channel-protocol lacp
Switch1(config-if-range)# channel-group 1 mode passive
Note: - Load balancing does not have to match.
switch1(config)# port-channel load-balance dst-ip
switch2(config)# port-channel load-balance src-dst-ip



Verifying: -
Switch#show etherchannel protocol
A.K. Gautam
                                        ciscobulls@gmail.com

Switch#show etherchannel load-balance
Switch#show ehterchannel summary
Switch#show etherchannel port

Thanks giving me your precious time.
A.K. Gautam

Weitere ähnliche Inhalte

Was ist angesagt?

First Hop Redundancy Protocols in IPv6 HSRP + GLBP
First Hop Redundancy Protocols in IPv6 HSRP + GLBPFirst Hop Redundancy Protocols in IPv6 HSRP + GLBP
First Hop Redundancy Protocols in IPv6 HSRP + GLBPIT Tech
 
12 link aggregation configuration
12 link aggregation configuration12 link aggregation configuration
12 link aggregation configurationHARRY CHAN PUTRA
 
GLBP (gateway load balancing protocol)
GLBP (gateway load balancing protocol)GLBP (gateway load balancing protocol)
GLBP (gateway load balancing protocol)Netwax Lab
 
Juniper mpls best practice part 2
Juniper mpls best practice   part 2Juniper mpls best practice   part 2
Juniper mpls best practice part 2Febrian ‎
 
First hop redundancy
First hop redundancyFirst hop redundancy
First hop redundancyMohamed Gamel
 
QoS marking on cisco IOS Router
QoS marking on cisco IOS RouterQoS marking on cisco IOS Router
QoS marking on cisco IOS RouterNetProtocol Xpert
 
Packet Tracer: Routing protocols EIGRP and OSPF
Packet Tracer: Routing protocols EIGRP and OSPFPacket Tracer: Routing protocols EIGRP and OSPF
Packet Tracer: Routing protocols EIGRP and OSPFRafat Khandaker
 
Packet Tracer: Load Balancing with GLBP and FHRP
Packet Tracer: Load Balancing with GLBP and FHRPPacket Tracer: Load Balancing with GLBP and FHRP
Packet Tracer: Load Balancing with GLBP and FHRPRafat Khandaker
 
Juniper mpls best practice part 1
Juniper mpls best practice   part 1Juniper mpls best practice   part 1
Juniper mpls best practice part 1Febrian ‎
 
Eigrp frequently asked questions
Eigrp frequently asked questionsEigrp frequently asked questions
Eigrp frequently asked questionsIT Tech
 
Implementing Internet and MPLS BGP
Implementing Internet and MPLS BGPImplementing Internet and MPLS BGP
Implementing Internet and MPLS BGPPrivate
 
MPLS Deployment Chapter 3 - Optimization
MPLS Deployment Chapter 3 - OptimizationMPLS Deployment Chapter 3 - Optimization
MPLS Deployment Chapter 3 - OptimizationEricsson
 
IP Infusion Application Note for 4G LTE Fixed Wireless Access
IP Infusion Application Note for 4G LTE Fixed Wireless AccessIP Infusion Application Note for 4G LTE Fixed Wireless Access
IP Infusion Application Note for 4G LTE Fixed Wireless AccessDhiman Chowdhury
 

Was ist angesagt? (20)

First Hop Redundancy Protocols in IPv6 HSRP + GLBP
First Hop Redundancy Protocols in IPv6 HSRP + GLBPFirst Hop Redundancy Protocols in IPv6 HSRP + GLBP
First Hop Redundancy Protocols in IPv6 HSRP + GLBP
 
12 link aggregation configuration
12 link aggregation configuration12 link aggregation configuration
12 link aggregation configuration
 
GLBP (gateway load balancing protocol)
GLBP (gateway load balancing protocol)GLBP (gateway load balancing protocol)
GLBP (gateway load balancing protocol)
 
Layer 3 redundancy hsrp
Layer 3 redundancy   hsrpLayer 3 redundancy   hsrp
Layer 3 redundancy hsrp
 
Ccnpswitch
CcnpswitchCcnpswitch
Ccnpswitch
 
Juniper mpls best practice part 2
Juniper mpls best practice   part 2Juniper mpls best practice   part 2
Juniper mpls best practice part 2
 
First hop redundancy
First hop redundancyFirst hop redundancy
First hop redundancy
 
QoS marking on cisco IOS Router
QoS marking on cisco IOS RouterQoS marking on cisco IOS Router
QoS marking on cisco IOS Router
 
CCIE Lab - IGP Routing
CCIE Lab -  IGP Routing  CCIE Lab -  IGP Routing
CCIE Lab - IGP Routing
 
Packet Tracer: Routing protocols EIGRP and OSPF
Packet Tracer: Routing protocols EIGRP and OSPFPacket Tracer: Routing protocols EIGRP and OSPF
Packet Tracer: Routing protocols EIGRP and OSPF
 
Vrrp
VrrpVrrp
Vrrp
 
Fhrp notes
Fhrp notesFhrp notes
Fhrp notes
 
Packet Tracer: Load Balancing with GLBP and FHRP
Packet Tracer: Load Balancing with GLBP and FHRPPacket Tracer: Load Balancing with GLBP and FHRP
Packet Tracer: Load Balancing with GLBP and FHRP
 
Hsrp
HsrpHsrp
Hsrp
 
Ccna command
Ccna commandCcna command
Ccna command
 
Juniper mpls best practice part 1
Juniper mpls best practice   part 1Juniper mpls best practice   part 1
Juniper mpls best practice part 1
 
Eigrp frequently asked questions
Eigrp frequently asked questionsEigrp frequently asked questions
Eigrp frequently asked questions
 
Implementing Internet and MPLS BGP
Implementing Internet and MPLS BGPImplementing Internet and MPLS BGP
Implementing Internet and MPLS BGP
 
MPLS Deployment Chapter 3 - Optimization
MPLS Deployment Chapter 3 - OptimizationMPLS Deployment Chapter 3 - Optimization
MPLS Deployment Chapter 3 - Optimization
 
IP Infusion Application Note for 4G LTE Fixed Wireless Access
IP Infusion Application Note for 4G LTE Fixed Wireless AccessIP Infusion Application Note for 4G LTE Fixed Wireless Access
IP Infusion Application Note for 4G LTE Fixed Wireless Access
 

Ähnlich wie Port aggregation

Config Lab L2 EtherChannel 2 Both layer 2 EtherChannel and layer 3 Eth.pdf
Config Lab L2 EtherChannel 2 Both layer 2 EtherChannel and layer 3 Eth.pdfConfig Lab L2 EtherChannel 2 Both layer 2 EtherChannel and layer 3 Eth.pdf
Config Lab L2 EtherChannel 2 Both layer 2 EtherChannel and layer 3 Eth.pdf21stcenturyjammu21
 
Chapter 3 link aggregation
Chapter 3   link aggregationChapter 3   link aggregation
Chapter 3 link aggregationJosue Wuezo
 
CCNA3 Verson6 Chapter4
CCNA3 Verson6 Chapter4CCNA3 Verson6 Chapter4
CCNA3 Verson6 Chapter4Chaing Ravuth
 
SRWE_Module_6-EtherChannel.pptx
SRWE_Module_6-EtherChannel.pptxSRWE_Module_6-EtherChannel.pptx
SRWE_Module_6-EtherChannel.pptxSaqibAli696638
 
CCNA (R & S) Module 04 - Scaling Networks - Chapter 4
CCNA (R & S) Module 04 - Scaling Networks - Chapter 4CCNA (R & S) Module 04 - Scaling Networks - Chapter 4
CCNA (R & S) Module 04 - Scaling Networks - Chapter 4Waqas Ahmed Nawaz
 
Basic interview question for Ether Channel.
Basic  interview question for Ether Channel.Basic  interview question for Ether Channel.
Basic interview question for Ether Channel.INFitunes
 
ether channel_hsrp
ether channel_hsrpether channel_hsrp
ether channel_hsrpnewbie2019
 
Taking Security Groups to Ludicrous Speed with OVS (OpenStack Summit 2015)
Taking Security Groups to Ludicrous Speed with OVS (OpenStack Summit 2015)Taking Security Groups to Ludicrous Speed with OVS (OpenStack Summit 2015)
Taking Security Groups to Ludicrous Speed with OVS (OpenStack Summit 2015)Thomas Graf
 
Eigrp Summary (Ccna4.Com)
Eigrp Summary  (Ccna4.Com)Eigrp Summary  (Ccna4.Com)
Eigrp Summary (Ccna4.Com)CCNAResources
 
Lecture3_LinkAggregation LinkAggregation
Lecture3_LinkAggregation LinkAggregationLecture3_LinkAggregation LinkAggregation
Lecture3_LinkAggregation LinkAggregationmercyzyada1999
 
Networking
NetworkingNetworking
Networkingra na
 
hajer
hajerhajer
hajerra na
 
Chapter 6 - The Link Layer: Links, Access Networks and LANs
Chapter 6 - The Link Layer: Links, Access Networks and LANsChapter 6 - The Link Layer: Links, Access Networks and LANs
Chapter 6 - The Link Layer: Links, Access Networks and LANsAndy Juan Sarango Veliz
 
CSC3407 Assigment 2 Question 1 (50 marks) USQ College .docx
CSC3407 Assigment 2 Question 1 (50 marks) USQ College .docxCSC3407 Assigment 2 Question 1 (50 marks) USQ College .docx
CSC3407 Assigment 2 Question 1 (50 marks) USQ College .docxfaithxdunce63732
 
(2) documents e books_cisco_networking_books_training_materials_cnap_-_ont_v5...
(2) documents e books_cisco_networking_books_training_materials_cnap_-_ont_v5...(2) documents e books_cisco_networking_books_training_materials_cnap_-_ont_v5...
(2) documents e books_cisco_networking_books_training_materials_cnap_-_ont_v5...Lary Onyeka
 
Network Programming: Data Plane Development Kit (DPDK)
Network Programming: Data Plane Development Kit (DPDK)Network Programming: Data Plane Development Kit (DPDK)
Network Programming: Data Plane Development Kit (DPDK)Andriy Berestovskyy
 
Training Day Slides
Training Day SlidesTraining Day Slides
Training Day Slidesadam_merritt
 
newtwork opnet app project
newtwork opnet app project newtwork opnet app project
newtwork opnet app project Mohamed Elagnaf
 

Ähnlich wie Port aggregation (20)

Config Lab L2 EtherChannel 2 Both layer 2 EtherChannel and layer 3 Eth.pdf
Config Lab L2 EtherChannel 2 Both layer 2 EtherChannel and layer 3 Eth.pdfConfig Lab L2 EtherChannel 2 Both layer 2 EtherChannel and layer 3 Eth.pdf
Config Lab L2 EtherChannel 2 Both layer 2 EtherChannel and layer 3 Eth.pdf
 
Chapter 3 link aggregation
Chapter 3   link aggregationChapter 3   link aggregation
Chapter 3 link aggregation
 
CCNA3 Verson6 Chapter4
CCNA3 Verson6 Chapter4CCNA3 Verson6 Chapter4
CCNA3 Verson6 Chapter4
 
SRWE_Module_6-EtherChannel.pptx
SRWE_Module_6-EtherChannel.pptxSRWE_Module_6-EtherChannel.pptx
SRWE_Module_6-EtherChannel.pptx
 
CCNA (R & S) Module 04 - Scaling Networks - Chapter 4
CCNA (R & S) Module 04 - Scaling Networks - Chapter 4CCNA (R & S) Module 04 - Scaling Networks - Chapter 4
CCNA (R & S) Module 04 - Scaling Networks - Chapter 4
 
Basic interview question for Ether Channel.
Basic  interview question for Ether Channel.Basic  interview question for Ether Channel.
Basic interview question for Ether Channel.
 
ether channel_hsrp
ether channel_hsrpether channel_hsrp
ether channel_hsrp
 
Taking Security Groups to Ludicrous Speed with OVS (OpenStack Summit 2015)
Taking Security Groups to Ludicrous Speed with OVS (OpenStack Summit 2015)Taking Security Groups to Ludicrous Speed with OVS (OpenStack Summit 2015)
Taking Security Groups to Ludicrous Speed with OVS (OpenStack Summit 2015)
 
Eigrp Summary (Ccna4.Com)
Eigrp Summary  (Ccna4.Com)Eigrp Summary  (Ccna4.Com)
Eigrp Summary (Ccna4.Com)
 
Lecture3_LinkAggregation LinkAggregation
Lecture3_LinkAggregation LinkAggregationLecture3_LinkAggregation LinkAggregation
Lecture3_LinkAggregation LinkAggregation
 
Ethernet
EthernetEthernet
Ethernet
 
Networking
NetworkingNetworking
Networking
 
hajer
hajerhajer
hajer
 
Chapter 6 - The Link Layer: Links, Access Networks and LANs
Chapter 6 - The Link Layer: Links, Access Networks and LANsChapter 6 - The Link Layer: Links, Access Networks and LANs
Chapter 6 - The Link Layer: Links, Access Networks and LANs
 
CSC3407 Assigment 2 Question 1 (50 marks) USQ College .docx
CSC3407 Assigment 2 Question 1 (50 marks) USQ College .docxCSC3407 Assigment 2 Question 1 (50 marks) USQ College .docx
CSC3407 Assigment 2 Question 1 (50 marks) USQ College .docx
 
(2) documents e books_cisco_networking_books_training_materials_cnap_-_ont_v5...
(2) documents e books_cisco_networking_books_training_materials_cnap_-_ont_v5...(2) documents e books_cisco_networking_books_training_materials_cnap_-_ont_v5...
(2) documents e books_cisco_networking_books_training_materials_cnap_-_ont_v5...
 
3
33
3
 
Network Programming: Data Plane Development Kit (DPDK)
Network Programming: Data Plane Development Kit (DPDK)Network Programming: Data Plane Development Kit (DPDK)
Network Programming: Data Plane Development Kit (DPDK)
 
Training Day Slides
Training Day SlidesTraining Day Slides
Training Day Slides
 
newtwork opnet app project
newtwork opnet app project newtwork opnet app project
newtwork opnet app project
 

Kürzlich hochgeladen

Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
Next-generation AAM aircraft unveiled by Supernal, S-A2
Next-generation AAM aircraft unveiled by Supernal, S-A2Next-generation AAM aircraft unveiled by Supernal, S-A2
Next-generation AAM aircraft unveiled by Supernal, S-A2Hyundai Motor Group
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your Budget
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your BudgetHyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your Budget
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your BudgetEnjoy Anytime
 

Kürzlich hochgeladen (20)

Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
Next-generation AAM aircraft unveiled by Supernal, S-A2
Next-generation AAM aircraft unveiled by Supernal, S-A2Next-generation AAM aircraft unveiled by Supernal, S-A2
Next-generation AAM aircraft unveiled by Supernal, S-A2
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your Budget
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your BudgetHyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your Budget
Hyderabad Call Girls Khairatabad ✨ 7001305949 ✨ Cheap Price Your Budget
 

Port aggregation

  • 1. A.K. Gautam ciscobulls@gmail.com CCNP SWITCH PORTABLE STUDY GUIDE & PRACTICE WORK BOOK ANUJ KUMAR email:- ciscobulls@gmail.com anuj_dev007@yahoo.com networkbulls.com
  • 2. A.K. Gautam ciscobulls@gmail.com PORT AGGREGATION/ETHERCHANNEL Spanning tree protocol only allows a single link between switch to switch because it prevents bridge loop. Cisco Ether channel technology allows for the scaling of the link bandwidth by aggregating or bundling parallel links. In Ether channel treats multiple line as a single link, logical link. The ether channel allows for two or eight links. The Cisco catalyst family of switches supports two types of link aggregation. PAgP (port aggregation protocol): - It is cisco proprietary protocol. It is default protocol, when we port channel created. LACP (link aggregation control protocol): - It is industy standard protocol. Its standard IEEE 802.3ad based protocol. Etherchannel provide redundancy. If one link fails traffic is automatically moved to another link. Conditions:- 1. Both side same media type and speed. 2. Same duplex. 3. Same Vlan(If access) 4. Same trunking encapsulation and mode(if trunk) 5. Same native vlan. Note: - Load is not balanced equally across links. Etherchannel uses a hashing algorithm. Two inputs are used (Source IP address and Destination IP address) How this work. We will focus on the 2, 4, or 8 link because it is easier to understand for you. A 2 link Etherchannel bundle require a 1 bit index using an XOR. If the index is 0, link 0 is selected. If the index is 1, link 1 is selected. A 4 link Etherchannel bundle requires a 2 bit index using an XOR. 4 possible links: 00, 01, 10, 11 Let’s See 00 = link 0 01 = link 1 10 = link 2 11 = link 3 An 8 link etherchannel bundle requires a 3 bit index using an XOR. 8 possible links: 000, 001, 010, 011, 100, 101, 110, 111. Same as:- 000 = link 0 001 = link 1 010 = link 2 011 = link 3 100 = link 4 101 = link 5 110 = link 6 111 = link 7 Note: - XOR (Exclusive OR), 0 value = false, 1 value = True. If boot bits have same value (both 0, both 1), the XOR will result in a 0. Otherwise, if these value are different (one is a 0 and other is a 1), the result will be 1.
  • 3. A.K. Gautam ciscobulls@gmail.com Example: 2 Link EtherChannel. Packet sent from 172.16.1.1 to 10.10.10.16. The chosen hash uses Source IP (172.16.1.1) and Destination IP (10.10.10.16) address. 172.16.1.1 => 00000001 (Source IP address) 10.10.10.16 => 00001000 (Destination IP address) In our example we have 2 links in the EtherChannel (1 bit index):  The XOR is performed only one rightmost(right side) bit 1 XOR 0  1 XOR 0 = 1  Link 1 is used Note: - XOR of the two bits result in 0, then link 0 is used. If XOR of the two bits result in 1, then link 1 is used. Example: 4 Link EtherChannel. Link 0 Link 3 Packet sent from 172.16.1.1 to 10.10.10.46. The chosen hash uses Source IP (172.16.1.1) and Destination IP (10.10.10.46) address. 172.16.1.1 => 00000001 (Source IP address) 10.10.10.46 => 00001110 (Destination IP address) In our example we have 4 links in the EtherChannel (2 bit index): The XOR is performed only 2 rightmost (right side) bit 01 XOR 00 Each bit is computed separately 01 XOR 10 = 11 1 XOR 0 = 1
  • 4. A.K. Gautam ciscobulls@gmail.com 0 XOR 1 = 1 According to link 0 XOR 0 = 0 link = 0 0 XOR 1 = 1 link = 1 1 XOR 0 = 1 link = 2 1 XOR 1 = 0 link = 3 Link 0 Example: 4 Link EtherChannel Link 7 Packet sent from 172.16.1.1 to 10.10.10.46. The chosen hash uses Source IP (172.16.1.1) and Destination IP (10.10.10.46) address. 172.16.1.1 => 00000001 (Source IP address) 10.10.10.46 => 00001110 (Destination IP address) If there are 8 links in the EtherChannel (3 bit index): The XOR is performed only on the 3 rightmost bits 001 XOR 110 Each bit is computed separately 001 XOR 110 = 111 1 XOR 0 = 1 0 XOR 1 = 1 0 XOR 1 = 1 According to link 8 possible links: 000, 001, 010, 011, 100, 101, 110, 111. Same as:- 000 = link 0 001 = link 1 010 = link 2 011 = link 3 100 = link 4 101 = link 5 110 = link 6 111 = link 7 See more Information:-  http://www.cisco.com/en/US/tech/tk389/tk213/technologies_tech_note09186a0080094714.shtml
  • 5. A.K. Gautam ciscobulls@gmail.com CONFIGURE ETHERCHANNEL LOAD BALANCING. EthjerChannel On On PAgP Negotiated EtherChannel Desirable EtherChannel Auto LACP Negotiated EtherChannel Active Passive Load balancing configure on Global mode. Switch(config)# port-channel load-balance method Switch(config)# port-channel load-balance ? dst-ip Dst IP Addr bits dst-mac Dst Mac Addr bits src-dst-ip Src XOR Dst IP Addr XOR src-dst-mac Src XOR Dst Mac Addr XOR src-ip Src IP Addr bits src-mac Src Mac Addr bits EtherChannel protocol The Cisco Catalyst family of switches supports both: Port Aggregation Protocol (PAgP) - Cisco proprietary (Default when port channel is created). Link Aggregation Control Protocol (LACP) - Industry standard 802.3ad-based protocol (When a Cisco switch is connected to a non-Cisco switch use LACP) Note: - Must be same protocol on the both side. switch(config)# interface range fa 0/1 - 4 switch(config-if-range)# channel-protocol ? lacp Prepare interface for LACP protocol pagp Prepare interface for PAgP protocol switch(config-if-range)# channel-protocol pagp Channel-group number: 1 – 64 (Does not need to be the same on both switches but it’s recommended that it usually is) switch(config)# interface range fa 0/1 - 4 switch(config-if-range)# channel-protocol ? lacp Prepare interface for LACP protocol pagp Prepare interface for PAgP protocol
  • 6. A.K. Gautam ciscobulls@gmail.com switch(config-if-range)# channel-group number mode {active | on | {auto [non- silent]} | {desirable [non-silent]} | passive} if No PAgP or LACP negotiation used switch(config)# interface range fa 0/1 – 4 switch(config-if-range)# channel-protocol pagp switch(config-if-range)# channel-group 1 mode on active Enable LACP unconditionally auto Enable PAgP only if a PAgP device is detected desirable Enable PAgP unconditionally on Enable Etherchannel only passive Enable LACP only if a LACP device is detected Note: - Both ends must be on PAgP (Port Aggregation Protocol) PAgP modes: - 1: -Desirable 2: -Auto 1:- in this mode switch sends a request to neighbor switch for either channel negotiation. 2:- in this mode a switch read for negotiation but it does not send a request to neighbor switch for either channel negotiation. Switch1(config)# interface range fa 0/1 – 4 Switch1(config-if-range)#switchport mode trunk Switch1(config-if-range)# switchport trunk encapsulation dot1q Switch1(config-if-range)# channel-protocol pagp Switch1(config-if-range)# channel-group 1 mode desirable Switch2(config)# interface range fa 0/1 – 4 Switch2(config-if-range)#switchport mode trunk Switch2(config-if-range)#switchport trunk encapsulation dot1q Switch2(config-if-range)# channel-protocol pagp Switch2(config-if-range)# channel-group 1 mode auto Note: - Load balancing does not have to match. switch1(config)# port-channel load-balance dst-ip switch2(config)# port-channel load-balance src-dst-ip Verifying: - Switch#show etherchannel protocol Switch#show etherchannel load-balance Switch#show ehterchannel summary Switch#show etherchannel port
  • 7. A.K. Gautam ciscobulls@gmail.com LACP (Link Aggregation control Protocol) LACP Modes: - 1: -Active: 2: -Passive: 1: - An interface in the active mode can negotiation an EtherChannel with another interface that is in the active or passive mode. 2: - An interface in the passive mode cans negotiation an EtherChannel with another interface that is in the active mode. Note: - An interface in the passive mode cannot negotiation an EtherChannel with another interface that is also in the passive mode because neither interface starts LACP negotiation. Switch1(config)# interface range fa 0/1 – 4 Switch1(config-if-range)#switchport mode trunk Switch1(config-if-range)# switchport trunk encapsulation dot1q Switch1(config-if-range)# channel-protocol lacp Switch1(config-if-range)# channel-group 1 mode active Switch2(config)# interface range fa 0/1 – 4 Switch2(config-if-range)#switchport mode trunk Switch2(config-if-range)#switchport trunk encapsulation dot1q Switch2(config-if-range)# channel-protocol lacp Switch2(config-if-range)# channel-group 1 mode passive Port Priority LACP uses the port priority to decide which port should be put in standby mode. Ports with lower priority are active, and rest ports are standby (Default 32678). For Example we use 4 links. Switch1(config)# interface range fa 0/1 – 2 Switch1(config-if-range)#switchport mode trunk Switch1(config-if-range)# switchport trunk encapsulation dot1q Switch1(config-if-range)# channel-protocol lacp Switch1(config-if-range)# channel-group 1 mode active Switch1(config-if-range)#lacp port-priority 99 Switch1(config)# interface range fa 0/3 – 4 Switch1(config-if-range)#switchport mode trunk Switch1(config-if-range)#switchport trunk encapsulation dot1q Switch1(config-if-range)# channel-protocol lacp Switch1(config-if-range)# channel-group 1 mode passive Note: - Load balancing does not have to match. switch1(config)# port-channel load-balance dst-ip switch2(config)# port-channel load-balance src-dst-ip Verifying: - Switch#show etherchannel protocol
  • 8. A.K. Gautam ciscobulls@gmail.com Switch#show etherchannel load-balance Switch#show ehterchannel summary Switch#show etherchannel port Thanks giving me your precious time. A.K. Gautam