SlideShare a Scribd company logo
1 of 3
Download to read offline
CCNA4.com

Quick Guide - Ip Routing
- Typically, in a large network, a combination of both static and dynamic routing is used.
- A packet can also be dropped on the RETURN trip. Example -- if you ping a host and it
doesn't answer, that doesn't necessarily mean the forward path is broken.
- Static Routing -- an entry is added to the routing table of each router, for each remote
network.
- Static Routing Advantages -- no overhead on the router CPU, no bandwidth usage between
routers, security. Primarily used in small networks (< id="fullpost">
- Default Routing -- can only be used on stub networks (only one exit port out of the
network).
- Before setting up a default route, remove any static routing entries -- "no ip route
172.16.20.0 255.255.255.0 172.16.10.2".
- Set up a default route -- "ip route 0.0.0.0 0.0.0.0 172.16.10.2". Verify the changes -- "sh ip
route" -- the default route shows as "S*".
- ALWAYS remember to use "ip subnet-zero" and "ip classless" -- both are enabled by
default in Cisco IOS 12.x.
- Dynamic Routing -- happens automatically, but uses CPU and network resources.
- Dynamic Routing Protocols within a network:
- RIP -- Routing Information Protocol.
- IGRP -- Interior Gateway Routing Protocol -- Cisco proprietary.
- EIGRP -- Enhanced Interior Gateway Routing Protocol -- Cisco proprietary.
- OSPF -- Open Shortest Path First -- non-proprietary.
- Dynamic Routing Protocols across networks:
- IGP -- Interior Gateway Protocol -- routing between routers in the same Autonomous
System (AS).
- EGP -- Exterior Gateway Protocol -- routing between different Autonomous Systems. BGP
(Border Gateway Protocol) is an example of an EGP.
- Administrative Distance -- a number from 0 to 255, where 0 is most reliable, 255 is blocked.
- If two advertised routes for the same network have the same ADs, the router makes a
decision by looking at hop count or bandwidth.
- AD values:
- 0 -- Connected interface.
- 1 -- Static route.
- 90 -- EIGRP.
- 100 -- IGRP.
- 110 -- OSPF.
- 120 -- RIP.
- 170 -- External EIGRP.
- 255 -- Unknown -- this one will never be used.
- Routing Protocol Types:
- Distance Vector -- distance is measured in hops. Examples -- RIP, IGRP.
- Link State -- also called Shortest Path First -- 3 tables per router -- 1 for directly attached
neighbors, 1 for network topology, and 1 for routing. Examples -- OSPF.
- Hybrid -- these use a combination of both methods -- EIGRP.
- Distance Vector Routing Protocols -- they use "routing by rumor" -- exchange of routing
tables. RIP looks at ADs first, then at hop count. If everything is equal, it performs round-
robin load balancing for up to 6 equal cost links.
- Pinhole Congestion -- with RIP routing, if a 56K link has less hops than a T1 link, the 56K
link will be used -- this is bad, and happens because hop count is the only metric used with
RIP routing.
- Slow Convergence is another problem of RIP. While the routers are converging

CCNA4.com
CCNA4.com
(synchronizing their routing tables), no data is passed.
- RIP Routing table fields -- network number, exit interface, and hop count.
- Routing loops are also a common problem in RIP. They result from the slow convergence of
RIP.
- Maximum Hop Count -- RIP has this set to 15. After that, a packet is dropped. Maximum
Hop Count is a good feature to decrease the severe effects of routing loops.
- Split Horizon -- information cannot be sent back in the direction from which it was received.
This method is able to prevent routing loops.
- Route Poisoning -- when a network becomes unreachable, the first directly attached router
places a "16" entry (unreachable) for this network in its routing table, and then advertises it to
all other routers. They reply with a "poison reverse" (acknowledgement).
- Holddowns -- these prevent regular update messages from a flapping network, router, or
interface. Thus, the flow of information continues.
- Holddown behavior:
- Holddowns have a timer. When it expires, the link is reinstated.
- If another update is received, with a better metric, the link is reinstated. If the metric is the
same, nothing happens.
- If a flush timer removes the bad route from the routing table (if it happens to expire --
coincidence), the link is reinstated.
- RIP is a true distance-vector routing protocol. It sends the complete routing table to all
active interfaces every 30 seconds.
- RIP Version 1 uses only classful routing. RIP Version 2 provides prefix routing (classless
routing) -- no subnet mask is sent with the updates.
- RIP Timers:
- Route update timer -- how often to send out updates -- default is 30 seconds.
- Route invalid timer -- when there are no updates for a specific route over a time period
(default is 90 seconds), the route is advertised as invalid.
- Route flush timer -- how long after a route becomes invalid before it is removed from the
routing table -- default is 240 seconds.
- Configure RIP routing -- Make sure there are no static routes, as they take precedence. Then
-- "config t", "router rip", "network 172.16.0.0" -- "network" tells the router which network to
advertise.
- RIP is configured with classful routing network addresses -- ALL subnet masks must be the
same on all devices on the network.
- "sh ip route" displays something like this -- "R 172.16.50.0 [120/3] via 172.16.10.2,
FastEthernet0/0" -- "[120/3]" is the AD and the hop count.
- Blocking RIP advertisements after a certain point of the network -- "config t", "router rip",
"network 172.16.0.0", "passive-interface serial 0" -- serial 0 will stop advertising, but will still
receive updates.
- IGRP -- Cisco proprietary, maximum hop count of 255 with default of 100, helpful in larger
networks. IGRP uses bandwidth and delay of the line as metrics -- this combination is called a
composite metric.
- IGRP can also use other metrics, but they are not used by default -- reliability, load, and
MTU.
- IGRP Timers:
- Update timer -- how frequently routing-update messages should be sent -- default is 90
seconds.
- Invalid timer -- how long a router should wait before declaring a route invalid -- default is 3
x update timer.
- Holddown timer -- specifies the holddown period -- default is 3 x update timer + 10 seconds.
- Flush timer -- how long before a route is flushed from the routing table -- default is 7 x
update timer.

CCNA4.com
CCNA4.com
- Configure IGRP -- "config t", "router igrp 10", "network 172.16.0.0" -- "10" is the
Autonomous System (AS). All routers must be in the same AS in order to communicate.
- You must ALWAYS use a classful network number when configuring IGRP. Example -- if
you type "172.16.10.0", the router will change it to "172.16.0.0". Still, DO NOT type
anything like this.
- IGRP can load balance up to 6 unequal links (while with RIP, they must be equal). The
"variance" command controls the load balancing between the best and the worst metric.
- If both RIP and IGRP are enabled on a router, it will always use IGRP, as IGRP has higher
precedence. Therefore, when using IGRP, disable RIP in order to spare resources.
- Commands to troubleshoot routing:
- "show ip route" -- displays the routing table.
- "show protocols" -- displays hardware information and link status.
- "show ip protocols" -- lots of routing information, including various parameters.
- "debug ip rip" -- sends debugging messages to the console. Can be redirected to the terminal
via "terminal monitor". Disable with "undebug all".
- "debug ip igrp events" -- debug summary of IGRP. Disable with "undebug" or "undebug
all".
- "debug ip igrp transactions" -- full debug of IGRP. Again, disable with "undebug all".

                                                                                   By badboy




CCNA4.com

More Related Content

What's hot

Day 3 ENHANCED IGRP (EIGRP) AND OPEN SHORTEST PATH FIRST (OSPF)
Day 3 ENHANCED IGRP (EIGRP) AND OPEN SHORTEST PATH FIRST (OSPF)Day 3 ENHANCED IGRP (EIGRP) AND OPEN SHORTEST PATH FIRST (OSPF)
Day 3 ENHANCED IGRP (EIGRP) AND OPEN SHORTEST PATH FIRST (OSPF)anilinvns
 
Class notes fhrp,hsrp,vrrp
Class notes fhrp,hsrp,vrrpClass notes fhrp,hsrp,vrrp
Class notes fhrp,hsrp,vrrpSagarR24
 
Securing management, control & data plane
Securing management, control & data planeSecuring management, control & data plane
Securing management, control & data planeNetProtocol Xpert
 
Day 5 VIRTUAL LANS
Day 5 VIRTUAL LANSDay 5 VIRTUAL LANS
Day 5 VIRTUAL LANSanilinvns
 
Ccna 2 chapter 2 v4.0 answers 2011
Ccna 2 chapter 2 v4.0 answers 2011Ccna 2 chapter 2 v4.0 answers 2011
Ccna 2 chapter 2 v4.0 answers 2011Dân Chơi
 
Chapter 17 : static routing
Chapter 17 : static routingChapter 17 : static routing
Chapter 17 : static routingteknetir
 
VIRTUAL LANS
VIRTUAL LANSVIRTUAL LANS
VIRTUAL LANSanilinvns
 
Exploration Routing Chapter 7
Exploration Routing Chapter 7Exploration Routing Chapter 7
Exploration Routing Chapter 7jayhawkins
 
EIGRP Automatic & Manual Summarization
EIGRP Automatic & Manual SummarizationEIGRP Automatic & Manual Summarization
EIGRP Automatic & Manual Summarization NetProtocol Xpert
 
Class notes fhrp,hsrp
Class notes  fhrp,hsrpClass notes  fhrp,hsrp
Class notes fhrp,hsrpSagarR24
 
Exploration Routing Chapter 4
Exploration Routing Chapter 4Exploration Routing Chapter 4
Exploration Routing Chapter 4thanh cong
 
Dynamic Routing All Algorithms, Working And Basics
Dynamic Routing All Algorithms, Working And BasicsDynamic Routing All Algorithms, Working And Basics
Dynamic Routing All Algorithms, Working And BasicsHarsh Mehta
 
Router configuration in packet tracer
Router configuration in packet  tracerRouter configuration in packet  tracer
Router configuration in packet tracerAnabia Anabia
 
NST Product Catalog
NST Product CatalogNST Product Catalog
NST Product Catalogmoonhyo
 

What's hot (20)

Day 3 ENHANCED IGRP (EIGRP) AND OPEN SHORTEST PATH FIRST (OSPF)
Day 3 ENHANCED IGRP (EIGRP) AND OPEN SHORTEST PATH FIRST (OSPF)Day 3 ENHANCED IGRP (EIGRP) AND OPEN SHORTEST PATH FIRST (OSPF)
Day 3 ENHANCED IGRP (EIGRP) AND OPEN SHORTEST PATH FIRST (OSPF)
 
Class notes fhrp,hsrp,vrrp
Class notes fhrp,hsrp,vrrpClass notes fhrp,hsrp,vrrp
Class notes fhrp,hsrp,vrrp
 
EIGRP Overview
EIGRP OverviewEIGRP Overview
EIGRP Overview
 
Securing management, control & data plane
Securing management, control & data planeSecuring management, control & data plane
Securing management, control & data plane
 
Day 5 VIRTUAL LANS
Day 5 VIRTUAL LANSDay 5 VIRTUAL LANS
Day 5 VIRTUAL LANS
 
Ccna 2 chapter 2 v4.0 answers 2011
Ccna 2 chapter 2 v4.0 answers 2011Ccna 2 chapter 2 v4.0 answers 2011
Ccna 2 chapter 2 v4.0 answers 2011
 
Day 3.1 basic routing
Day 3.1 basic routing Day 3.1 basic routing
Day 3.1 basic routing
 
OTV Configuration
OTV ConfigurationOTV Configuration
OTV Configuration
 
Chapter 17 : static routing
Chapter 17 : static routingChapter 17 : static routing
Chapter 17 : static routing
 
VIRTUAL LANS
VIRTUAL LANSVIRTUAL LANS
VIRTUAL LANS
 
Exploration Routing Chapter 7
Exploration Routing Chapter 7Exploration Routing Chapter 7
Exploration Routing Chapter 7
 
Dynamic routing
Dynamic routingDynamic routing
Dynamic routing
 
Routing protocols
Routing protocolsRouting protocols
Routing protocols
 
EIGRP Automatic & Manual Summarization
EIGRP Automatic & Manual SummarizationEIGRP Automatic & Manual Summarization
EIGRP Automatic & Manual Summarization
 
Class notes fhrp,hsrp
Class notes  fhrp,hsrpClass notes  fhrp,hsrp
Class notes fhrp,hsrp
 
Exploration Routing Chapter 4
Exploration Routing Chapter 4Exploration Routing Chapter 4
Exploration Routing Chapter 4
 
Dynamic Routing All Algorithms, Working And Basics
Dynamic Routing All Algorithms, Working And BasicsDynamic Routing All Algorithms, Working And Basics
Dynamic Routing All Algorithms, Working And Basics
 
Router configuration in packet tracer
Router configuration in packet  tracerRouter configuration in packet  tracer
Router configuration in packet tracer
 
Arun project-Final
Arun project-FinalArun project-Final
Arun project-Final
 
NST Product Catalog
NST Product CatalogNST Product Catalog
NST Product Catalog
 

Viewers also liked

Aqua Terra CP # 046 Chapala
Aqua Terra CP # 046 ChapalaAqua Terra CP # 046 Chapala
Aqua Terra CP # 046 ChapalaAqua Terra
 
Presentación
PresentaciónPresentación
Presentaciónkaty.com
 
CandidateReach - Fast 50 Jobportale mit einem Klick
CandidateReach - Fast 50 Jobportale mit einem KlickCandidateReach - Fast 50 Jobportale mit einem Klick
CandidateReach - Fast 50 Jobportale mit einem KlickWolfgang Brickwedde
 
Manual de carrera_magisterial_2011[1]
Manual de carrera_magisterial_2011[1]Manual de carrera_magisterial_2011[1]
Manual de carrera_magisterial_2011[1]Sergd
 
Trujillo Y Cano. Sevilla Fc
Trujillo Y Cano. Sevilla FcTrujillo Y Cano. Sevilla Fc
Trujillo Y Cano. Sevilla FcGtrujillo
 
Tutorial Movie Maker
Tutorial Movie MakerTutorial Movie Maker
Tutorial Movie MakerAlbbaycarmen
 
Clase De PresentacióN 2009
Clase De PresentacióN 2009Clase De PresentacióN 2009
Clase De PresentacióN 2009infosistemasuno
 
Programalevante09
Programalevante09Programalevante09
Programalevante09guest592fb8
 
Sio2009 Eq10 T2 Reñ Jose Carlos Hernandez Paez
Sio2009 Eq10 T2 Reñ Jose Carlos Hernandez PaezSio2009 Eq10 T2 Reñ Jose Carlos Hernandez Paez
Sio2009 Eq10 T2 Reñ Jose Carlos Hernandez Paezpaez27
 
MCAP MEDIA PRESENATION 2009
MCAP MEDIA PRESENATION 2009MCAP MEDIA PRESENATION 2009
MCAP MEDIA PRESENATION 2009tmiceli
 
Vilalba mucho que ver
Vilalba mucho que verVilalba mucho que ver
Vilalba mucho que vernatturismo
 
Index Blocs
Index BlocsIndex Blocs
Index Blocsstroobo
 
Del Moisés a la cuna, de la cuna a la cama
Del Moisés a la cuna, de la cuna a la camaDel Moisés a la cuna, de la cuna a la cama
Del Moisés a la cuna, de la cuna a la camanueldra28
 
R E S P I R A T O R I O V A R I O S
R E S P I R A T O R I O  V A R I O SR E S P I R A T O R I O  V A R I O S
R E S P I R A T O R I O V A R I O Saincris
 

Viewers also liked (20)

Manuales
ManualesManuales
Manuales
 
Aqua Terra CP # 046 Chapala
Aqua Terra CP # 046 ChapalaAqua Terra CP # 046 Chapala
Aqua Terra CP # 046 Chapala
 
Estudi
EstudiEstudi
Estudi
 
Presentación
PresentaciónPresentación
Presentación
 
CandidateReach - Fast 50 Jobportale mit einem Klick
CandidateReach - Fast 50 Jobportale mit einem KlickCandidateReach - Fast 50 Jobportale mit einem Klick
CandidateReach - Fast 50 Jobportale mit einem Klick
 
Semana
SemanaSemana
Semana
 
Videodigital
VideodigitalVideodigital
Videodigital
 
Manual de carrera_magisterial_2011[1]
Manual de carrera_magisterial_2011[1]Manual de carrera_magisterial_2011[1]
Manual de carrera_magisterial_2011[1]
 
Clase Tres Entrada 2009
Clase Tres Entrada 2009Clase Tres Entrada 2009
Clase Tres Entrada 2009
 
Trujillo Y Cano. Sevilla Fc
Trujillo Y Cano. Sevilla FcTrujillo Y Cano. Sevilla Fc
Trujillo Y Cano. Sevilla Fc
 
Tutorial Movie Maker
Tutorial Movie MakerTutorial Movie Maker
Tutorial Movie Maker
 
Clase De PresentacióN 2009
Clase De PresentacióN 2009Clase De PresentacióN 2009
Clase De PresentacióN 2009
 
Programalevante09
Programalevante09Programalevante09
Programalevante09
 
Oromero
OromeroOromero
Oromero
 
Sio2009 Eq10 T2 Reñ Jose Carlos Hernandez Paez
Sio2009 Eq10 T2 Reñ Jose Carlos Hernandez PaezSio2009 Eq10 T2 Reñ Jose Carlos Hernandez Paez
Sio2009 Eq10 T2 Reñ Jose Carlos Hernandez Paez
 
MCAP MEDIA PRESENATION 2009
MCAP MEDIA PRESENATION 2009MCAP MEDIA PRESENATION 2009
MCAP MEDIA PRESENATION 2009
 
Vilalba mucho que ver
Vilalba mucho que verVilalba mucho que ver
Vilalba mucho que ver
 
Index Blocs
Index BlocsIndex Blocs
Index Blocs
 
Del Moisés a la cuna, de la cuna a la cama
Del Moisés a la cuna, de la cuna a la camaDel Moisés a la cuna, de la cuna a la cama
Del Moisés a la cuna, de la cuna a la cama
 
R E S P I R A T O R I O V A R I O S
R E S P I R A T O R I O  V A R I O SR E S P I R A T O R I O  V A R I O S
R E S P I R A T O R I O V A R I O S
 

Similar to Quick Guide Ip Routing

Building Scalable Cisco Internetworks (Bsci)
Building Scalable Cisco Internetworks (Bsci)Building Scalable Cisco Internetworks (Bsci)
Building Scalable Cisco Internetworks (Bsci)CCNAResources
 
CCNA ppt Day 5
CCNA ppt Day 5CCNA ppt Day 5
CCNA ppt Day 5VISHNU N
 
chapter 1 &2 RIPv1&2.ppt
chapter 1 &2 RIPv1&2.pptchapter 1 &2 RIPv1&2.ppt
chapter 1 &2 RIPv1&2.pptbirhanugebisa1
 
RIP (routing information protocol)
RIP (routing information protocol)RIP (routing information protocol)
RIP (routing information protocol)Netwax Lab
 
Ccna 2 chapter 3 v4.0 answers 2011
Ccna 2 chapter 3 v4.0 answers 2011Ccna 2 chapter 3 v4.0 answers 2011
Ccna 2 chapter 3 v4.0 answers 2011Dân Chơi
 
BÀI TẬP 01.docx
BÀI TẬP 01.docxBÀI TẬP 01.docx
BÀI TẬP 01.docxssuseraf0e77
 
BÀI TẬP 01.docx
BÀI TẬP 01.docxBÀI TẬP 01.docx
BÀI TẬP 01.docxssuseraf0e77
 
Eigrp Summary (Ccna4.Com)
Eigrp Summary  (Ccna4.Com)Eigrp Summary  (Ccna4.Com)
Eigrp Summary (Ccna4.Com)CCNAResources
 
Ccna 2 v 4.0 final-exam-19-06-2010
Ccna 2 v 4.0 final-exam-19-06-2010Ccna 2 v 4.0 final-exam-19-06-2010
Ccna 2 v 4.0 final-exam-19-06-2010irbas
 
Ccna 2 v 4.0 final-exam-19-06-2010
Ccna 2 v 4.0 final-exam-19-06-2010Ccna 2 v 4.0 final-exam-19-06-2010
Ccna 2 v 4.0 final-exam-19-06-2010irbas
 

Similar to Quick Guide Ip Routing (20)

Igrp
IgrpIgrp
Igrp
 
Dynamic routing
Dynamic routingDynamic routing
Dynamic routing
 
Building Scalable Cisco Internetworks (Bsci)
Building Scalable Cisco Internetworks (Bsci)Building Scalable Cisco Internetworks (Bsci)
Building Scalable Cisco Internetworks (Bsci)
 
Day 10 rip
Day 10 ripDay 10 rip
Day 10 rip
 
ccna networking ppt
ccna networking pptccna networking ppt
ccna networking ppt
 
Chapter6ccna
Chapter6ccnaChapter6ccna
Chapter6ccna
 
Chapter6ccna
Chapter6ccnaChapter6ccna
Chapter6ccna
 
CCNA ppt Day 5
CCNA ppt Day 5CCNA ppt Day 5
CCNA ppt Day 5
 
chapter 1 &2 RIPv1&2.ppt
chapter 1 &2 RIPv1&2.pptchapter 1 &2 RIPv1&2.ppt
chapter 1 &2 RIPv1&2.ppt
 
Eigrp new
Eigrp newEigrp new
Eigrp new
 
Routing protocols
Routing protocolsRouting protocols
Routing protocols
 
RIP (routing information protocol)
RIP (routing information protocol)RIP (routing information protocol)
RIP (routing information protocol)
 
6978106.ppt
6978106.ppt6978106.ppt
6978106.ppt
 
Ccna 2 chapter 3 v4.0 answers 2011
Ccna 2 chapter 3 v4.0 answers 2011Ccna 2 chapter 3 v4.0 answers 2011
Ccna 2 chapter 3 v4.0 answers 2011
 
BÀI TẬP 01.docx
BÀI TẬP 01.docxBÀI TẬP 01.docx
BÀI TẬP 01.docx
 
BÀI TẬP 01.docx
BÀI TẬP 01.docxBÀI TẬP 01.docx
BÀI TẬP 01.docx
 
Eigrp Summary (Ccna4.Com)
Eigrp Summary  (Ccna4.Com)Eigrp Summary  (Ccna4.Com)
Eigrp Summary (Ccna4.Com)
 
Qs.pptx
Qs.pptxQs.pptx
Qs.pptx
 
Ccna 2 v 4.0 final-exam-19-06-2010
Ccna 2 v 4.0 final-exam-19-06-2010Ccna 2 v 4.0 final-exam-19-06-2010
Ccna 2 v 4.0 final-exam-19-06-2010
 
Ccna 2 v 4.0 final-exam-19-06-2010
Ccna 2 v 4.0 final-exam-19-06-2010Ccna 2 v 4.0 final-exam-19-06-2010
Ccna 2 v 4.0 final-exam-19-06-2010
 

More from CCNAResources

Ccna Wireless Study Guide
Ccna Wireless Study GuideCcna Wireless Study Guide
Ccna Wireless Study GuideCCNAResources
 
Ccna Wireless Study Guide
Ccna  Wireless Study GuideCcna  Wireless Study Guide
Ccna Wireless Study GuideCCNAResources
 
Subneting And Summarization
Subneting And  SummarizationSubneting And  Summarization
Subneting And SummarizationCCNAResources
 
Subneting And Summarization
Subneting And SummarizationSubneting And Summarization
Subneting And SummarizationCCNAResources
 
1000 Ccna Questions And Answers
1000 Ccna Questions And Answers1000 Ccna Questions And Answers
1000 Ccna Questions And AnswersCCNAResources
 
Quick Guide Layer 2 Switching
Quick Guide   Layer 2 SwitchingQuick Guide   Layer 2 Switching
Quick Guide Layer 2 SwitchingCCNAResources
 
Ccna Wireless Resources
Ccna Wireless ResourcesCcna Wireless Resources
Ccna Wireless ResourcesCCNAResources
 
Ccna Quick Notes –VLANs
Ccna Quick Notes –VLANsCcna Quick Notes –VLANs
Ccna Quick Notes –VLANsCCNAResources
 
Ccna Commands In 10 Minutes
Ccna Commands In 10 MinutesCcna Commands In 10 Minutes
Ccna Commands In 10 MinutesCCNAResources
 
Lab08 Rip Routing (Ccna4.Com)
Lab08 Rip Routing (Ccna4.Com)Lab08 Rip Routing (Ccna4.Com)
Lab08 Rip Routing (Ccna4.Com)CCNAResources
 
Lab09 Rip Routing (Ccna4.Com)
Lab09 Rip Routing (Ccna4.Com)Lab09 Rip Routing (Ccna4.Com)
Lab09 Rip Routing (Ccna4.Com)CCNAResources
 

More from CCNAResources (15)

Iscw Cram Sheet
Iscw Cram SheetIscw Cram Sheet
Iscw Cram Sheet
 
Ccna Wireless Study Guide
Ccna Wireless Study GuideCcna Wireless Study Guide
Ccna Wireless Study Guide
 
Ip Access Lists
Ip Access ListsIp Access Lists
Ip Access Lists
 
Ccna Wireless Study Guide
Ccna  Wireless Study GuideCcna  Wireless Study Guide
Ccna Wireless Study Guide
 
Subneting And Summarization
Subneting And  SummarizationSubneting And  Summarization
Subneting And Summarization
 
Subneting And Summarization
Subneting And SummarizationSubneting And Summarization
Subneting And Summarization
 
1000 Ccna Questions And Answers
1000 Ccna Questions And Answers1000 Ccna Questions And Answers
1000 Ccna Questions And Answers
 
Quick Guide VLANs
Quick Guide   VLANsQuick Guide   VLANs
Quick Guide VLANs
 
Quick Guide Layer 2 Switching
Quick Guide   Layer 2 SwitchingQuick Guide   Layer 2 Switching
Quick Guide Layer 2 Switching
 
Ccna Wireless Resources
Ccna Wireless ResourcesCcna Wireless Resources
Ccna Wireless Resources
 
Ccna Quick Notes –VLANs
Ccna Quick Notes –VLANsCcna Quick Notes –VLANs
Ccna Quick Notes –VLANs
 
Ccna Commands In 10 Minutes
Ccna Commands In 10 MinutesCcna Commands In 10 Minutes
Ccna Commands In 10 Minutes
 
Lab08 Rip Routing (Ccna4.Com)
Lab08 Rip Routing (Ccna4.Com)Lab08 Rip Routing (Ccna4.Com)
Lab08 Rip Routing (Ccna4.Com)
 
Lab09 Rip Routing (Ccna4.Com)
Lab09 Rip Routing (Ccna4.Com)Lab09 Rip Routing (Ccna4.Com)
Lab09 Rip Routing (Ccna4.Com)
 
Ip Access Lists
Ip Access ListsIp Access Lists
Ip Access Lists
 

Recently uploaded

Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
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
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
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
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
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
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 

Recently uploaded (20)

Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
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
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.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
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
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
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 

Quick Guide Ip Routing

  • 1. CCNA4.com Quick Guide - Ip Routing - Typically, in a large network, a combination of both static and dynamic routing is used. - A packet can also be dropped on the RETURN trip. Example -- if you ping a host and it doesn't answer, that doesn't necessarily mean the forward path is broken. - Static Routing -- an entry is added to the routing table of each router, for each remote network. - Static Routing Advantages -- no overhead on the router CPU, no bandwidth usage between routers, security. Primarily used in small networks (< id="fullpost"> - Default Routing -- can only be used on stub networks (only one exit port out of the network). - Before setting up a default route, remove any static routing entries -- "no ip route 172.16.20.0 255.255.255.0 172.16.10.2". - Set up a default route -- "ip route 0.0.0.0 0.0.0.0 172.16.10.2". Verify the changes -- "sh ip route" -- the default route shows as "S*". - ALWAYS remember to use "ip subnet-zero" and "ip classless" -- both are enabled by default in Cisco IOS 12.x. - Dynamic Routing -- happens automatically, but uses CPU and network resources. - Dynamic Routing Protocols within a network: - RIP -- Routing Information Protocol. - IGRP -- Interior Gateway Routing Protocol -- Cisco proprietary. - EIGRP -- Enhanced Interior Gateway Routing Protocol -- Cisco proprietary. - OSPF -- Open Shortest Path First -- non-proprietary. - Dynamic Routing Protocols across networks: - IGP -- Interior Gateway Protocol -- routing between routers in the same Autonomous System (AS). - EGP -- Exterior Gateway Protocol -- routing between different Autonomous Systems. BGP (Border Gateway Protocol) is an example of an EGP. - Administrative Distance -- a number from 0 to 255, where 0 is most reliable, 255 is blocked. - If two advertised routes for the same network have the same ADs, the router makes a decision by looking at hop count or bandwidth. - AD values: - 0 -- Connected interface. - 1 -- Static route. - 90 -- EIGRP. - 100 -- IGRP. - 110 -- OSPF. - 120 -- RIP. - 170 -- External EIGRP. - 255 -- Unknown -- this one will never be used. - Routing Protocol Types: - Distance Vector -- distance is measured in hops. Examples -- RIP, IGRP. - Link State -- also called Shortest Path First -- 3 tables per router -- 1 for directly attached neighbors, 1 for network topology, and 1 for routing. Examples -- OSPF. - Hybrid -- these use a combination of both methods -- EIGRP. - Distance Vector Routing Protocols -- they use "routing by rumor" -- exchange of routing tables. RIP looks at ADs first, then at hop count. If everything is equal, it performs round- robin load balancing for up to 6 equal cost links. - Pinhole Congestion -- with RIP routing, if a 56K link has less hops than a T1 link, the 56K link will be used -- this is bad, and happens because hop count is the only metric used with RIP routing. - Slow Convergence is another problem of RIP. While the routers are converging CCNA4.com
  • 2. CCNA4.com (synchronizing their routing tables), no data is passed. - RIP Routing table fields -- network number, exit interface, and hop count. - Routing loops are also a common problem in RIP. They result from the slow convergence of RIP. - Maximum Hop Count -- RIP has this set to 15. After that, a packet is dropped. Maximum Hop Count is a good feature to decrease the severe effects of routing loops. - Split Horizon -- information cannot be sent back in the direction from which it was received. This method is able to prevent routing loops. - Route Poisoning -- when a network becomes unreachable, the first directly attached router places a "16" entry (unreachable) for this network in its routing table, and then advertises it to all other routers. They reply with a "poison reverse" (acknowledgement). - Holddowns -- these prevent regular update messages from a flapping network, router, or interface. Thus, the flow of information continues. - Holddown behavior: - Holddowns have a timer. When it expires, the link is reinstated. - If another update is received, with a better metric, the link is reinstated. If the metric is the same, nothing happens. - If a flush timer removes the bad route from the routing table (if it happens to expire -- coincidence), the link is reinstated. - RIP is a true distance-vector routing protocol. It sends the complete routing table to all active interfaces every 30 seconds. - RIP Version 1 uses only classful routing. RIP Version 2 provides prefix routing (classless routing) -- no subnet mask is sent with the updates. - RIP Timers: - Route update timer -- how often to send out updates -- default is 30 seconds. - Route invalid timer -- when there are no updates for a specific route over a time period (default is 90 seconds), the route is advertised as invalid. - Route flush timer -- how long after a route becomes invalid before it is removed from the routing table -- default is 240 seconds. - Configure RIP routing -- Make sure there are no static routes, as they take precedence. Then -- "config t", "router rip", "network 172.16.0.0" -- "network" tells the router which network to advertise. - RIP is configured with classful routing network addresses -- ALL subnet masks must be the same on all devices on the network. - "sh ip route" displays something like this -- "R 172.16.50.0 [120/3] via 172.16.10.2, FastEthernet0/0" -- "[120/3]" is the AD and the hop count. - Blocking RIP advertisements after a certain point of the network -- "config t", "router rip", "network 172.16.0.0", "passive-interface serial 0" -- serial 0 will stop advertising, but will still receive updates. - IGRP -- Cisco proprietary, maximum hop count of 255 with default of 100, helpful in larger networks. IGRP uses bandwidth and delay of the line as metrics -- this combination is called a composite metric. - IGRP can also use other metrics, but they are not used by default -- reliability, load, and MTU. - IGRP Timers: - Update timer -- how frequently routing-update messages should be sent -- default is 90 seconds. - Invalid timer -- how long a router should wait before declaring a route invalid -- default is 3 x update timer. - Holddown timer -- specifies the holddown period -- default is 3 x update timer + 10 seconds. - Flush timer -- how long before a route is flushed from the routing table -- default is 7 x update timer. CCNA4.com
  • 3. CCNA4.com - Configure IGRP -- "config t", "router igrp 10", "network 172.16.0.0" -- "10" is the Autonomous System (AS). All routers must be in the same AS in order to communicate. - You must ALWAYS use a classful network number when configuring IGRP. Example -- if you type "172.16.10.0", the router will change it to "172.16.0.0". Still, DO NOT type anything like this. - IGRP can load balance up to 6 unequal links (while with RIP, they must be equal). The "variance" command controls the load balancing between the best and the worst metric. - If both RIP and IGRP are enabled on a router, it will always use IGRP, as IGRP has higher precedence. Therefore, when using IGRP, disable RIP in order to spare resources. - Commands to troubleshoot routing: - "show ip route" -- displays the routing table. - "show protocols" -- displays hardware information and link status. - "show ip protocols" -- lots of routing information, including various parameters. - "debug ip rip" -- sends debugging messages to the console. Can be redirected to the terminal via "terminal monitor". Disable with "undebug all". - "debug ip igrp events" -- debug summary of IGRP. Disable with "undebug" or "undebug all". - "debug ip igrp transactions" -- full debug of IGRP. Again, disable with "undebug all". By badboy CCNA4.com