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
 
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
 
Cisco data center support
Cisco data center supportCisco data center support
Cisco data center supportKrunal Shah
 

Ä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)
 
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
 
Cisco data center support
Cisco data center supportCisco data center support
Cisco data center support
 

Kürzlich hochgeladen

TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...AliaaTarek5
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...Wes McKinney
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI AgeCprime
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demoHarshalMandlekar2
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...panagenda
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Scott Andery
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityIES VE
 
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesAssure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesThousandEyes
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfNeo4j
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 

Kürzlich hochgeladen (20)

TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
 
A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI Age
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demo
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a reality
 
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesAssure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdf
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 

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