SlideShare a Scribd company logo
1 of 50
© 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 1
Chapter 5: Adjust and
Troubleshoot Single-
Area OSPF
Scaling Networks
Presentation_ID 2© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Chapter 5: Objectives
© 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 3
5.1 Advanced Single-Area
OSPF Configurations
Presentation_ID 4© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Routing in the Distribution and Core Layers
Static and Dynamic Routing
Routers and Layer 3 switches learn about remote networks in one of
two ways:
Manually - Remote networks are manually entered into the route
table using static routes.
Dynamically - Remote routes are automatically learned using a
dynamic routing protocol such as Enhanced Interior Gateway
Routing Protocol (EIGRP) or Open Shortest Path First (OSPF).
Presentation_ID 5© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Routing in the Distribution and Core Layers
Static Routing
Three primary uses of static routing.
a. Providing ease of routing table maintenance in smaller networks
that are not expected to grow significantly.
b. Routing to and from stub networks. A stub network is a network
accessed by a single route, and the router has only one neighbor.
c. Using a single default route to
represent a path to any network that does
not have a more specific match with
another route in the routing table.
Default routes are used to send traffic to
any destination beyond the next upstream
router
Presentation_ID 6© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Routing in the Distribution and Core Layers
Dynamic Routing Protocols
A primary benefit of dynamic routing protocols is that routers
exchange routing information when there is a topology change.
This exchange allows routers to automatically learn about new
networks and also to find alternate paths when there is a link failure
to a current network.
Note: All dynamic routing protocols
are capable of advertising and
propagating static routes in their
routing updates.
Presentation_ID 7© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Routing in the Distribution and Core Layers
OSPF (Shortest Path First)
OSPF is a commonly implemented link-state routing protocol. It was
developed as a replacement for the distance vector routing protocol, RIP.
However, OSPF has significant advantages over RIP in that it offers
faster convergence and scales to much larger network implementations.
Classless – It is classless by design; therefore, it supports VLSM and
CIDR.
Efficient – Routing changes trigger routing updates (no periodic updates).
Fast convergence – It quickly propagates network changes.
Scalable – It works well in small and large network sizes. Routers can be
grouped into areas to support a hierarchical system.
Secure – It supports Message Digest 5 (MD5) authentication
Presentation_ID 8© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Routing in the Distribution and Core Layers
Configuring Single-Area OSPF
Presentation_ID 9© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Routing in the Distribution and Core Layers
Verifying Single-Area OSPF
Presentation_ID 10© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Routing in the Distribution and Core Layers
Verifying Single-Area OSPF
show ip ospf neighbor Command to verify that the router has formed an
adjacency with its neighboring routers. If the router ID of the neighboring router
is not displayed, or if it does not show as being in a state of FULL, the two
routers have not formed an OSPF adjacency.
show ip protocols Command provides a quick way to verify vital OSPF
configuration information. This includes the OSPF process ID, the router ID,
networks the router is advertising, the neighbors the router is receiving updates
from, and the default administrative distance, which is 110 for OSPF.
show ip ospf Command is used to display the OSPF process ID and router ID
as well as the OSPF SPF and OSPF area information.
show ip ospf interface Command provides a detailed list for every OSPF-
enabled interface and is very useful to determine whether the network
statements were correctly composed.
show ip ospf interface brief Command is useful to display a summary and
status of OSPF-enabled interfaces.
Presentation_ID 11© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Routing in the Distribution and Core Layers
Verifying Single-Area OSPF (cont.)
Presentation_ID 12© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Routing in the Distribution and Core Layers
Verifying Single-Area OSPF (cont.)
Presentation_ID 13© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Routing in the Distribution and Core Layers
Configuring Single-Area OSPFv3
Presentation_ID 14© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Routing in the Distribution and Core Layers
Verifying Single-Area OSPFv3
show ipv6 ospf neighbor Command to verify that the router has
formed an adjacency with its neighboring routers. If the router ID of the
neighboring router is not displayed, or if it does not show as being in a
state of FULL, the two routers have not formed an OSPF adjacency.
show ipv6 protocols Command provides a quick way to verify vital
OSPFv3 configuration information, including the OSPF process ID, the
router ID, and the interfaces enabled for OSPFv3.
show ipv6 route ospf Command provides specifics about OSPFv3
routes in the routing table.
show ipv6 ospf interface brief Command is useful to display a
summary and status of OSPFv3 enabled interfaces.
Presentation_ID 15© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Routing in the Distribution and Core Layers
Verifying Single-Area OSPFv3
Presentation_ID 16© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Routing in the Distribution and Core Layers
Verifying Single-Area OSPFv3 (cont.)
Presentation_ID 17© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
OSPF in Multiaccess Networks
OSPF Network Types
 Point-to-point – Two routers interconnected over a common link.
Often the configuration in WAN links.
 Broadcast Multiaccess – Multiple routers interconnected over an
Ethernet network.
 Non-broadcast Multiaccess (NBMA) – Multiple routers
interconnected in a network that does not allow broadcasts, such
as Frame Relay.
 Point-to-multipoint – Multiple routers interconnected in a hub-
and-spoke topology over an NBMA network.
 Virtual links – Special OSPF network used to interconnect distant
OSPF areas to the backbone area.
Presentation_ID 18© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
OSPF in Multiaccess Networks
Challenges in Multiaccess Networks
A multiaccess network is a network with multiple devices on the
same shared media, which are sharing communications.
Multiaccess networks can create two challenges for OSPF:
 Creation of multiple adjacencies – creating adjacencies with
multiple routers would lead to an excessive number of LSAs
being exchanged.
 Extensive flooding of LSAs – Link-state routers flood the
network when OSPF is initialized or when there is a change.
• Formula used to calculate
the number of required
adjacencies n(n-1)/2
• A topology of 4 routers would
result in 4(4-1)/2 = 6
Presentation_ID 19© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
OSPF in Multiaccess Networks
OSPF Designated Router
 The designated router (DR) is the solution to managing adjacencies
and flooding of LSAs on a multiaccess network.
 The backup designated router (BDR) is elected in case the DR
fails.
 All other non-DR and non-BDR routers become DROTHERs.
DROTHERs only form adjacencies with the DR and BDR.
 DROTHERs only send their LSAs to the DR and BDR using the
multicast address 224.0.0.6.
 DR uses the multicast address 224.0.0.5 to send LSAs to all other
routers. DR only router flooding LSAs.
 DR/BDR Elections only necessary on multiaccess networks.
Presentation_ID 20© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
OSPF in Multiaccess Networks
OSPF Designated Router (cont.)
Presentation_ID 21© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
OSPF in Multiaccess Networks
Verifying DR/BDR Roles
Presentation_ID 22© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
OSPF in Multiaccess Networks
Verifying DR/BDR Adjacencies
State of neighbors in multiaccess networks can be:
 FULL/DROTHER – This is a DR or BDR router that is fully
adjacent with a non-DR or BDR router.
 FULL/DR – The router is fully adjacent with the indicated DR
neighbor.
 FULL/BDR – The router is fully adjacent with the indicated
BDR neighbor.
 2-WAY/DROTHER – The non-DR or BDR router has a
neighbor adjacency with another non-DR or BDR router.
Full is the normal state of OSPF.
The show ip ospf neighbor
is used to verify the OSPF
adjacencies.
Presentation_ID 23© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
OSPF in Multiaccess Networks
Default DR/BDR Election Process
 The router with the highest interface priority is elected as the DR.
 The router with the second highest interface priority is elected as
the BDR.
 Priority can be configured between 0-255. (Priority of 0 - router
cannot become the DR. 0
 If interface priorities are equal, then the router with highest router ID
is elected DR and second highest the BDR
 Three ways to determine router ID:
• Router ID can be manually configured.
• If not configured, the ID determined by the highest loopback IP
address.
• If no loopbacks, the ID is determined by the highest active IPv4
address.
 In an IPv6 network, the router ID must be configured manually.
Presentation_ID 24© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
OSPF in Multiaccess Networks
DR/BDR Election Process
DR remains the DR until one of the following occurs:
 The DR fails.
 The OSPF process on the DR fails or is stopped.
 The multiaccess interface on the DR fails or is shutdown.
If the DR fails, the BDR is automatically promoted to DR.
 There is then a new BDR election and the DROTHER with the
higher priority or router ID is elected as the new BDR.
Presentation_ID 25© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
OSPF in Multiaccess Networks
The OSPF Priority
 Instead of setting the router ID on all routers, it is better to control
the election by setting interface priorities.
• To change the priority, use one of the following commands:
ip ospf priority value (OSPFv2 interface command)
ipv6 ospf priority value (OSPFv3 interface command)
 To begin another OSPF election, use one of the following methods:
• Shutdown the router interfaces and then re-enable them
starting with the DR, then the BDR, and then all other routers.
• Reset the OSPF process using the clear ip ospf
process privileged EXEC mode command on all routers.
Priority Value
0 Does not become a DR or BDR.
1 – 255 The higher the priority value, the more likely the
router becomes the DR or BDR on the interface.
Presentation_ID 26© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Default Route Propagation
Propagating a Default Static Route in OSPFv2
The router connected to the Internet that is used to propagate a
default route is often called the edge, entrance or gateway router.
In an OSPF network, it may also be call the autonomous system
boundary router (ASBR). The router located between an OSPF
routing domain and a non-OSPF network
Presentation_ID 27© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Default Route Propagation
Verifying the Propagated Default Route
Presentation_ID 28© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Default Route Propagation
Propagating a Default Static Route in OSPFv3
Verifying the propagated IPv6 default Route
Enabling OSPFv3 on the R1 Interfaces
Presentation_ID 29© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Fine-tuning OSPF Interfaces
OSPF Hello and Dead Intervals
OSPF Hello and Dead intervals must match, or a neighbor
adjacency will not occur.
Presentation_ID 30© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Fine-tuning OSPF Interfaces
Modifying OSPF Intervals
 Modifying OSPFv2 Intervals
 Modifying OSPFv3 Intervals
 Verifying the OSPFv3 interface intervals
Presentation_ID 31© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Secure OSPF
Secure Routing Updates
Routing systems can be attacked by disrupting the routing peers or by
falsifying the information carried within the routing protocol.
The consequences of falsifying routing information are:
1. Redirecting traffic to create routing loops
2. Redirecting traffic so it can be monitored on an insecure link
3. Redirecting traffic to discard it
OSPF authentication can be configured to mitigate against routing protocol
attacks.
Presentation_ID 32© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Secure OSPF
Secure Routing Updates
 When neighbor authentication has been configured on a router,
the router authenticates the source of each routing update
packet that it receives.
 An authenticating key that is known to both the sending and the
receiving route is exchanged.
 OSPF supports three types of authentication:
• Null – no authentication.
• Simple password authentication – the password in the
update is sent in plaintext over the network (outdated
method).
• MD5 authentication – Most secure and recommended
method of authentication. Password is calculated using the
MD5 algorithm.
Presentation_ID 33© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Secure OSPF
MD5 Authentication
Presentation_ID 34© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Secure OSPF
Configuring OSPF MD5 Authentication
 MD5 authentication can be enabled globally for all interfaces or
on a per-interface basis.
 To enable OSPF MD5 authentication globally, configure:
• ip ospf message-digest-key key
md5 password (interface configuration command)
• area area-id authentication message-digest (router
configuration command)
 To enable MD5 authentication on a per-interface basis,
configure:
• ip ospf message-digest-key key
md5 password (interface configuration command)
• ip ospf authentication message-digest (interface
configuration command)
Presentation_ID 35© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Secure OSPF
OSPF MD5 Authentication Example
continued
Presentation_ID 36© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Secure OSPF
OSPF MD5 Authentication Example (cont.)
Presentation_ID 37© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Secure OSPF
Verifying OSPF MD5 Authentication
Presentation_ID 38© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Secure OSPF
Verifying OSPF MD5 Authentication (cont.)
© 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 39
5.2 Troubleshooting
Single-Area OSPF
Implementations
Presentation_ID 40© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Components of Troubleshooting Single-Area OSPF
Forming OSPF Adjacencies
Presentation_ID 41© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Components of Troubleshooting Single-Area OSPF
Transitioning via OSPF States
The router should not
remain in any states
other than FULL or
2Way for extended
periods of time.
Presentation_ID 42© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Components of Troubleshooting Single-Area OSPF
OSPF Troubleshooting Commands
 show ip protocols – Verifies vital OSPF configuration
information.
 show ip ospf neighbor – Verifies that the router has
formed an adjacency with its neighboring routers.
 show ip ospf interface – Displays the OSPF parameters
configured on an interface, such as the OSPF process ID.
 show ip ospf – Examines the OSPF process ID and router
ID.
 show ip route ospf – Displays only the OSPF learned
routes in the routing table.
 clear ip ospf [process-id] process – Resets the
OSPFv2 neighbor adjacencies.
Presentation_ID 43© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Components of Troubleshooting Single-Area OSPF
Components of Troubleshooting OSPF
Presentation_ID 44© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Troubleshoot Single-Area OSPFv2 Routing Issues
Troubleshooting Neighbor Issues
 Verify active OSPF interfaces using the show ip ospf interface
command.
 Verify the OSPF settings using the show ip
protocols command.
 Disable the interface as passive using the no passive-interface
command.
 Verify routes using the show ip route command.
Presentation_ID 45© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Troubleshoot Single-Area OSPFv2 Routing Issues
Troubleshooting OSPF Routing Table Issues
 The show ip protocols command verifies networks that are
advertised in OSPF.
 For an interface to be enabled for OSPF, a matching network
command must be configured under the OSPF routing process.
 Use the show ip route command to verify routes in a routing table.
 Use the show ip protocols command to verify that a route is
being advertised.
Presentation_ID 46© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Troubleshoot Single-Area OSPFv3 Routing Issues
OSPFv3 Troubleshooting Commands
 show ipv6 protocols – Verifies vital OSPFv3 configuration
information.
 show ipv6 ospf neighbor – Verifies that the router has formed
an adjacency with its neighboring routers.
 show ipv6 ospf interface – Displays the OSPFv3
parameters configured on an interface.
 show ipv6 ospf – Examines the OSPFv3 process ID and router
ID.
 show ipv6 route ospf – Displays only the OSPFv3 learned
routes in the routing table.
 clear ipv6 ospf [process-id] process – Resets the
OSPFv3 neighbor adjacencies.
Presentation_ID 47© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Chapter 5: Summary
 OSPF defines five network types: point-to-point, broadcast
multiaccess, NBMA, point-to-multipoint, and virtual links.
 The DR and BDR are elected to overcome challenges of flooding in
an OSPF network.
 The routers in the network elect the router with the highest interface
priority as DR. The router with the second highest interface priority is
elected as the BDR.
 If all priorities are equal, the router with the highest ID is elected DR
and the second highest ID becomes the BDR.
 To propagate a default route in OSPF, the ASBR must be
configured with a default static route and the default-information
originate command.
 Verify routes with the show ip route or show ipv6
route command.
Presentation_ID 48© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Chapter 5: Summary (cont.)
 For OSPF to make a correct path determination, it may be
necessary to adjust the default interface bandwidth.
 To adjust the reference bandwidth, use the auto-cost reference-
bandwidth Mbps router configuration mode command.
 To adjust the interface bandwidth, use the bandwidth kilobits
interface configuration mode command.
 The OSPF Hello and Dead intervals must match or a neighbor
adjacency does not occur.
 OSPF supports three types of authentication: null, simple password
authentication, and MD5 authentication.
 When troubleshooting OSPF neighbors, be aware that the FULL or
2WAY states are normal.
Presentation_ID 49© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential
Chapter 5: Summary (cont.)
 Troubleshooting commands: show ip protocols, show ip
ospf neighbor, show ip ospf interface, show ip
ospf
 Troubleshooting OSPFv3 commands: show ipv6
protocols, show ipv6 ospf neighbor, show ipv6
ospf interface, show ipv6 ospf, show ipv6 route
ospf, and clear ipv6 ospf [process-id] process
Presentation_ID 50© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential

More Related Content

What's hot

Cisco Live! :: Introduction to IOS XR for Enterprises and Service Providers
Cisco Live! :: Introduction to IOS XR for Enterprises and Service ProvidersCisco Live! :: Introduction to IOS XR for Enterprises and Service Providers
Cisco Live! :: Introduction to IOS XR for Enterprises and Service ProvidersBruno Teixeira
 
CCNP Switching Chapter 1
CCNP Switching Chapter 1CCNP Switching Chapter 1
CCNP Switching Chapter 1Chaing Ravuth
 
CCNP v6 Route: Implementing IP Routing Chapter 3
CCNP v6 Route: Implementing IP Routing Chapter 3CCNP v6 Route: Implementing IP Routing Chapter 3
CCNP v6 Route: Implementing IP Routing Chapter 3Andy Juan Sarango Veliz
 
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
 
Open Shortest Path First
Open Shortest Path FirstOpen Shortest Path First
Open Shortest Path FirstKashif Latif
 
CCNA Advanced Routing Protocols
CCNA Advanced Routing ProtocolsCCNA Advanced Routing Protocols
CCNA Advanced Routing ProtocolsDsunte Wilson
 
ccna project on topic company infrastructure
ccna project on topic company infrastructureccna project on topic company infrastructure
ccna project on topic company infrastructurePrince Gautam
 
MPLS L3 VPN Deployment
MPLS L3 VPN DeploymentMPLS L3 VPN Deployment
MPLS L3 VPN DeploymentAPNIC
 
Ccnp workbook network bulls
Ccnp workbook network bullsCcnp workbook network bulls
Ccnp workbook network bullsSwapnil Kapate
 
Ccna PPT
Ccna PPTCcna PPT
Ccna PPTAIRTEL
 
Ccnp presentation day 4 sd-access vs traditional network architecture
Ccnp presentation   day 4  sd-access vs traditional network architectureCcnp presentation   day 4  sd-access vs traditional network architecture
Ccnp presentation day 4 sd-access vs traditional network architectureSagarR24
 
Border Gateway Protocol
Border Gateway ProtocolBorder Gateway Protocol
Border Gateway ProtocolKashif Latif
 
CCNA 2 Routing and Switching v5.0 Chapter 2
CCNA 2 Routing and Switching v5.0 Chapter 2CCNA 2 Routing and Switching v5.0 Chapter 2
CCNA 2 Routing and Switching v5.0 Chapter 2Nil Menon
 

What's hot (20)

Asa packet-flow-00
Asa packet-flow-00Asa packet-flow-00
Asa packet-flow-00
 
Cisco Live! :: Introduction to IOS XR for Enterprises and Service Providers
Cisco Live! :: Introduction to IOS XR for Enterprises and Service ProvidersCisco Live! :: Introduction to IOS XR for Enterprises and Service Providers
Cisco Live! :: Introduction to IOS XR for Enterprises and Service Providers
 
CCNP ROUTE V7 CH6
CCNP ROUTE V7 CH6CCNP ROUTE V7 CH6
CCNP ROUTE V7 CH6
 
CCNP Switching Chapter 1
CCNP Switching Chapter 1CCNP Switching Chapter 1
CCNP Switching Chapter 1
 
Ospf area types
Ospf area typesOspf area types
Ospf area types
 
CCNP v6 Route: Implementing IP Routing Chapter 3
CCNP v6 Route: Implementing IP Routing Chapter 3CCNP v6 Route: Implementing IP Routing Chapter 3
CCNP v6 Route: Implementing IP Routing Chapter 3
 
CCNP ROUTE V7 CH1
CCNP ROUTE V7 CH1CCNP ROUTE V7 CH1
CCNP ROUTE V7 CH1
 
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)
 
Open Shortest Path First
Open Shortest Path FirstOpen Shortest Path First
Open Shortest Path First
 
CCNA Advanced Routing Protocols
CCNA Advanced Routing ProtocolsCCNA Advanced Routing Protocols
CCNA Advanced Routing Protocols
 
Border Gatway Protocol
Border Gatway ProtocolBorder Gatway Protocol
Border Gatway Protocol
 
ccna project on topic company infrastructure
ccna project on topic company infrastructureccna project on topic company infrastructure
ccna project on topic company infrastructure
 
MPLS L3 VPN Deployment
MPLS L3 VPN DeploymentMPLS L3 VPN Deployment
MPLS L3 VPN Deployment
 
How BGP Works
How BGP WorksHow BGP Works
How BGP Works
 
Ccnp workbook network bulls
Ccnp workbook network bullsCcnp workbook network bulls
Ccnp workbook network bulls
 
Ccna PPT
Ccna PPTCcna PPT
Ccna PPT
 
Bgp protocol
Bgp protocolBgp protocol
Bgp protocol
 
Ccnp presentation day 4 sd-access vs traditional network architecture
Ccnp presentation   day 4  sd-access vs traditional network architectureCcnp presentation   day 4  sd-access vs traditional network architecture
Ccnp presentation day 4 sd-access vs traditional network architecture
 
Border Gateway Protocol
Border Gateway ProtocolBorder Gateway Protocol
Border Gateway Protocol
 
CCNA 2 Routing and Switching v5.0 Chapter 2
CCNA 2 Routing and Switching v5.0 Chapter 2CCNA 2 Routing and Switching v5.0 Chapter 2
CCNA 2 Routing and Switching v5.0 Chapter 2
 

Viewers also liked

CCNAv5 - S3: Chapter6 Multiarea OSPF
CCNAv5 - S3: Chapter6 Multiarea OSPFCCNAv5 - S3: Chapter6 Multiarea OSPF
CCNAv5 - S3: Chapter6 Multiarea OSPFVuz Dở Hơi
 
Iben from Spirent talks at the SDN World Congress about the importance of and...
Iben from Spirent talks at the SDN World Congress about the importance of and...Iben from Spirent talks at the SDN World Congress about the importance of and...
Iben from Spirent talks at the SDN World Congress about the importance of and...Iben Rodriguez
 
Chapter5 adjust and troubleshoot single area ospf
Chapter5 adjust and troubleshoot single area ospfChapter5 adjust and troubleshoot single area ospf
Chapter5 adjust and troubleshoot single area ospfVuz Dở Hơi
 
Web technologies: recap on TCP-IP
Web technologies: recap on TCP-IPWeb technologies: recap on TCP-IP
Web technologies: recap on TCP-IPPiero Fraternali
 
project on OSPF
project on OSPFproject on OSPF
project on OSPFOm Prakash
 
Sca n instructorppt_chapter1_finalfr
Sca n instructorppt_chapter1_finalfrSca n instructorppt_chapter1_finalfr
Sca n instructorppt_chapter1_finalfrYamadou BATHILY
 
Basic configuration fortigate v4.0 mr2
Basic configuration fortigate v4.0 mr2Basic configuration fortigate v4.0 mr2
Basic configuration fortigate v4.0 mr2Gol D Roger
 
Chapter 3 link aggregation
Chapter 3   link aggregationChapter 3   link aggregation
Chapter 3 link aggregationJosue Wuezo
 
CCNAv5 - S3: Chapter9 IOS Images and Licensing
CCNAv5 - S3: Chapter9 IOS Images and LicensingCCNAv5 - S3: Chapter9 IOS Images and Licensing
CCNAv5 - S3: Chapter9 IOS Images and LicensingVuz Dở Hơi
 
Conceptos y protocolos de enrutamiento: 11. OSPF
Conceptos y protocolos de enrutamiento: 11. OSPFConceptos y protocolos de enrutamiento: 11. OSPF
Conceptos y protocolos de enrutamiento: 11. OSPFFrancesc Perez
 
CCNAv5 - S3: Chapter3 Link Aggregation
CCNAv5 - S3: Chapter3 Link AggregationCCNAv5 - S3: Chapter3 Link Aggregation
CCNAv5 - S3: Chapter3 Link AggregationVuz Dở Hơi
 
Deploy MPLS Traffic Engineering
Deploy MPLS Traffic EngineeringDeploy MPLS Traffic Engineering
Deploy MPLS Traffic EngineeringAPNIC
 
Enrutamiento con ospf y eigrp
Enrutamiento con ospf y eigrpEnrutamiento con ospf y eigrp
Enrutamiento con ospf y eigrp.. ..
 
CCNA Exploration 3 - Chapter 5
CCNA Exploration 3 - Chapter 5CCNA Exploration 3 - Chapter 5
CCNA Exploration 3 - Chapter 5Irsandi Hasan
 
CCNAv5 - S4: Chapter 5: Network Address Translation for ipv4
CCNAv5 - S4: Chapter 5: Network Address Translation for ipv4CCNAv5 - S4: Chapter 5: Network Address Translation for ipv4
CCNAv5 - S4: Chapter 5: Network Address Translation for ipv4Vuz Dở Hơi
 

Viewers also liked (18)

CCNAv5 - S3: Chapter6 Multiarea OSPF
CCNAv5 - S3: Chapter6 Multiarea OSPFCCNAv5 - S3: Chapter6 Multiarea OSPF
CCNAv5 - S3: Chapter6 Multiarea OSPF
 
Iben from Spirent talks at the SDN World Congress about the importance of and...
Iben from Spirent talks at the SDN World Congress about the importance of and...Iben from Spirent talks at the SDN World Congress about the importance of and...
Iben from Spirent talks at the SDN World Congress about the importance of and...
 
Chapter5 adjust and troubleshoot single area ospf
Chapter5 adjust and troubleshoot single area ospfChapter5 adjust and troubleshoot single area ospf
Chapter5 adjust and troubleshoot single area ospf
 
Web technologies: recap on TCP-IP
Web technologies: recap on TCP-IPWeb technologies: recap on TCP-IP
Web technologies: recap on TCP-IP
 
Ospf
OspfOspf
Ospf
 
OSPF Virtual Link
OSPF Virtual LinkOSPF Virtual Link
OSPF Virtual Link
 
project on OSPF
project on OSPFproject on OSPF
project on OSPF
 
Sca n instructorppt_chapter1_finalfr
Sca n instructorppt_chapter1_finalfrSca n instructorppt_chapter1_finalfr
Sca n instructorppt_chapter1_finalfr
 
OSPF - Routing Protocol
OSPF - Routing ProtocolOSPF - Routing Protocol
OSPF - Routing Protocol
 
Basic configuration fortigate v4.0 mr2
Basic configuration fortigate v4.0 mr2Basic configuration fortigate v4.0 mr2
Basic configuration fortigate v4.0 mr2
 
Chapter 3 link aggregation
Chapter 3   link aggregationChapter 3   link aggregation
Chapter 3 link aggregation
 
CCNAv5 - S3: Chapter9 IOS Images and Licensing
CCNAv5 - S3: Chapter9 IOS Images and LicensingCCNAv5 - S3: Chapter9 IOS Images and Licensing
CCNAv5 - S3: Chapter9 IOS Images and Licensing
 
Conceptos y protocolos de enrutamiento: 11. OSPF
Conceptos y protocolos de enrutamiento: 11. OSPFConceptos y protocolos de enrutamiento: 11. OSPF
Conceptos y protocolos de enrutamiento: 11. OSPF
 
CCNAv5 - S3: Chapter3 Link Aggregation
CCNAv5 - S3: Chapter3 Link AggregationCCNAv5 - S3: Chapter3 Link Aggregation
CCNAv5 - S3: Chapter3 Link Aggregation
 
Deploy MPLS Traffic Engineering
Deploy MPLS Traffic EngineeringDeploy MPLS Traffic Engineering
Deploy MPLS Traffic Engineering
 
Enrutamiento con ospf y eigrp
Enrutamiento con ospf y eigrpEnrutamiento con ospf y eigrp
Enrutamiento con ospf y eigrp
 
CCNA Exploration 3 - Chapter 5
CCNA Exploration 3 - Chapter 5CCNA Exploration 3 - Chapter 5
CCNA Exploration 3 - Chapter 5
 
CCNAv5 - S4: Chapter 5: Network Address Translation for ipv4
CCNAv5 - S4: Chapter 5: Network Address Translation for ipv4CCNAv5 - S4: Chapter 5: Network Address Translation for ipv4
CCNAv5 - S4: Chapter 5: Network Address Translation for ipv4
 

Similar to Ospf

ENSA_Module_1.pptx
ENSA_Module_1.pptxENSA_Module_1.pptx
ENSA_Module_1.pptxserieux1
 
Exploration routing chapter 10 & 11
Exploration routing chapter 10 & 11Exploration routing chapter 10 & 11
Exploration routing chapter 10 & 11Sachii Dosti
 
CCNA3 Verson6 Chapter8
CCNA3 Verson6 Chapter8CCNA3 Verson6 Chapter8
CCNA3 Verson6 Chapter8Chaing Ravuth
 
ENSA_UNIT 1.pdfasasasaasafsedfsecfwefw wefwefw qeda
ENSA_UNIT 1.pdfasasasaasafsedfsecfwefw wefwefw qedaENSA_UNIT 1.pdfasasasaasafsedfsecfwefw wefwefw qeda
ENSA_UNIT 1.pdfasasasaasafsedfsecfwefw wefwefw qedadrainagememes
 
ENSA_Module_1.pptx
ENSA_Module_1.pptxENSA_Module_1.pptx
ENSA_Module_1.pptxrnamboori1
 
Configurasi ospf
Configurasi ospfConfigurasi ospf
Configurasi ospfamri am
 
ENSA_Module_2.pptx
ENSA_Module_2.pptxENSA_Module_2.pptx
ENSA_Module_2.pptxserieux1
 
ENSA_Module_2 Packet Tracer - Single-Area OSPFv2 Configuration
ENSA_Module_2 Packet Tracer - Single-Area OSPFv2 ConfigurationENSA_Module_2 Packet Tracer - Single-Area OSPFv2 Configuration
ENSA_Module_2 Packet Tracer - Single-Area OSPFv2 Configurationkecatem465
 
CCNA3 Verson6 Chapter10
CCNA3 Verson6 Chapter10CCNA3 Verson6 Chapter10
CCNA3 Verson6 Chapter10Chaing Ravuth
 
Routing and OSPF
Routing and OSPFRouting and OSPF
Routing and OSPFarpit
 

Similar to Ospf (20)

Cisco ospf
Cisco ospf Cisco ospf
Cisco ospf
 
Day 12.2 enablingospf
Day 12.2 enablingospfDay 12.2 enablingospf
Day 12.2 enablingospf
 
CCNP ROUTE V7 CH3
CCNP ROUTE V7 CH3CCNP ROUTE V7 CH3
CCNP ROUTE V7 CH3
 
OSPF by Abdullah Mukhtar
OSPF by Abdullah MukhtarOSPF by Abdullah Mukhtar
OSPF by Abdullah Mukhtar
 
ENSA_Module_1.pptx
ENSA_Module_1.pptxENSA_Module_1.pptx
ENSA_Module_1.pptx
 
Exploration routing chapter 10 & 11
Exploration routing chapter 10 & 11Exploration routing chapter 10 & 11
Exploration routing chapter 10 & 11
 
CSC427_Week_11.pdf
CSC427_Week_11.pdfCSC427_Week_11.pdf
CSC427_Week_11.pdf
 
CCNA3 Verson6 Chapter8
CCNA3 Verson6 Chapter8CCNA3 Verson6 Chapter8
CCNA3 Verson6 Chapter8
 
ENSA_UNIT 1.pdfasasasaasafsedfsecfwefw wefwefw qeda
ENSA_UNIT 1.pdfasasasaasafsedfsecfwefw wefwefw qedaENSA_UNIT 1.pdfasasasaasafsedfsecfwefw wefwefw qeda
ENSA_UNIT 1.pdfasasasaasafsedfsecfwefw wefwefw qeda
 
ENSA_Module_1.pptx
ENSA_Module_1.pptxENSA_Module_1.pptx
ENSA_Module_1.pptx
 
Configurasi ospf
Configurasi ospfConfigurasi ospf
Configurasi ospf
 
ENSA_Module_2.pptx
ENSA_Module_2.pptxENSA_Module_2.pptx
ENSA_Module_2.pptx
 
ENSA_Module_2.pptx
ENSA_Module_2.pptxENSA_Module_2.pptx
ENSA_Module_2.pptx
 
CCCNP ROUTE v6_ch03
CCCNP ROUTE v6_ch03CCCNP ROUTE v6_ch03
CCCNP ROUTE v6_ch03
 
ENSA_Module_2 Packet Tracer - Single-Area OSPFv2 Configuration
ENSA_Module_2 Packet Tracer - Single-Area OSPFv2 ConfigurationENSA_Module_2 Packet Tracer - Single-Area OSPFv2 Configuration
ENSA_Module_2 Packet Tracer - Single-Area OSPFv2 Configuration
 
CCNA3 Verson6 Chapter10
CCNA3 Verson6 Chapter10CCNA3 Verson6 Chapter10
CCNA3 Verson6 Chapter10
 
Dynamic routing protocols (CCNA)
Dynamic routing protocols (CCNA)Dynamic routing protocols (CCNA)
Dynamic routing protocols (CCNA)
 
OSPF v3
OSPF v3OSPF v3
OSPF v3
 
Routing and OSPF
Routing and OSPFRouting and OSPF
Routing and OSPF
 
ospf-config.pdf
ospf-config.pdfospf-config.pdf
ospf-config.pdf
 

Recently uploaded

Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxRaymartEstabillo3
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfSpandanaRallapalli
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementmkooblal
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designMIPLM
 
ROOT CAUSE ANALYSIS PowerPoint Presentation
ROOT CAUSE ANALYSIS PowerPoint PresentationROOT CAUSE ANALYSIS PowerPoint Presentation
ROOT CAUSE ANALYSIS PowerPoint PresentationAadityaSharma884161
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Celine George
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptxSherlyMaeNeri
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxEyham Joco
 
ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomnelietumpap1
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxChelloAnnAsuncion2
 
Quarter 4 Peace-education.pptx Catch Up Friday
Quarter 4 Peace-education.pptx Catch Up FridayQuarter 4 Peace-education.pptx Catch Up Friday
Quarter 4 Peace-education.pptx Catch Up FridayMakMakNepo
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 

Recently uploaded (20)

Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
 
Rapple "Scholarly Communications and the Sustainable Development Goals"
Rapple "Scholarly Communications and the Sustainable Development Goals"Rapple "Scholarly Communications and the Sustainable Development Goals"
Rapple "Scholarly Communications and the Sustainable Development Goals"
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdf
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of management
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-design
 
Raw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptxRaw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptx
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
ROOT CAUSE ANALYSIS PowerPoint Presentation
ROOT CAUSE ANALYSIS PowerPoint PresentationROOT CAUSE ANALYSIS PowerPoint Presentation
ROOT CAUSE ANALYSIS PowerPoint Presentation
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptx
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptx
 
ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choom
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
 
Quarter 4 Peace-education.pptx Catch Up Friday
Quarter 4 Peace-education.pptx Catch Up FridayQuarter 4 Peace-education.pptx Catch Up Friday
Quarter 4 Peace-education.pptx Catch Up Friday
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 

Ospf

  • 1. © 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 1 Chapter 5: Adjust and Troubleshoot Single- Area OSPF Scaling Networks
  • 2. Presentation_ID 2© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Chapter 5: Objectives
  • 3. © 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 3 5.1 Advanced Single-Area OSPF Configurations
  • 4. Presentation_ID 4© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Routing in the Distribution and Core Layers Static and Dynamic Routing Routers and Layer 3 switches learn about remote networks in one of two ways: Manually - Remote networks are manually entered into the route table using static routes. Dynamically - Remote routes are automatically learned using a dynamic routing protocol such as Enhanced Interior Gateway Routing Protocol (EIGRP) or Open Shortest Path First (OSPF).
  • 5. Presentation_ID 5© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Routing in the Distribution and Core Layers Static Routing Three primary uses of static routing. a. Providing ease of routing table maintenance in smaller networks that are not expected to grow significantly. b. Routing to and from stub networks. A stub network is a network accessed by a single route, and the router has only one neighbor. c. Using a single default route to represent a path to any network that does not have a more specific match with another route in the routing table. Default routes are used to send traffic to any destination beyond the next upstream router
  • 6. Presentation_ID 6© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Routing in the Distribution and Core Layers Dynamic Routing Protocols A primary benefit of dynamic routing protocols is that routers exchange routing information when there is a topology change. This exchange allows routers to automatically learn about new networks and also to find alternate paths when there is a link failure to a current network. Note: All dynamic routing protocols are capable of advertising and propagating static routes in their routing updates.
  • 7. Presentation_ID 7© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Routing in the Distribution and Core Layers OSPF (Shortest Path First) OSPF is a commonly implemented link-state routing protocol. It was developed as a replacement for the distance vector routing protocol, RIP. However, OSPF has significant advantages over RIP in that it offers faster convergence and scales to much larger network implementations. Classless – It is classless by design; therefore, it supports VLSM and CIDR. Efficient – Routing changes trigger routing updates (no periodic updates). Fast convergence – It quickly propagates network changes. Scalable – It works well in small and large network sizes. Routers can be grouped into areas to support a hierarchical system. Secure – It supports Message Digest 5 (MD5) authentication
  • 8. Presentation_ID 8© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Routing in the Distribution and Core Layers Configuring Single-Area OSPF
  • 9. Presentation_ID 9© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Routing in the Distribution and Core Layers Verifying Single-Area OSPF
  • 10. Presentation_ID 10© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Routing in the Distribution and Core Layers Verifying Single-Area OSPF show ip ospf neighbor Command to verify that the router has formed an adjacency with its neighboring routers. If the router ID of the neighboring router is not displayed, or if it does not show as being in a state of FULL, the two routers have not formed an OSPF adjacency. show ip protocols Command provides a quick way to verify vital OSPF configuration information. This includes the OSPF process ID, the router ID, networks the router is advertising, the neighbors the router is receiving updates from, and the default administrative distance, which is 110 for OSPF. show ip ospf Command is used to display the OSPF process ID and router ID as well as the OSPF SPF and OSPF area information. show ip ospf interface Command provides a detailed list for every OSPF- enabled interface and is very useful to determine whether the network statements were correctly composed. show ip ospf interface brief Command is useful to display a summary and status of OSPF-enabled interfaces.
  • 11. Presentation_ID 11© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Routing in the Distribution and Core Layers Verifying Single-Area OSPF (cont.)
  • 12. Presentation_ID 12© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Routing in the Distribution and Core Layers Verifying Single-Area OSPF (cont.)
  • 13. Presentation_ID 13© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Routing in the Distribution and Core Layers Configuring Single-Area OSPFv3
  • 14. Presentation_ID 14© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Routing in the Distribution and Core Layers Verifying Single-Area OSPFv3 show ipv6 ospf neighbor Command to verify that the router has formed an adjacency with its neighboring routers. If the router ID of the neighboring router is not displayed, or if it does not show as being in a state of FULL, the two routers have not formed an OSPF adjacency. show ipv6 protocols Command provides a quick way to verify vital OSPFv3 configuration information, including the OSPF process ID, the router ID, and the interfaces enabled for OSPFv3. show ipv6 route ospf Command provides specifics about OSPFv3 routes in the routing table. show ipv6 ospf interface brief Command is useful to display a summary and status of OSPFv3 enabled interfaces.
  • 15. Presentation_ID 15© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Routing in the Distribution and Core Layers Verifying Single-Area OSPFv3
  • 16. Presentation_ID 16© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Routing in the Distribution and Core Layers Verifying Single-Area OSPFv3 (cont.)
  • 17. Presentation_ID 17© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential OSPF in Multiaccess Networks OSPF Network Types  Point-to-point – Two routers interconnected over a common link. Often the configuration in WAN links.  Broadcast Multiaccess – Multiple routers interconnected over an Ethernet network.  Non-broadcast Multiaccess (NBMA) – Multiple routers interconnected in a network that does not allow broadcasts, such as Frame Relay.  Point-to-multipoint – Multiple routers interconnected in a hub- and-spoke topology over an NBMA network.  Virtual links – Special OSPF network used to interconnect distant OSPF areas to the backbone area.
  • 18. Presentation_ID 18© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential OSPF in Multiaccess Networks Challenges in Multiaccess Networks A multiaccess network is a network with multiple devices on the same shared media, which are sharing communications. Multiaccess networks can create two challenges for OSPF:  Creation of multiple adjacencies – creating adjacencies with multiple routers would lead to an excessive number of LSAs being exchanged.  Extensive flooding of LSAs – Link-state routers flood the network when OSPF is initialized or when there is a change. • Formula used to calculate the number of required adjacencies n(n-1)/2 • A topology of 4 routers would result in 4(4-1)/2 = 6
  • 19. Presentation_ID 19© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential OSPF in Multiaccess Networks OSPF Designated Router  The designated router (DR) is the solution to managing adjacencies and flooding of LSAs on a multiaccess network.  The backup designated router (BDR) is elected in case the DR fails.  All other non-DR and non-BDR routers become DROTHERs. DROTHERs only form adjacencies with the DR and BDR.  DROTHERs only send their LSAs to the DR and BDR using the multicast address 224.0.0.6.  DR uses the multicast address 224.0.0.5 to send LSAs to all other routers. DR only router flooding LSAs.  DR/BDR Elections only necessary on multiaccess networks.
  • 20. Presentation_ID 20© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential OSPF in Multiaccess Networks OSPF Designated Router (cont.)
  • 21. Presentation_ID 21© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential OSPF in Multiaccess Networks Verifying DR/BDR Roles
  • 22. Presentation_ID 22© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential OSPF in Multiaccess Networks Verifying DR/BDR Adjacencies State of neighbors in multiaccess networks can be:  FULL/DROTHER – This is a DR or BDR router that is fully adjacent with a non-DR or BDR router.  FULL/DR – The router is fully adjacent with the indicated DR neighbor.  FULL/BDR – The router is fully adjacent with the indicated BDR neighbor.  2-WAY/DROTHER – The non-DR or BDR router has a neighbor adjacency with another non-DR or BDR router. Full is the normal state of OSPF. The show ip ospf neighbor is used to verify the OSPF adjacencies.
  • 23. Presentation_ID 23© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential OSPF in Multiaccess Networks Default DR/BDR Election Process  The router with the highest interface priority is elected as the DR.  The router with the second highest interface priority is elected as the BDR.  Priority can be configured between 0-255. (Priority of 0 - router cannot become the DR. 0  If interface priorities are equal, then the router with highest router ID is elected DR and second highest the BDR  Three ways to determine router ID: • Router ID can be manually configured. • If not configured, the ID determined by the highest loopback IP address. • If no loopbacks, the ID is determined by the highest active IPv4 address.  In an IPv6 network, the router ID must be configured manually.
  • 24. Presentation_ID 24© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential OSPF in Multiaccess Networks DR/BDR Election Process DR remains the DR until one of the following occurs:  The DR fails.  The OSPF process on the DR fails or is stopped.  The multiaccess interface on the DR fails or is shutdown. If the DR fails, the BDR is automatically promoted to DR.  There is then a new BDR election and the DROTHER with the higher priority or router ID is elected as the new BDR.
  • 25. Presentation_ID 25© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential OSPF in Multiaccess Networks The OSPF Priority  Instead of setting the router ID on all routers, it is better to control the election by setting interface priorities. • To change the priority, use one of the following commands: ip ospf priority value (OSPFv2 interface command) ipv6 ospf priority value (OSPFv3 interface command)  To begin another OSPF election, use one of the following methods: • Shutdown the router interfaces and then re-enable them starting with the DR, then the BDR, and then all other routers. • Reset the OSPF process using the clear ip ospf process privileged EXEC mode command on all routers. Priority Value 0 Does not become a DR or BDR. 1 – 255 The higher the priority value, the more likely the router becomes the DR or BDR on the interface.
  • 26. Presentation_ID 26© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Default Route Propagation Propagating a Default Static Route in OSPFv2 The router connected to the Internet that is used to propagate a default route is often called the edge, entrance or gateway router. In an OSPF network, it may also be call the autonomous system boundary router (ASBR). The router located between an OSPF routing domain and a non-OSPF network
  • 27. Presentation_ID 27© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Default Route Propagation Verifying the Propagated Default Route
  • 28. Presentation_ID 28© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Default Route Propagation Propagating a Default Static Route in OSPFv3 Verifying the propagated IPv6 default Route Enabling OSPFv3 on the R1 Interfaces
  • 29. Presentation_ID 29© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Fine-tuning OSPF Interfaces OSPF Hello and Dead Intervals OSPF Hello and Dead intervals must match, or a neighbor adjacency will not occur.
  • 30. Presentation_ID 30© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Fine-tuning OSPF Interfaces Modifying OSPF Intervals  Modifying OSPFv2 Intervals  Modifying OSPFv3 Intervals  Verifying the OSPFv3 interface intervals
  • 31. Presentation_ID 31© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Secure OSPF Secure Routing Updates Routing systems can be attacked by disrupting the routing peers or by falsifying the information carried within the routing protocol. The consequences of falsifying routing information are: 1. Redirecting traffic to create routing loops 2. Redirecting traffic so it can be monitored on an insecure link 3. Redirecting traffic to discard it OSPF authentication can be configured to mitigate against routing protocol attacks.
  • 32. Presentation_ID 32© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Secure OSPF Secure Routing Updates  When neighbor authentication has been configured on a router, the router authenticates the source of each routing update packet that it receives.  An authenticating key that is known to both the sending and the receiving route is exchanged.  OSPF supports three types of authentication: • Null – no authentication. • Simple password authentication – the password in the update is sent in plaintext over the network (outdated method). • MD5 authentication – Most secure and recommended method of authentication. Password is calculated using the MD5 algorithm.
  • 33. Presentation_ID 33© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Secure OSPF MD5 Authentication
  • 34. Presentation_ID 34© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Secure OSPF Configuring OSPF MD5 Authentication  MD5 authentication can be enabled globally for all interfaces or on a per-interface basis.  To enable OSPF MD5 authentication globally, configure: • ip ospf message-digest-key key md5 password (interface configuration command) • area area-id authentication message-digest (router configuration command)  To enable MD5 authentication on a per-interface basis, configure: • ip ospf message-digest-key key md5 password (interface configuration command) • ip ospf authentication message-digest (interface configuration command)
  • 35. Presentation_ID 35© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Secure OSPF OSPF MD5 Authentication Example continued
  • 36. Presentation_ID 36© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Secure OSPF OSPF MD5 Authentication Example (cont.)
  • 37. Presentation_ID 37© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Secure OSPF Verifying OSPF MD5 Authentication
  • 38. Presentation_ID 38© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Secure OSPF Verifying OSPF MD5 Authentication (cont.)
  • 39. © 2008 Cisco Systems, Inc. All rights reserved. Cisco ConfidentialPresentation_ID 39 5.2 Troubleshooting Single-Area OSPF Implementations
  • 40. Presentation_ID 40© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Components of Troubleshooting Single-Area OSPF Forming OSPF Adjacencies
  • 41. Presentation_ID 41© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Components of Troubleshooting Single-Area OSPF Transitioning via OSPF States The router should not remain in any states other than FULL or 2Way for extended periods of time.
  • 42. Presentation_ID 42© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Components of Troubleshooting Single-Area OSPF OSPF Troubleshooting Commands  show ip protocols – Verifies vital OSPF configuration information.  show ip ospf neighbor – Verifies that the router has formed an adjacency with its neighboring routers.  show ip ospf interface – Displays the OSPF parameters configured on an interface, such as the OSPF process ID.  show ip ospf – Examines the OSPF process ID and router ID.  show ip route ospf – Displays only the OSPF learned routes in the routing table.  clear ip ospf [process-id] process – Resets the OSPFv2 neighbor adjacencies.
  • 43. Presentation_ID 43© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Components of Troubleshooting Single-Area OSPF Components of Troubleshooting OSPF
  • 44. Presentation_ID 44© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Troubleshoot Single-Area OSPFv2 Routing Issues Troubleshooting Neighbor Issues  Verify active OSPF interfaces using the show ip ospf interface command.  Verify the OSPF settings using the show ip protocols command.  Disable the interface as passive using the no passive-interface command.  Verify routes using the show ip route command.
  • 45. Presentation_ID 45© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Troubleshoot Single-Area OSPFv2 Routing Issues Troubleshooting OSPF Routing Table Issues  The show ip protocols command verifies networks that are advertised in OSPF.  For an interface to be enabled for OSPF, a matching network command must be configured under the OSPF routing process.  Use the show ip route command to verify routes in a routing table.  Use the show ip protocols command to verify that a route is being advertised.
  • 46. Presentation_ID 46© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Troubleshoot Single-Area OSPFv3 Routing Issues OSPFv3 Troubleshooting Commands  show ipv6 protocols – Verifies vital OSPFv3 configuration information.  show ipv6 ospf neighbor – Verifies that the router has formed an adjacency with its neighboring routers.  show ipv6 ospf interface – Displays the OSPFv3 parameters configured on an interface.  show ipv6 ospf – Examines the OSPFv3 process ID and router ID.  show ipv6 route ospf – Displays only the OSPFv3 learned routes in the routing table.  clear ipv6 ospf [process-id] process – Resets the OSPFv3 neighbor adjacencies.
  • 47. Presentation_ID 47© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Chapter 5: Summary  OSPF defines five network types: point-to-point, broadcast multiaccess, NBMA, point-to-multipoint, and virtual links.  The DR and BDR are elected to overcome challenges of flooding in an OSPF network.  The routers in the network elect the router with the highest interface priority as DR. The router with the second highest interface priority is elected as the BDR.  If all priorities are equal, the router with the highest ID is elected DR and the second highest ID becomes the BDR.  To propagate a default route in OSPF, the ASBR must be configured with a default static route and the default-information originate command.  Verify routes with the show ip route or show ipv6 route command.
  • 48. Presentation_ID 48© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Chapter 5: Summary (cont.)  For OSPF to make a correct path determination, it may be necessary to adjust the default interface bandwidth.  To adjust the reference bandwidth, use the auto-cost reference- bandwidth Mbps router configuration mode command.  To adjust the interface bandwidth, use the bandwidth kilobits interface configuration mode command.  The OSPF Hello and Dead intervals must match or a neighbor adjacency does not occur.  OSPF supports three types of authentication: null, simple password authentication, and MD5 authentication.  When troubleshooting OSPF neighbors, be aware that the FULL or 2WAY states are normal.
  • 49. Presentation_ID 49© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential Chapter 5: Summary (cont.)  Troubleshooting commands: show ip protocols, show ip ospf neighbor, show ip ospf interface, show ip ospf  Troubleshooting OSPFv3 commands: show ipv6 protocols, show ipv6 ospf neighbor, show ipv6 ospf interface, show ipv6 ospf, show ipv6 route ospf, and clear ipv6 ospf [process-id] process
  • 50. Presentation_ID 50© 2008 Cisco Systems, Inc. All rights reserved. Cisco Confidential