SlideShare ist ein Scribd-Unternehmen logo
1 von 38
© 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 1
Chapter 3: Dynamic Routing
Routing and Switching Essentials v6.0
Presentation_ID 2© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Dynamic Routing Protocol Overview
Dynamic Routing Protocol Evolution
 Dynamic routing protocols have been used in networks
since the late 1980s.
 Newer versions support the communication based on
IPv6.
Routing Protocols Classification
Presentation_ID 3© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Dynamic Routing Protocol Overview
Dynamic Routing Protocols Components
Routing Protocols are used to facilitate the exchange of
routing information between routers.
The purpose of dynamic routing protocols includes:
 Discovery of remote networks
 Maintaining up-to-date routing information
 Choosing the best path to destination networks
 Ability to find a new best path if the current path is no
longer available
Presentation_ID 4© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Dynamic Routing Protocol Overview
Dynamic Routing Protocols Components (cont.)
Main components of dynamic routing protocols include:
 Data structures - Routing protocols typically use tables
or databases for its operations. This information is kept
in RAM.
 Routing protocol messages - Routing protocols use
various types of messages to discover neighboring
routers, exchange routing information, and other tasks
to learn and maintain accurate information about the
network.
 Algorithm - Routing protocols use algorithms for
facilitating routing information for best path
determination.
Presentation_ID 5© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Dynamic versus Static Routing
Static Routing Uses
Networks typically use a combination of both static and
dynamic routing.
Static routing has several primary uses:
 Providing ease of routing table maintenance in smaller networks
that are not expected to grow significantly.
 Routing to and from a stub network. A network with only one
default route out and no knowledge of any remote networks.
 Accessing a single default router. This is used to represent a
path to any network that does not have a match in the routing
table.
Presentation_ID 6© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Dynamic verses Static Routing
Static Routing Uses (cont.)
Presentation_ID 7© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Dynamic verses Static Routing
Static Routing Advantages and Disadvantages
Presentation_ID 8© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Dynamic verses Static Routing
Dynamic Routing Advantages & Disadvantages
© 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 9
3.2 RIPv2
Presentation_ID 10© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Configuring the RIP Protocol
Router RIP Configuration Mode
Presentation_ID 11© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Configuring the RIP Protocol
Verify RIP Routing
Presentation_ID 12© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Configuring the RIP Protocol
Enable and Verify RIPv2
Presentation_ID 13© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Configuring the RIP Protocol
Disable Auto Summarization
 Similarly to RIPv1, RIPv2 automatically summarizes
networks at major network boundaries by default.
 To modify the default RIPv2 behavior of automatic
summarization, use the no auto-summary router
configuration mode command.
 This command has no effect when using RIPv1.
 When automatic summarization has been disabled,
RIPv2 no longer summarizes networks to their classful
address at boundary routers. RIPv2 now includes all
subnets and their appropriate masks in its routing
updates.
 The show ip protocols now states that automatic
network summarization is not in effect.
Presentation_ID 14© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Configuring the RIP Protocol
Configuring Passive Interfaces
Sending out unneeded
updates on a LAN impacts the
network in three ways:
 Wasted Bandwidth
 Wasted Resources
 Security Risk
Presentation_ID 15© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Configuring the RIP Protocol
Propagate a Default Route
© 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 16
3.3 The Routing Table
Presentation_ID 17© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Parts of an IPv4 Route Entry
Routing Table Entries
Presentation_ID 18© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Parts of an IPv4 Route Entry
Routing Table Entries
Presentation_ID 19© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Parts of an IPv4 Route Entry
Directly Connected Entries
Presentation_ID 20© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Parts of an IPv4 Route Entry
Remote Network Entries
Presentation_ID 21© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Dynamically Learned IPv4 Routes
Routing Table Terms
Routes are discussed
in terms of:
 Ultimate route
 Level 1 route
 Level 1 parent route
 Level 2 child routes
Presentation_ID 22© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Dynamically Learned IPv4 Routes
Ultimate Route
An ultimate route
is a routing table
entry that
contains either a
next-hop IP
address or an
exit interface.
Directly
connected,
dynamically
learned, and link
local routes are
ultimate routes.
Presentation_ID 23© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Dynamically Learned IPv4 Routes
Level 1 Route
Presentation_ID 24© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Dynamically Learned IPv4 Routes
Level 1 Parent Route
Presentation_ID 25© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Dynamically Learned IPv4 Routes
Level 2 Child Route
Presentation_ID 26© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
1. If the best match is a level 1 ultimate route, then this route is used
to forward the packet.
2. If the best match is a level 1 parent route, proceed to the next
step.
3. The router examines child routes (the subnet routes) of the parent
route for a best match.
4. If there is a match with a level 2 child route, that subnet is used to
forward the packet.
5. If there is not a match with any of the level 2 child routes, proceed
to the next step.
The IPv4 Route Lookup Process
Route Lookup Process
Presentation_ID 27© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
6. The router continues searching level 1 supernet routes in the
routing table for a match, including the default route, if there is
one.
7. If there is now a lesser match with a level 1 supernet or default
routes, the router uses that route to forward the packet.
8. If there is not a match with any route in the routing table, the
router drops the packet.
The Ipv4 Route Lookup Process
Route Lookup Process (cont.)
Presentation_ID 28© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
The IPv4 Route Lookup Process
Best Route = Longest Match
Presentation_ID 29© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
 Components of the IPv6 routing table are very similar to the
IPv4 routing table (directly connected interfaces, static routes,
and dynamically learned routes).
 IPv6 is classless by design, all routes are effectively level 1
ultimate routes. There is no level 1 parent of level 2 child
routes.
The IPv4 Route Lookup Process
IPv6 Routing Table Entries
Presentation_ID 30© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Analyze an IPVv6 Routing Table
Directly Connected Entries
Presentation_ID 31© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Analyze an IPVv6 Routing Table
Remote IPv6 Network Entries
© 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 32
3.4 Summary
Presentation_ID 33© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Chapter 3: Summary
Dynamic routing protocols:
 Used by routers to automatically learn about remote networks from
other routers.
 Purpose includes: discovery of remote networks, maintaining up-to-
date routing information, choosing the best path to destination
networks, and ability to find a new best path if the current path is no
longer available.
 Best choice for large networks but static routing is better for stub
networks.
 Function to inform other routers about changes.
Presentation_ID 34© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Chapter 3: Summary (cont.)
Dynamic routing protocols:
 Responsible for discovering remote networks, as well as maintaining
accurate network information.
 Upon a change in the topology routing protocols propagate that
information throughout the routing domain.
 Convergence: The process of bringing all routing tables to a state of
consistency, where all of the routers in the same routing domain, or
area, have complete and accurate information about the network.
Some routing protocols converge faster than others.
Presentation_ID 35© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Chapter 3: Summary (cont.)
Dynamic routing protocols:
 Cisco routers use the administrative distance value to determine
which routing source to use.
 Each dynamic routing protocol has a unique administrative value,
along with static routes and directly connected networks.
 Directly connected networks are preferred source, followed by static
routes and then various dynamic routing protocols.
Presentation_ID 36© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Chapter 3: Summary (cont.)
Dynamic routing protocols:
 Each dynamic routing protocol has a unique administrative value,
along with static routes and directly connected networks. The lower
the administrative value, the more preferred the route source.
 A directly connected network is always the preferred source, followed
by static routes and then various dynamic routing protocols.
 Routing table entries contain a route source, a destination network,
and an outgoing interface.
 Route sources can be either connected, local, static, or from a
dynamic routing protocol.
 IPv4 routing tables can contain four types of routes: ultimate routes,
level 1 routes, level 1 parent routes, and level 2 child routes.
 Because IPv6 is classless by design, all routes are effectively level 1
ultimate routes. There is no level 1 parent of level 2 child routes.
Presentation_ID 40© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Presentation_ID 41© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential

Weitere ähnliche Inhalte

Was ist angesagt?

Was ist angesagt? (20)

CCNA (R & S) Module 02 - Connecting Networks - Chapter 2
CCNA (R & S) Module 02 - Connecting Networks - Chapter 2CCNA (R & S) Module 02 - Connecting Networks - Chapter 2
CCNA (R & S) Module 02 - Connecting Networks - Chapter 2
 
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 2
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 2CCNA (R & S) Module 01 - Introduction to Networks - Chapter 2
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 2
 
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 3
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 3CCNA (R & S) Module 01 - Introduction to Networks - Chapter 3
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 3
 
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 8
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 8CCNA (R & S) Module 01 - Introduction to Networks - Chapter 8
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 8
 
CCNA (R & S) Module 04 - Scaling Networks - Chapter 8
CCNA (R & S) Module 04 - Scaling Networks - Chapter 8CCNA (R & S) Module 04 - Scaling Networks - Chapter 8
CCNA (R & S) Module 04 - Scaling Networks - Chapter 8
 
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 10
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 10CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 10
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 10
 
CCNA (R & S) Module 02 - Connecting Networks - Chapter 7
CCNA (R & S) Module 02 - Connecting Networks - Chapter 7CCNA (R & S) Module 02 - Connecting Networks - Chapter 7
CCNA (R & S) Module 02 - Connecting Networks - Chapter 7
 
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 4
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 4CCNA (R & S) Module 01 - Introduction to Networks - Chapter 4
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 4
 
CCNA (R & S) Module 04 - Scaling Networks - Chapter 5
CCNA (R & S) Module 04 - Scaling Networks - Chapter 5CCNA (R & S) Module 04 - Scaling Networks - Chapter 5
CCNA (R & S) Module 04 - Scaling Networks - Chapter 5
 
CCNA2 Verson6 Chapter10
CCNA2 Verson6 Chapter10CCNA2 Verson6 Chapter10
CCNA2 Verson6 Chapter10
 
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 9
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 9CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 9
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 9
 
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 6
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 6CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 6
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 6
 
CCNA (R & S) Module 04 - Scaling Networks - Chapter 6
CCNA (R & S) Module 04 - Scaling Networks - Chapter 6CCNA (R & S) Module 04 - Scaling Networks - Chapter 6
CCNA (R & S) Module 04 - Scaling Networks - Chapter 6
 
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 1
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 1CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 1
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 1
 
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 5
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 5CCNA (R & S) Module 01 - Introduction to Networks - Chapter 5
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 5
 
CCNA (R & S) Module 04 - Scaling Networks - Chapter 2
CCNA (R & S) Module 04 - Scaling Networks - Chapter 2CCNA (R & S) Module 04 - Scaling Networks - Chapter 2
CCNA (R & S) Module 04 - Scaling Networks - Chapter 2
 
CCNA (R & S) Module 04 - Scaling Networks - Chapter 10
CCNA (R & S) Module 04 - Scaling Networks - Chapter 10CCNA (R & S) Module 04 - Scaling Networks - Chapter 10
CCNA (R & S) Module 04 - Scaling Networks - Chapter 10
 
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 9
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 9CCNA (R & S) Module 01 - Introduction to Networks - Chapter 9
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 9
 
CCNA (R & S) Module 02 - Connecting Networks - Chapter 8
CCNA (R & S) Module 02 - Connecting Networks - Chapter 8CCNA (R & S) Module 02 - Connecting Networks - Chapter 8
CCNA (R & S) Module 02 - Connecting Networks - Chapter 8
 
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
 

Ähnlich wie CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 3

KPUCC-Rs instructor ppt_chapter7_final
KPUCC-Rs instructor ppt_chapter7_finalKPUCC-Rs instructor ppt_chapter7_final
KPUCC-Rs instructor ppt_chapter7_final
Fisal Anwari
 
CCNA Discovery 2 - Chapter 6
CCNA Discovery 2 - Chapter 6CCNA Discovery 2 - Chapter 6
CCNA Discovery 2 - Chapter 6
Irsandi Hasan
 
Exploration routing chapter_3
Exploration routing chapter_3Exploration routing chapter_3
Exploration routing chapter_3
Joshua Torres
 
KPUCC-Rs instructor ppt_chapter6_final
KPUCC-Rs instructor ppt_chapter6_finalKPUCC-Rs instructor ppt_chapter6_final
KPUCC-Rs instructor ppt_chapter6_final
Fisal Anwari
 
CCNA Exploration 2 - Chapter 3
CCNA Exploration 2 - Chapter 3CCNA Exploration 2 - Chapter 3
CCNA Exploration 2 - Chapter 3
Irsandi Hasan
 
Exploration routing chapter_4
Exploration routing chapter_4Exploration routing chapter_4
Exploration routing chapter_4
Joshua Torres
 

Ähnlich wie CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 3 (20)

CCNA2 Verson6 Chapter3
CCNA2 Verson6 Chapter3CCNA2 Verson6 Chapter3
CCNA2 Verson6 Chapter3
 
Chapter 18 : routing dynamically
Chapter 18 : routing dynamicallyChapter 18 : routing dynamically
Chapter 18 : routing dynamically
 
Chapter 07 - Routing Dynamically
Chapter 07 - Routing DynamicallyChapter 07 - Routing Dynamically
Chapter 07 - Routing Dynamically
 
CCNAv5 - S2: Chapter 7 Routing Dynamically
CCNAv5 - S2: Chapter 7 Routing DynamicallyCCNAv5 - S2: Chapter 7 Routing Dynamically
CCNAv5 - S2: Chapter 7 Routing Dynamically
 
KPUCC-Rs instructor ppt_chapter7_final
KPUCC-Rs instructor ppt_chapter7_finalKPUCC-Rs instructor ppt_chapter7_final
KPUCC-Rs instructor ppt_chapter7_final
 
CCNA 2 Routing and Switching v5.0 Chapter 7
CCNA 2 Routing and Switching v5.0 Chapter 7CCNA 2 Routing and Switching v5.0 Chapter 7
CCNA 2 Routing and Switching v5.0 Chapter 7
 
Exploration routing chapter 4
Exploration routing chapter 4Exploration routing chapter 4
Exploration routing chapter 4
 
CCNA Discovery 2 - Chapter 6
CCNA Discovery 2 - Chapter 6CCNA Discovery 2 - Chapter 6
CCNA Discovery 2 - Chapter 6
 
Exploration routing chapter_3
Exploration routing chapter_3Exploration routing chapter_3
Exploration routing chapter_3
 
Chapter 06 - Static Routing
Chapter 06 - Static RoutingChapter 06 - Static Routing
Chapter 06 - Static Routing
 
CCNAv5 - S2: Chapter 6 Static Routing
CCNAv5 - S2: Chapter 6 Static RoutingCCNAv5 - S2: Chapter 6 Static Routing
CCNAv5 - S2: Chapter 6 Static Routing
 
KPUCC-Rs instructor ppt_chapter6_final
KPUCC-Rs instructor ppt_chapter6_finalKPUCC-Rs instructor ppt_chapter6_final
KPUCC-Rs instructor ppt_chapter6_final
 
Chapter 17 : static routing
Chapter 17 : static routingChapter 17 : static routing
Chapter 17 : static routing
 
CCNA 2 Routing and Switching v5.0 Chapter 6
CCNA 2 Routing and Switching v5.0 Chapter 6CCNA 2 Routing and Switching v5.0 Chapter 6
CCNA 2 Routing and Switching v5.0 Chapter 6
 
OSI Network Layer
OSI Network LayerOSI Network Layer
OSI Network Layer
 
CCNA Exploration 2 - Chapter 3
CCNA Exploration 2 - Chapter 3CCNA Exploration 2 - Chapter 3
CCNA Exploration 2 - Chapter 3
 
Distance Vector Routing Protocols.ppt
Distance Vector Routing Protocols.pptDistance Vector Routing Protocols.ppt
Distance Vector Routing Protocols.ppt
 
CCNA_RSE_Chp3_Dynamic Routing NETWORKINGFBU.pptx
CCNA_RSE_Chp3_Dynamic Routing NETWORKINGFBU.pptxCCNA_RSE_Chp3_Dynamic Routing NETWORKINGFBU.pptx
CCNA_RSE_Chp3_Dynamic Routing NETWORKINGFBU.pptx
 
Cisco CCNA module 10
Cisco CCNA module 10Cisco CCNA module 10
Cisco CCNA module 10
 
Exploration routing chapter_4
Exploration routing chapter_4Exploration routing chapter_4
Exploration routing chapter_4
 

Mehr von Waqas Ahmed Nawaz

Mehr von Waqas Ahmed Nawaz (11)

CCNA (R & S) Module 04 - Scaling Networks - Chapter 9
CCNA (R & S) Module 04 - Scaling Networks - Chapter 9CCNA (R & S) Module 04 - Scaling Networks - Chapter 9
CCNA (R & S) Module 04 - Scaling Networks - Chapter 9
 
CCNA (R & S) Module 04 - Scaling Networks - Chapter 7
CCNA (R & S) Module 04 - Scaling Networks - Chapter 7CCNA (R & S) Module 04 - Scaling Networks - Chapter 7
CCNA (R & S) Module 04 - Scaling Networks - Chapter 7
 
CCNA (R & S) Module 04 - Scaling Networks - Chapter 1
CCNA (R & S) Module 04 - Scaling Networks - Chapter 1CCNA (R & S) Module 04 - Scaling Networks - Chapter 1
CCNA (R & S) Module 04 - Scaling Networks - Chapter 1
 
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 8
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 8CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 8
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 8
 
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 7
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 7CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 7
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 7
 
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 5
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 5CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 5
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 5
 
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 2
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 2CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 2
CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 2
 
CCNA (R & S) Module 02 - Connecting Networks - Chapter 4
CCNA (R & S) Module 02 - Connecting Networks - Chapter 4CCNA (R & S) Module 02 - Connecting Networks - Chapter 4
CCNA (R & S) Module 02 - Connecting Networks - Chapter 4
 
CCNA (R & S) Module 02 - Connecting Networks - Chapter 1
CCNA (R & S) Module 02 - Connecting Networks - Chapter 1CCNA (R & S) Module 02 - Connecting Networks - Chapter 1
CCNA (R & S) Module 02 - Connecting Networks - Chapter 1
 
CCNA (R & S) Module 02 - Connecting Networks - Chapter 5
CCNA (R & S) Module 02 - Connecting Networks - Chapter 5CCNA (R & S) Module 02 - Connecting Networks - Chapter 5
CCNA (R & S) Module 02 - Connecting Networks - Chapter 5
 
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 10
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 10CCNA (R & S) Module 01 - Introduction to Networks - Chapter 10
CCNA (R & S) Module 01 - Introduction to Networks - Chapter 10
 

Kürzlich hochgeladen

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
AnaAcapella
 

Kürzlich hochgeladen (20)

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 

CCNA (R & S) Module 03 - Routing & Switching Essentials - Chapter 3

  • 1. © 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 1 Chapter 3: Dynamic Routing Routing and Switching Essentials v6.0
  • 2. Presentation_ID 2© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Dynamic Routing Protocol Overview Dynamic Routing Protocol Evolution  Dynamic routing protocols have been used in networks since the late 1980s.  Newer versions support the communication based on IPv6. Routing Protocols Classification
  • 3. Presentation_ID 3© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Dynamic Routing Protocol Overview Dynamic Routing Protocols Components Routing Protocols are used to facilitate the exchange of routing information between routers. The purpose of dynamic routing protocols includes:  Discovery of remote networks  Maintaining up-to-date routing information  Choosing the best path to destination networks  Ability to find a new best path if the current path is no longer available
  • 4. Presentation_ID 4© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Dynamic Routing Protocol Overview Dynamic Routing Protocols Components (cont.) Main components of dynamic routing protocols include:  Data structures - Routing protocols typically use tables or databases for its operations. This information is kept in RAM.  Routing protocol messages - Routing protocols use various types of messages to discover neighboring routers, exchange routing information, and other tasks to learn and maintain accurate information about the network.  Algorithm - Routing protocols use algorithms for facilitating routing information for best path determination.
  • 5. Presentation_ID 5© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Dynamic versus Static Routing Static Routing Uses Networks typically use a combination of both static and dynamic routing. Static routing has several primary uses:  Providing ease of routing table maintenance in smaller networks that are not expected to grow significantly.  Routing to and from a stub network. A network with only one default route out and no knowledge of any remote networks.  Accessing a single default router. This is used to represent a path to any network that does not have a match in the routing table.
  • 6. Presentation_ID 6© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Dynamic verses Static Routing Static Routing Uses (cont.)
  • 7. Presentation_ID 7© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Dynamic verses Static Routing Static Routing Advantages and Disadvantages
  • 8. Presentation_ID 8© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Dynamic verses Static Routing Dynamic Routing Advantages & Disadvantages
  • 9. © 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 9 3.2 RIPv2
  • 10. Presentation_ID 10© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Configuring the RIP Protocol Router RIP Configuration Mode
  • 11. Presentation_ID 11© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Configuring the RIP Protocol Verify RIP Routing
  • 12. Presentation_ID 12© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Configuring the RIP Protocol Enable and Verify RIPv2
  • 13. Presentation_ID 13© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Configuring the RIP Protocol Disable Auto Summarization  Similarly to RIPv1, RIPv2 automatically summarizes networks at major network boundaries by default.  To modify the default RIPv2 behavior of automatic summarization, use the no auto-summary router configuration mode command.  This command has no effect when using RIPv1.  When automatic summarization has been disabled, RIPv2 no longer summarizes networks to their classful address at boundary routers. RIPv2 now includes all subnets and their appropriate masks in its routing updates.  The show ip protocols now states that automatic network summarization is not in effect.
  • 14. Presentation_ID 14© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Configuring the RIP Protocol Configuring Passive Interfaces Sending out unneeded updates on a LAN impacts the network in three ways:  Wasted Bandwidth  Wasted Resources  Security Risk
  • 15. Presentation_ID 15© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Configuring the RIP Protocol Propagate a Default Route
  • 16. © 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 16 3.3 The Routing Table
  • 17. Presentation_ID 17© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Parts of an IPv4 Route Entry Routing Table Entries
  • 18. Presentation_ID 18© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Parts of an IPv4 Route Entry Routing Table Entries
  • 19. Presentation_ID 19© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Parts of an IPv4 Route Entry Directly Connected Entries
  • 20. Presentation_ID 20© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Parts of an IPv4 Route Entry Remote Network Entries
  • 21. Presentation_ID 21© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Dynamically Learned IPv4 Routes Routing Table Terms Routes are discussed in terms of:  Ultimate route  Level 1 route  Level 1 parent route  Level 2 child routes
  • 22. Presentation_ID 22© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Dynamically Learned IPv4 Routes Ultimate Route An ultimate route is a routing table entry that contains either a next-hop IP address or an exit interface. Directly connected, dynamically learned, and link local routes are ultimate routes.
  • 23. Presentation_ID 23© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Dynamically Learned IPv4 Routes Level 1 Route
  • 24. Presentation_ID 24© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Dynamically Learned IPv4 Routes Level 1 Parent Route
  • 25. Presentation_ID 25© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Dynamically Learned IPv4 Routes Level 2 Child Route
  • 26. Presentation_ID 26© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 1. If the best match is a level 1 ultimate route, then this route is used to forward the packet. 2. If the best match is a level 1 parent route, proceed to the next step. 3. The router examines child routes (the subnet routes) of the parent route for a best match. 4. If there is a match with a level 2 child route, that subnet is used to forward the packet. 5. If there is not a match with any of the level 2 child routes, proceed to the next step. The IPv4 Route Lookup Process Route Lookup Process
  • 27. Presentation_ID 27© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential 6. The router continues searching level 1 supernet routes in the routing table for a match, including the default route, if there is one. 7. If there is now a lesser match with a level 1 supernet or default routes, the router uses that route to forward the packet. 8. If there is not a match with any route in the routing table, the router drops the packet. The Ipv4 Route Lookup Process Route Lookup Process (cont.)
  • 28. Presentation_ID 28© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential The IPv4 Route Lookup Process Best Route = Longest Match
  • 29. Presentation_ID 29© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential  Components of the IPv6 routing table are very similar to the IPv4 routing table (directly connected interfaces, static routes, and dynamically learned routes).  IPv6 is classless by design, all routes are effectively level 1 ultimate routes. There is no level 1 parent of level 2 child routes. The IPv4 Route Lookup Process IPv6 Routing Table Entries
  • 30. Presentation_ID 30© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Analyze an IPVv6 Routing Table Directly Connected Entries
  • 31. Presentation_ID 31© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Analyze an IPVv6 Routing Table Remote IPv6 Network Entries
  • 32. © 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 32 3.4 Summary
  • 33. Presentation_ID 33© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Chapter 3: Summary Dynamic routing protocols:  Used by routers to automatically learn about remote networks from other routers.  Purpose includes: discovery of remote networks, maintaining up-to- date routing information, choosing the best path to destination networks, and ability to find a new best path if the current path is no longer available.  Best choice for large networks but static routing is better for stub networks.  Function to inform other routers about changes.
  • 34. Presentation_ID 34© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Chapter 3: Summary (cont.) Dynamic routing protocols:  Responsible for discovering remote networks, as well as maintaining accurate network information.  Upon a change in the topology routing protocols propagate that information throughout the routing domain.  Convergence: The process of bringing all routing tables to a state of consistency, where all of the routers in the same routing domain, or area, have complete and accurate information about the network. Some routing protocols converge faster than others.
  • 35. Presentation_ID 35© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Chapter 3: Summary (cont.) Dynamic routing protocols:  Cisco routers use the administrative distance value to determine which routing source to use.  Each dynamic routing protocol has a unique administrative value, along with static routes and directly connected networks.  Directly connected networks are preferred source, followed by static routes and then various dynamic routing protocols.
  • 36. Presentation_ID 36© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Chapter 3: Summary (cont.) Dynamic routing protocols:  Each dynamic routing protocol has a unique administrative value, along with static routes and directly connected networks. The lower the administrative value, the more preferred the route source.  A directly connected network is always the preferred source, followed by static routes and then various dynamic routing protocols.  Routing table entries contain a route source, a destination network, and an outgoing interface.  Route sources can be either connected, local, static, or from a dynamic routing protocol.  IPv4 routing tables can contain four types of routes: ultimate routes, level 1 routes, level 1 parent routes, and level 2 child routes.  Because IPv6 is classless by design, all routes are effectively level 1 ultimate routes. There is no level 1 parent of level 2 child routes.
  • 37. Presentation_ID 40© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
  • 38. Presentation_ID 41© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential