SlideShare una empresa de Scribd logo
1 de 25
Chapter 5: Routing Technologies
Part One
TCP/IP AND OSI MODELS
2
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Chapter Objectives
 IP Routing
 Routing VS Routed protocols
 Static Routing VS Dynamic Routing
 Advantages and Disadvantages of each one
 Interfaces vs Lines
 Setting Up Simple Network
3
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Introduction
 It’s time now to turn our focus toward the core topic of IP routing
process.
 It’s integral to networking because it pertains to all routers and
configurations that use it.
 IP routing is basically the process of moving packets from
one network to another network using routers.
 And by routers, I mean Cisco routers, of course! However, the
terms router and layer 3 device are interchangeable
4
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
A router has the capability to read the Layer 3
header of an IP packet and make a decision on how
to proceed in forwarding the packet.
When a packet enters an interface on a router, it is
de-encapsulated by removing the Layer 2 header
information, such as the source and destination MAC
addresses.
Introduction
5
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
 However, the router takes a look at the destination IPv4 or
IPv6 address and checks its routing table for a suitable route.
 The routing table is dynamically updated when a local
interface on the router is assigned an IP address and is
enabled. In addition, the router has the capability of running
dynamic routing protocols that allow other routers on the
network to exchange routes.
 A route is simply a path to reach a destination network;
without any routes, a router won't be able to forward packets
to their destinations.
Introduction
6
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Introduction
7
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Routing protocol and Routed Protocol
 Before jumping into this chapter, I want to make sure you
understand the difference between a routing protocol and a routed
protocol.
 Routers use routing protocols to dynamically find all networks within
the greater internetwork and to ensure that all routers have the
same routing table.
 Routing protocols are also employed to determine the best path a
packet should take through an internetwork to get to its destination
most efficiently. RIP, RIPv2, EIGRP, and OSPF are great examples
of the most common routing protocols.
8
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Routing protocol and Routed Protocol
 Once all routers know about all networks, a
routed protocol can be used to send user data
(packets) through the established enterprise.
 Routed protocols are assigned to an interface
and determine the method of packet delivery.
 Examples of routed protocols are IP and IPv6.
9
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Routing Methods
 There are three basic methods of building a routing
table: Statically, Directly connected or Dynamically.
 Directly connected routes: Automatically entered in the
routing table when an interface is activated with an IP
address
 Static routes: Manually configured by the network
administrator and entered in the routing table if the exit
interface for the static route is active.
 Dynamic routes: Learned by the routers through sharing
routes with other routers that use the same routing
protocol
10
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Routing Methods
 A static routing table is created, maintained, and updated
by a network administrator, manually.
 A static route to every network must be configured on
every router for full connectivity.
 This provides a granular level of control over routing, but
quickly becomes impractical on large networks.
11
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Static Routing
 Routers will not share static routes with each other,
thus reducing CPU/RAM overhead and saving
bandwidth.
 However, static routing is not fault-tolerant, as any
change to the routing infrastructure (such as a link
going down, or a new network added) requires manual
intervention.
 Routers operating in a purely static environment
cannot seamlessly choose a better route if a link
becomes unavailable.
12
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Dynamic routing
 A dynamic routing table is created, maintained, and updated
by a routing protocol running on the router.
 Examples of routing protocols include RIP (Routing
Information Protocol), EIGRP (Enhanced Interior Gateway
Routing Protocol), and OSPF (Open Shortest Path First).
13
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Dynamic routing
 Routers do share dynamic routing information with
each other, which increases CPU, RAM, and
bandwidth usage.
 However, routing protocols are capable of
dynamically choosing a different (or better) path
when there is a change to the routing
infrastructure.
14
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Advantages and Disadvantages Static Routing
 • Minimal CPU/Memory overhead
 • No bandwidth overhead (updates are not shared between
routers)
 • Granular control on how traffic is routed
 Disadvantages
 • Infrastructure changes must be manually adjusted
 • No “dynamic” fault tolerance if a link goes down
 • Impractical on large network
15
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Advantages and Disadvantages Dynamic Routing
 • Simpler to configure on larger networks
 • Will dynamically choose a different (or better) route if a link goes
down
 • Ability to load balance between multiple links
 Disadvantages
 • Updates are shared between routers, thus consuming bandwidth
 • Routing protocols put additional load on router CPU/RAM
 • The choice of the “best route” is in the hands of the routing protocol,
and not the network administrator
16
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Interfaces vs Lines
 Interfaces are identified by both the type of interface, and the
interface number (which always begins at “0”). Thus, the first
Ethernet interface on a router would be identified as Ethernet0.
 Certain router families (such as the 3600 series) are modular, and
have multiple “slots” for interfaces.
 Thus, interfaces on these routers are identified by both the
module number and the interface number, formatted as:
module/interface.
 Thus, the third Fast Ethernet interface on the first modular slot
would be identified as FastEthernet0/2.
17
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Using Lines to Configure the IOS
 From the PC, software such as HyperTerminal is
required to make a connection from the local serial port
to the router console port.
 Some Cisco devices include an auxiliary port, in addition
to the console port.
 The auxiliary port can function similarly to a console port,
and can be accessed using a rollover cable.
 Additionally, auxiliary ports support modem commands,
thus providing dial-in access to Cisco devices.
18
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Setting Up Simple Network Using CLI Cisco Packet Tracer
Guideline: look the below Fig.
19
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Setting Up Simple Network Using CLI Cisco Packet Tracer
 Let us go!!
 Step –go privilege Mode
Router>en
 Step2: Configuration Mode
Router#config t
 Step3- Rename the device (Optional)
 Router(config)#hostname R1
 Step 4- Enables the F0/0 interface.
 R1(config)#int f0/0
 Step 5-Sets the IP address and subnet mask for the f0/0 interface
 R1(config-if)#ip add 192.168.1.1 255.255.255.0
 R1(config-if)#no shut
 Step 7 -Exits interface configuration mode and returns to global configuration mode.
 R1(config-if)#Exit
20
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Setting Up Simple Network Using CLI Cisco Packet Tracer
 Let us Configure The Other side
 Step 1- Enables the F1/0 interface.
 R1(config)#int f1/0
 Step 5-Sets the IP address and subnet mask for
the f0/0 interface
 R1(config-if)#ip add 192.168.2.1 255.255.255.0
 R1(config-if)#no shut
21
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Setting Up Simple Network Using CLI Cisco Packet Tracer
 Let us Configure The PCs
 Step 1- click the pc1
 Choose Desktop Menue
 Step -Sets the IP address and subnet mask for manual
(See the Fig)
22
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
THE PING COMMAND
 Use a ping in oder to test your network .
 ping is probably the most basic TCP/IP command line tool.
Its main purpose is to determine whether you can reach
another computer from your computer.
 It uses Internet Control Message Protocol (ICMP) to send
mandatoryECHO_REQUEST datagrams to the specified
host computer.
 When the reply is received back from the host,
the ping command displays how long it took to receive the
response.
23
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Example 2
24
© 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential
Class Work
Chapter 5 Routing.pptx

Más contenido relacionado

Similar a Chapter 5 Routing.pptx

Basic ccna interview questions and answers ~ sysnet notes
Basic ccna interview questions and answers ~ sysnet notesBasic ccna interview questions and answers ~ sysnet notes
Basic ccna interview questions and answers ~ sysnet notesVamsi Krishna Kalavala
 
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.pptxManishkumarSharma338257
 
Chapter 17 : static routing
Chapter 17 : static routingChapter 17 : static routing
Chapter 17 : static routingteknetir
 
Chapter 06 - Static Routing
Chapter 06 - Static RoutingChapter 06 - Static Routing
Chapter 06 - Static RoutingYaser Rahmati
 
CCNAv5 - S2: Chapter 6 Static Routing
CCNAv5 - S2: Chapter 6 Static RoutingCCNAv5 - S2: Chapter 6 Static Routing
CCNAv5 - S2: Chapter 6 Static RoutingVuz Dở Hơi
 
KPUCC-Rs instructor ppt_chapter6_final
KPUCC-Rs instructor ppt_chapter6_finalKPUCC-Rs instructor ppt_chapter6_final
KPUCC-Rs instructor ppt_chapter6_finalFisal Anwari
 
Routing of netwok protocls and how .pptx
Routing of netwok protocls and how .pptxRouting of netwok protocls and how .pptx
Routing of netwok protocls and how .pptxsayidkhalif
 
Chapter 18 : routing dynamically
Chapter 18 : routing dynamicallyChapter 18 : routing dynamically
Chapter 18 : routing dynamicallyteknetir
 
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 6Nil Menon
 
Chapter 07 - Routing Dynamically
Chapter 07 - Routing DynamicallyChapter 07 - Routing Dynamically
Chapter 07 - Routing DynamicallyYaser Rahmati
 
CCNAv5 - S2: Chapter 7 Routing Dynamically
CCNAv5 - S2: Chapter 7 Routing DynamicallyCCNAv5 - S2: Chapter 7 Routing Dynamically
CCNAv5 - S2: Chapter 7 Routing DynamicallyVuz Dở Hơi
 
KPUCC-Rs instructor ppt_chapter7_final
KPUCC-Rs instructor ppt_chapter7_finalKPUCC-Rs instructor ppt_chapter7_final
KPUCC-Rs instructor ppt_chapter7_finalFisal Anwari
 
CN L8 — копия.ppt
CN L8 — копия.pptCN L8 — копия.ppt
CN L8 — копия.pptAssemNazirova2
 

Similar a Chapter 5 Routing.pptx (20)

Basic ccna interview questions and answers ~ sysnet notes
Basic ccna interview questions and answers ~ sysnet notesBasic ccna interview questions and answers ~ sysnet notes
Basic ccna interview questions and answers ~ sysnet notes
 
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
 
Examen ccna capitulo 6 en ingles
Examen ccna capitulo 6 en inglesExamen ccna capitulo 6 en ingles
Examen ccna capitulo 6 en ingles
 
Static Routing
Static RoutingStatic Routing
Static Routing
 
Chapter 17 : static routing
Chapter 17 : static routingChapter 17 : static routing
Chapter 17 : static routing
 
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
 
Routing of netwok protocls and how .pptx
Routing of netwok protocls and how .pptxRouting of netwok protocls and how .pptx
Routing of netwok protocls and how .pptx
 
Chapter 18 : routing dynamically
Chapter 18 : routing dynamicallyChapter 18 : routing dynamically
Chapter 18 : routing dynamically
 
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
 
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 1 Chapter 6 v5.0 2014
CCNA 1 Chapter 6 v5.0 2014CCNA 1 Chapter 6 v5.0 2014
CCNA 1 Chapter 6 v5.0 2014
 
ENCOR_Chapter_6.pptx
ENCOR_Chapter_6.pptxENCOR_Chapter_6.pptx
ENCOR_Chapter_6.pptx
 
CCNP ROUTE V7 CH1
CCNP ROUTE V7 CH1CCNP ROUTE V7 CH1
CCNP ROUTE V7 CH1
 
CN L8 — копия.ppt
CN L8 — копия.pptCN L8 — копия.ppt
CN L8 — копия.ppt
 
Ch5
Ch5Ch5
Ch5
 
35d70683c4fd405d89db4a5287aa4b89
35d70683c4fd405d89db4a5287aa4b8935d70683c4fd405d89db4a5287aa4b89
35d70683c4fd405d89db4a5287aa4b89
 

Último

APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...APNIC
 
Indian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi EscortsIndian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi EscortsMonica Sydney
 
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...kajalverma014
 
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrStory Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrHenryBriggs2
 
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查ydyuyu
 
一比一原版奥兹学院毕业证如何办理
一比一原版奥兹学院毕业证如何办理一比一原版奥兹学院毕业证如何办理
一比一原版奥兹学院毕业证如何办理F
 
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdf
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdfpdfcoffee.com_business-ethics-q3m7-pdf-free.pdf
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdfJOHNBEBONYAP1
 
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdfMatthew Sinclair
 
Real Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtReal Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtrahman018755
 
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样ayvbos
 
Abu Dhabi Escorts Service 0508644382 Escorts in Abu Dhabi
Abu Dhabi Escorts Service 0508644382 Escorts in Abu DhabiAbu Dhabi Escorts Service 0508644382 Escorts in Abu Dhabi
Abu Dhabi Escorts Service 0508644382 Escorts in Abu DhabiMonica Sydney
 
Best SEO Services Company in Dallas | Best SEO Agency Dallas
Best SEO Services Company in Dallas | Best SEO Agency DallasBest SEO Services Company in Dallas | Best SEO Agency Dallas
Best SEO Services Company in Dallas | Best SEO Agency DallasDigicorns Technologies
 
Meaning of On page SEO & its process in detail.
Meaning of On page SEO & its process in detail.Meaning of On page SEO & its process in detail.
Meaning of On page SEO & its process in detail.krishnachandrapal52
 
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdfMatthew Sinclair
 
Vip Firozabad Phone 8250092165 Escorts Service At 6k To 30k Along With Ac Room
Vip Firozabad Phone 8250092165 Escorts Service At 6k To 30k Along With Ac RoomVip Firozabad Phone 8250092165 Escorts Service At 6k To 30k Along With Ac Room
Vip Firozabad Phone 8250092165 Escorts Service At 6k To 30k Along With Ac Roommeghakumariji156
 
Local Call Girls in Seoni 9332606886 HOT & SEXY Models beautiful and charmin...
Local Call Girls in Seoni  9332606886 HOT & SEXY Models beautiful and charmin...Local Call Girls in Seoni  9332606886 HOT & SEXY Models beautiful and charmin...
Local Call Girls in Seoni 9332606886 HOT & SEXY Models beautiful and charmin...kumargunjan9515
 
Ballia Escorts Service Girl ^ 9332606886, WhatsApp Anytime Ballia
Ballia Escorts Service Girl ^ 9332606886, WhatsApp Anytime BalliaBallia Escorts Service Girl ^ 9332606886, WhatsApp Anytime Ballia
Ballia Escorts Service Girl ^ 9332606886, WhatsApp Anytime Balliameghakumariji156
 
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制pxcywzqs
 
APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC
 

Último (20)

APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
 
Indian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi EscortsIndian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
 
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
 
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrStory Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
 
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查
 
一比一原版奥兹学院毕业证如何办理
一比一原版奥兹学院毕业证如何办理一比一原版奥兹学院毕业证如何办理
一比一原版奥兹学院毕业证如何办理
 
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdf
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdfpdfcoffee.com_business-ethics-q3m7-pdf-free.pdf
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdf
 
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
 
Real Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtReal Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirt
 
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
 
Abu Dhabi Escorts Service 0508644382 Escorts in Abu Dhabi
Abu Dhabi Escorts Service 0508644382 Escorts in Abu DhabiAbu Dhabi Escorts Service 0508644382 Escorts in Abu Dhabi
Abu Dhabi Escorts Service 0508644382 Escorts in Abu Dhabi
 
Best SEO Services Company in Dallas | Best SEO Agency Dallas
Best SEO Services Company in Dallas | Best SEO Agency DallasBest SEO Services Company in Dallas | Best SEO Agency Dallas
Best SEO Services Company in Dallas | Best SEO Agency Dallas
 
Meaning of On page SEO & its process in detail.
Meaning of On page SEO & its process in detail.Meaning of On page SEO & its process in detail.
Meaning of On page SEO & its process in detail.
 
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
 
Vip Firozabad Phone 8250092165 Escorts Service At 6k To 30k Along With Ac Room
Vip Firozabad Phone 8250092165 Escorts Service At 6k To 30k Along With Ac RoomVip Firozabad Phone 8250092165 Escorts Service At 6k To 30k Along With Ac Room
Vip Firozabad Phone 8250092165 Escorts Service At 6k To 30k Along With Ac Room
 
call girls in Anand Vihar (delhi) call me [🔝9953056974🔝] escort service 24X7
call girls in Anand Vihar (delhi) call me [🔝9953056974🔝] escort service 24X7call girls in Anand Vihar (delhi) call me [🔝9953056974🔝] escort service 24X7
call girls in Anand Vihar (delhi) call me [🔝9953056974🔝] escort service 24X7
 
Local Call Girls in Seoni 9332606886 HOT & SEXY Models beautiful and charmin...
Local Call Girls in Seoni  9332606886 HOT & SEXY Models beautiful and charmin...Local Call Girls in Seoni  9332606886 HOT & SEXY Models beautiful and charmin...
Local Call Girls in Seoni 9332606886 HOT & SEXY Models beautiful and charmin...
 
Ballia Escorts Service Girl ^ 9332606886, WhatsApp Anytime Ballia
Ballia Escorts Service Girl ^ 9332606886, WhatsApp Anytime BalliaBallia Escorts Service Girl ^ 9332606886, WhatsApp Anytime Ballia
Ballia Escorts Service Girl ^ 9332606886, WhatsApp Anytime Ballia
 
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
 
APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53
 

Chapter 5 Routing.pptx

  • 1. Chapter 5: Routing Technologies Part One TCP/IP AND OSI MODELS
  • 2. 2 © 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Chapter Objectives  IP Routing  Routing VS Routed protocols  Static Routing VS Dynamic Routing  Advantages and Disadvantages of each one  Interfaces vs Lines  Setting Up Simple Network
  • 3. 3 © 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Introduction  It’s time now to turn our focus toward the core topic of IP routing process.  It’s integral to networking because it pertains to all routers and configurations that use it.  IP routing is basically the process of moving packets from one network to another network using routers.  And by routers, I mean Cisco routers, of course! However, the terms router and layer 3 device are interchangeable
  • 4. 4 © 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential A router has the capability to read the Layer 3 header of an IP packet and make a decision on how to proceed in forwarding the packet. When a packet enters an interface on a router, it is de-encapsulated by removing the Layer 2 header information, such as the source and destination MAC addresses. Introduction
  • 5. 5 © 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential  However, the router takes a look at the destination IPv4 or IPv6 address and checks its routing table for a suitable route.  The routing table is dynamically updated when a local interface on the router is assigned an IP address and is enabled. In addition, the router has the capability of running dynamic routing protocols that allow other routers on the network to exchange routes.  A route is simply a path to reach a destination network; without any routes, a router won't be able to forward packets to their destinations. Introduction
  • 6. 6 © 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Introduction
  • 7. 7 © 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Routing protocol and Routed Protocol  Before jumping into this chapter, I want to make sure you understand the difference between a routing protocol and a routed protocol.  Routers use routing protocols to dynamically find all networks within the greater internetwork and to ensure that all routers have the same routing table.  Routing protocols are also employed to determine the best path a packet should take through an internetwork to get to its destination most efficiently. RIP, RIPv2, EIGRP, and OSPF are great examples of the most common routing protocols.
  • 8. 8 © 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Routing protocol and Routed Protocol  Once all routers know about all networks, a routed protocol can be used to send user data (packets) through the established enterprise.  Routed protocols are assigned to an interface and determine the method of packet delivery.  Examples of routed protocols are IP and IPv6.
  • 9. 9 © 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Routing Methods  There are three basic methods of building a routing table: Statically, Directly connected or Dynamically.  Directly connected routes: Automatically entered in the routing table when an interface is activated with an IP address  Static routes: Manually configured by the network administrator and entered in the routing table if the exit interface for the static route is active.  Dynamic routes: Learned by the routers through sharing routes with other routers that use the same routing protocol
  • 10. 10 © 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Routing Methods  A static routing table is created, maintained, and updated by a network administrator, manually.  A static route to every network must be configured on every router for full connectivity.  This provides a granular level of control over routing, but quickly becomes impractical on large networks.
  • 11. 11 © 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Static Routing  Routers will not share static routes with each other, thus reducing CPU/RAM overhead and saving bandwidth.  However, static routing is not fault-tolerant, as any change to the routing infrastructure (such as a link going down, or a new network added) requires manual intervention.  Routers operating in a purely static environment cannot seamlessly choose a better route if a link becomes unavailable.
  • 12. 12 © 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Dynamic routing  A dynamic routing table is created, maintained, and updated by a routing protocol running on the router.  Examples of routing protocols include RIP (Routing Information Protocol), EIGRP (Enhanced Interior Gateway Routing Protocol), and OSPF (Open Shortest Path First).
  • 13. 13 © 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Dynamic routing  Routers do share dynamic routing information with each other, which increases CPU, RAM, and bandwidth usage.  However, routing protocols are capable of dynamically choosing a different (or better) path when there is a change to the routing infrastructure.
  • 14. 14 © 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Advantages and Disadvantages Static Routing  • Minimal CPU/Memory overhead  • No bandwidth overhead (updates are not shared between routers)  • Granular control on how traffic is routed  Disadvantages  • Infrastructure changes must be manually adjusted  • No “dynamic” fault tolerance if a link goes down  • Impractical on large network
  • 15. 15 © 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Advantages and Disadvantages Dynamic Routing  • Simpler to configure on larger networks  • Will dynamically choose a different (or better) route if a link goes down  • Ability to load balance between multiple links  Disadvantages  • Updates are shared between routers, thus consuming bandwidth  • Routing protocols put additional load on router CPU/RAM  • The choice of the “best route” is in the hands of the routing protocol, and not the network administrator
  • 16. 16 © 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Interfaces vs Lines  Interfaces are identified by both the type of interface, and the interface number (which always begins at “0”). Thus, the first Ethernet interface on a router would be identified as Ethernet0.  Certain router families (such as the 3600 series) are modular, and have multiple “slots” for interfaces.  Thus, interfaces on these routers are identified by both the module number and the interface number, formatted as: module/interface.  Thus, the third Fast Ethernet interface on the first modular slot would be identified as FastEthernet0/2.
  • 17. 17 © 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Using Lines to Configure the IOS  From the PC, software such as HyperTerminal is required to make a connection from the local serial port to the router console port.  Some Cisco devices include an auxiliary port, in addition to the console port.  The auxiliary port can function similarly to a console port, and can be accessed using a rollover cable.  Additionally, auxiliary ports support modem commands, thus providing dial-in access to Cisco devices.
  • 18. 18 © 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Setting Up Simple Network Using CLI Cisco Packet Tracer Guideline: look the below Fig.
  • 19. 19 © 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Setting Up Simple Network Using CLI Cisco Packet Tracer  Let us go!!  Step –go privilege Mode Router>en  Step2: Configuration Mode Router#config t  Step3- Rename the device (Optional)  Router(config)#hostname R1  Step 4- Enables the F0/0 interface.  R1(config)#int f0/0  Step 5-Sets the IP address and subnet mask for the f0/0 interface  R1(config-if)#ip add 192.168.1.1 255.255.255.0  R1(config-if)#no shut  Step 7 -Exits interface configuration mode and returns to global configuration mode.  R1(config-if)#Exit
  • 20. 20 © 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Setting Up Simple Network Using CLI Cisco Packet Tracer  Let us Configure The Other side  Step 1- Enables the F1/0 interface.  R1(config)#int f1/0  Step 5-Sets the IP address and subnet mask for the f0/0 interface  R1(config-if)#ip add 192.168.2.1 255.255.255.0  R1(config-if)#no shut
  • 21. 21 © 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Setting Up Simple Network Using CLI Cisco Packet Tracer  Let us Configure The PCs  Step 1- click the pc1  Choose Desktop Menue  Step -Sets the IP address and subnet mask for manual (See the Fig)
  • 22. 22 © 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential THE PING COMMAND  Use a ping in oder to test your network .  ping is probably the most basic TCP/IP command line tool. Its main purpose is to determine whether you can reach another computer from your computer.  It uses Internet Control Message Protocol (ICMP) to send mandatoryECHO_REQUEST datagrams to the specified host computer.  When the reply is received back from the host, the ping command displays how long it took to receive the response.
  • 23. 23 © 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Example 2
  • 24. 24 © 2016 Cisco and/or its affiliates. All rights reserved. Cisco Confidential Class Work