SlideShare a Scribd company logo
OSPF INTERNAL ROUTE
SUMMARIZATION
www.netprotocolxpert.in
 OSPF does not support auto summarization, only manual. OSPF route
summarization can be of two types:
 Internal route summarization;
 External route summarization.
 OSPF internal route summarization on Cisco routers. Unlike EIGRP where is
possible to summarize wherever, in OSPF you can do internal route
summarization only on ABR (between areas). The reason for this is that Link
State Database for all routers in a area must be the same for that area.
 Using OSPF summarization give us significant advantages like:
 Smaller routing tables;
 Less LSA flooding throughout the network;
 Less bandwidth, memory and CPU resources utilization on network links
and devices.
 Summary routes are carried by type 3 LSA (called summary LSA). Normally
type 3 LSA (which runs between areas) is translated from type 1 LSA and
type 2 LSA (which run within area). When summarization is used type 3 LSA
joins multiple routes into fewer. So, instead of flooding all type 1 and 2 LSAs
(translated into type 3 LSA) between areas, only one or several summary
prefixes will be sent between areas carried in type 3 LSA.
 By default summary LSA (type 3 LSA), which runs between areas, does not
contain summary routes, it contains information from type 1 LSA (Router
LSA) and type 2 LSA (Network LSA). So, they carry summarization
information after you configure summarization.
To configure OSPF summarization go to ABR under OSPF configuration mode
and use this command:
area area-id range address mask [advertise | not-advertise][cost cost]
Configure OSPF in this network
Cont..
ABR
 ABR(config)#interface fastEthernet 0/0
 ABR(config-if)#ip address 192.168.0.1 255.255.255.0
 ABR(config-if)#no shutdown
 ABR(config-if)#interface fastEthernet 0/1
 ABR(config-if)#ip address 192.168.1.1 255.255.255.0
 ABR(config-if)#no shutdown
 ABR(config-if)#interface serial 0/0
 ABR(config-if)#ip address 10.0.0.1 255.255.255.252
 ABR(config-if)#no shutdown
 ABR(config)#router ospf 1
 ABR(config-router)#network 192.168.0.0 0.0.0.255 area 15
 ABR(config-router)#network 192.168.1.0 0.0.0.255 area 15
 ABR(config-router)#network 10.0.0.0 0.0.0.3 area 0
HQ
 HQ(config)#interface serial 0/0
 HQ(config-if)#ip address 10.0.0.2 255.255.255.252
 HQ(config-if)#no shutdown
 HQ(config)#router ospf 1
 HQ(config-router)#network 10.0.0.0 0.0.0.3 area 0
NORTH
 NORTH(config)#interface fastEthernet 0/0
 NORTH(config-if)#ip address 192.168.0.2 255.255.255.0
 NORTH(config-if)#no shutdown
 NORTH(config)#router ospf 1
 NORTH(config-router)#network 192.168.0.0 0.0.0.255 area 15
SOUTH
 SOUTH(config)#interface fastEthernet 0/0
 SOUTH(config-if)#ip address 192.168.1.2 255.255.255.0
 SOUTH(config-if)#no shutdown
 SOUTH(config)#router ospf 1
 SOUTH(config-router)#network 192.168.1.0 0.0.0.255 area 15
 We will configure ABR to summarize routes learned in Area 15, thus, a summary route will be sent
in Area 0 to HQ. In next output we can see routing table and summary LSAs in link state database
on HQ router before we configure summarization.
HQ#show ip route
 ... output ommited ...
 Gateway of last resort is not set
 10.0.0.0/30 is subnetted, 1 subnets
 C 10.0.0.0 is directly connected, Serial0/0
 O IA 192.168.0.0/24 [110/74] via 10.0.0.1, 00:14:17, Serial0/0
 O IA 192.168.1.0/24 [110/74] via 10.0.0.1, 00:14:17, Serial0/0
 HQ#
HQ#show ip ospf database
 ... output ommited ...
 Summary Net Link States (Area 0)
 Link ID ADV Router Age Seq# Checksum
 192.168.0.0 192.168.1.1 1004 0x80000001 0x00233B
 192.168.1.0 192.168.1.1 1004 0x80000001 0x001845
 It’s time to configure summarization. Go to ABR under OSPF configuration and type:
ABR(config-router)#area 15 range 192.168.0.0 255.255.254.0
 Range 192.168.0.0/23 contains both networks in Area 15. Let’s verify again routing
table and LSDB on HQ to see the results.
HQ#show ip route
 ... output ommited ...
 Gateway of last resort is not set
 10.0.0.0/30 is subnetted, 1 subnets
 C 10.0.0.0 is directly connected, Serial0/0
 O IA 192.168.0.0/23 [110/74] via 10.0.0.1, 00:04:32, Serial0/0
HQ#show ip ospf database
 ... output ommited ...
 Summary Net Link States (Area 0)
 Link ID ADV Router Age Seq# Checksum
 192.168.0.0 192.168.1.1 310 0x80000003 0x001A43
 It just works fine. Instead of two summary LSA in database, we have only one, the
same is with inter area OSPF routes.
 If we have more than one ABR between backbone area and a non-backbone area, be
careful how you configure summarization to avoid suboptimal routing !
Follow us
@
https://www.facebook.com
/NetProtocolXpert/
https://www.linkedin.com/c
ompany/netprotocol-xpert
https://plus.google.com/u
/0/+NetProtocolXpert_NPX
/posts
https://www.instagram.co
m/netprotocol_xpert/
https://twitter.com/NP
X_cisco
https://branded.me/n
etprotocolxpert

More Related Content

What's hot

OSPF External Route Summarization
OSPF External Route Summarization OSPF External Route Summarization
OSPF External Route Summarization
NetProtocol Xpert
 
CCNA part 6 igrp,ospf,eigrp
CCNA part 6 igrp,ospf,eigrpCCNA part 6 igrp,ospf,eigrp
Eigrp
EigrpEigrp
Route Redistribution
Route RedistributionRoute Redistribution
Route Redistribution
NetProtocol Xpert
 
OSPF Authentication
OSPF AuthenticationOSPF Authentication
OSPF Authentication
NetProtocol Xpert
 
OSPF summary & Differences between OSPF and EIGRP
OSPF summary&Differences between OSPF and EIGRPOSPF summary&Differences between OSPF and EIGRP
OSPF summary & Differences between OSPF and EIGRP
NetProtocol Xpert
 
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
 
EIGRP Overview
EIGRP OverviewEIGRP Overview
EIGRP Overview
NetProtocol Xpert
 
OSPF Summarization
OSPF SummarizationOSPF Summarization
OSPF Summarization
NetProtocol Xpert
 
Ospf
OspfOspf
Ospf
Alp isik
 
Routing Protocol EIGRP
Routing Protocol EIGRPRouting Protocol EIGRP
Routing Protocol EIGRP
Dmitry Figol
 
Ospf
OspfOspf
ENHANCED IGRP (EIGRP) AND OPEN SHORTEST PATH FIRST (OSPF)
ENHANCED IGRP (EIGRP) AND OPEN SHORTEST PATH FIRST (OSPF)ENHANCED IGRP (EIGRP) AND OPEN SHORTEST PATH FIRST (OSPF)
ENHANCED IGRP (EIGRP) AND OPEN SHORTEST PATH FIRST (OSPF)
anilinvns
 
EIGRP (enhanced interior gateway routing protocol)
EIGRP (enhanced interior gateway routing protocol)EIGRP (enhanced interior gateway routing protocol)
EIGRP (enhanced interior gateway routing protocol)
Netwax Lab
 
OSPF Router LSA (Type 1)
OSPF Router LSA (Type 1)OSPF Router LSA (Type 1)
OSPF Router LSA (Type 1)
NetProtocol Xpert
 
BGP Next-hop-self
BGP Next-hop-selfBGP Next-hop-self
BGP Next-hop-self
NetProtocol Xpert
 
Open Shortest Path First
Open Shortest Path FirstOpen Shortest Path First
Open Shortest Path FirstKashif Latif
 
EIGRP Automatic & Manual Summarization
EIGRP Automatic & Manual SummarizationEIGRP Automatic & Manual Summarization
EIGRP Automatic & Manual Summarization
NetProtocol Xpert
 

What's hot (20)

OSPF External Route Summarization
OSPF External Route Summarization OSPF External Route Summarization
OSPF External Route Summarization
 
CCNA part 6 igrp,ospf,eigrp
CCNA part 6 igrp,ospf,eigrpCCNA part 6 igrp,ospf,eigrp
CCNA part 6 igrp,ospf,eigrp
 
Eigrp
EigrpEigrp
Eigrp
 
Route Redistribution
Route RedistributionRoute Redistribution
Route Redistribution
 
OSPF Authentication
OSPF AuthenticationOSPF Authentication
OSPF Authentication
 
OSPF summary & Differences between OSPF and EIGRP
OSPF summary&Differences between OSPF and EIGRPOSPF summary&Differences between OSPF and EIGRP
OSPF summary & Differences between OSPF and EIGRP
 
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)
 
EIGRP Overview
EIGRP OverviewEIGRP Overview
EIGRP Overview
 
OSPF Summarization
OSPF SummarizationOSPF Summarization
OSPF Summarization
 
Ospf
OspfOspf
Ospf
 
Routing Protocol EIGRP
Routing Protocol EIGRPRouting Protocol EIGRP
Routing Protocol EIGRP
 
Ospf
OspfOspf
Ospf
 
ENHANCED IGRP (EIGRP) AND OPEN SHORTEST PATH FIRST (OSPF)
ENHANCED IGRP (EIGRP) AND OPEN SHORTEST PATH FIRST (OSPF)ENHANCED IGRP (EIGRP) AND OPEN SHORTEST PATH FIRST (OSPF)
ENHANCED IGRP (EIGRP) AND OPEN SHORTEST PATH FIRST (OSPF)
 
EIGRP (enhanced interior gateway routing protocol)
EIGRP (enhanced interior gateway routing protocol)EIGRP (enhanced interior gateway routing protocol)
EIGRP (enhanced interior gateway routing protocol)
 
OSPF Router LSA (Type 1)
OSPF Router LSA (Type 1)OSPF Router LSA (Type 1)
OSPF Router LSA (Type 1)
 
OSPF
OSPF OSPF
OSPF
 
BGP Next-hop-self
BGP Next-hop-selfBGP Next-hop-self
BGP Next-hop-self
 
Open Shortest Path First
Open Shortest Path FirstOpen Shortest Path First
Open Shortest Path First
 
EIGRP Automatic & Manual Summarization
EIGRP Automatic & Manual SummarizationEIGRP Automatic & Manual Summarization
EIGRP Automatic & Manual Summarization
 
13. eigrp and ospf
13. eigrp and ospf13. eigrp and ospf
13. eigrp and ospf
 

Viewers also liked

CCNA Routing Fundamentals - EIGRP, OSPF and RIP
CCNA  Routing Fundamentals -  EIGRP, OSPF and RIPCCNA  Routing Fundamentals -  EIGRP, OSPF and RIP
CCNA Routing Fundamentals - EIGRP, OSPF and RIP
sushmil123
 
Cisco Packet Tracer Overview 20 Jul09
Cisco Packet Tracer Overview 20 Jul09Cisco Packet Tracer Overview 20 Jul09
Cisco Packet Tracer Overview 20 Jul09Tumennast Erdenebold
 
FIE 2015 Judson Presentation Collofello Effect
FIE 2015 Judson Presentation Collofello EffectFIE 2015 Judson Presentation Collofello Effect
FIE 2015 Judson Presentation Collofello EffectBethany Smith
 
Interacciones
InteraccionesInteracciones
Interacciones
Pedro Barrán
 
презентация Microsoft power point (3)
презентация Microsoft power point (3)презентация Microsoft power point (3)
презентация Microsoft power point (3)Bugaydima
 
Що_потрібно_при_укладенні_заповіту
Що_потрібно_при_укладенні_заповітуЩо_потрібно_при_укладенні_заповіту
Що_потрібно_при_укладенні_заповітуVitalij Misjats
 
Attract Great Talent – How to tell an authentic story about life at your com...
Attract Great Talent –  How to tell an authentic story about life at your com...Attract Great Talent –  How to tell an authentic story about life at your com...
Attract Great Talent – How to tell an authentic story about life at your com...
Rebecca Feldman
 
Guia de estudio Metolodologia de investigacion
Guia de estudio Metolodologia de investigacionGuia de estudio Metolodologia de investigacion
Guia de estudio Metolodologia de investigacionWilliam Matamoros
 
How to kill a stand up
How to kill a stand upHow to kill a stand up
How to kill a stand up
Helen Snitkovsky
 
Facebook group admin and moderator, what do they do? (Infographic)
Facebook group admin and moderator, what do they do? (Infographic)Facebook group admin and moderator, what do they do? (Infographic)
Facebook group admin and moderator, what do they do? (Infographic)
Stéphane Baudin
 
Web 2.0 und Kommunikation
Web 2.0 und KommunikationWeb 2.0 und Kommunikation
Web 2.0 und Kommunikation
Martin Ebner
 
Búsqueda y Gestión de la Información en la Web (2.ª edición)
Búsqueda y Gestión de la Información en la Web (2.ª edición)Búsqueda y Gestión de la Información en la Web (2.ª edición)
Búsqueda y Gestión de la Información en la Web (2.ª edición)
Irvin Estrada
 
21 Ideas For Nail Art Designs
21 Ideas For Nail Art Designs21 Ideas For Nail Art Designs
21 Ideas For Nail Art Designs
cookdress
 

Viewers also liked (16)

CCNA Routing Fundamentals - EIGRP, OSPF and RIP
CCNA  Routing Fundamentals -  EIGRP, OSPF and RIPCCNA  Routing Fundamentals -  EIGRP, OSPF and RIP
CCNA Routing Fundamentals - EIGRP, OSPF and RIP
 
Cisco Packet Tracer Overview 20 Jul09
Cisco Packet Tracer Overview 20 Jul09Cisco Packet Tracer Overview 20 Jul09
Cisco Packet Tracer Overview 20 Jul09
 
FIE 2015 Judson Presentation Collofello Effect
FIE 2015 Judson Presentation Collofello EffectFIE 2015 Judson Presentation Collofello Effect
FIE 2015 Judson Presentation Collofello Effect
 
Dr Rajamani Resume-11162015
Dr Rajamani Resume-11162015Dr Rajamani Resume-11162015
Dr Rajamani Resume-11162015
 
Interacciones
InteraccionesInteracciones
Interacciones
 
презентация Microsoft power point (3)
презентация Microsoft power point (3)презентация Microsoft power point (3)
презентация Microsoft power point (3)
 
Що_потрібно_при_укладенні_заповіту
Що_потрібно_при_укладенні_заповітуЩо_потрібно_при_укладенні_заповіту
Що_потрібно_при_укладенні_заповіту
 
Attract Great Talent – How to tell an authentic story about life at your com...
Attract Great Talent –  How to tell an authentic story about life at your com...Attract Great Talent –  How to tell an authentic story about life at your com...
Attract Great Talent – How to tell an authentic story about life at your com...
 
Guia de estudio Metolodologia de investigacion
Guia de estudio Metolodologia de investigacionGuia de estudio Metolodologia de investigacion
Guia de estudio Metolodologia de investigacion
 
How to kill a stand up
How to kill a stand upHow to kill a stand up
How to kill a stand up
 
Facebook group admin and moderator, what do they do? (Infographic)
Facebook group admin and moderator, what do they do? (Infographic)Facebook group admin and moderator, what do they do? (Infographic)
Facebook group admin and moderator, what do they do? (Infographic)
 
Res
ResRes
Res
 
Trazabilidad
TrazabilidadTrazabilidad
Trazabilidad
 
Web 2.0 und Kommunikation
Web 2.0 und KommunikationWeb 2.0 und Kommunikation
Web 2.0 und Kommunikation
 
Búsqueda y Gestión de la Información en la Web (2.ª edición)
Búsqueda y Gestión de la Información en la Web (2.ª edición)Búsqueda y Gestión de la Información en la Web (2.ª edición)
Búsqueda y Gestión de la Información en la Web (2.ª edición)
 
21 Ideas For Nail Art Designs
21 Ideas For Nail Art Designs21 Ideas For Nail Art Designs
21 Ideas For Nail Art Designs
 

Similar to OSPF Internal Route Summarization

Ospf Last Modified Eng
Ospf  Last Modified EngOspf  Last Modified Eng
Ospf Last Modified Eng
Alp isik
 
Ospf Cisco
Ospf CiscoOspf Cisco
Ospf Cisco
Alp isik
 
OSPF 3
OSPF 3OSPF 3
OSPF_multi.pdf
OSPF_multi.pdfOSPF_multi.pdf
OSPF_multi.pdf
Denis Rasskazov
 
Dynamic routing OSPF 1
Dynamic routing OSPF 1Dynamic routing OSPF 1
Dynamic routing OSPF 1
Kishore Kumar
 
ENSA_Module_2.pptx
ENSA_Module_2.pptxENSA_Module_2.pptx
ENSA_Module_2.pptx
serieux1
 
ENSA_Module_2.pptx
ENSA_Module_2.pptxENSA_Module_2.pptx
ENSA_Module_2.pptx
SkyBlue659156
 
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
kecatem465
 
acit mumbai - ospf rouitng
acit mumbai - ospf rouitng acit mumbai - ospf rouitng
acit mumbai - ospf rouitng
Sleek International
 
How to Configure Routing Information Protocol (RIP)
How to Configure Routing Information Protocol (RIP)How to Configure Routing Information Protocol (RIP)
How to Configure Routing Information Protocol (RIP)
IT Tech
 
Eigrp on a cisco asa firewall configuration
Eigrp on a cisco asa firewall configurationEigrp on a cisco asa firewall configuration
Eigrp on a cisco asa firewall configuration3Anetwork com
 
Chapter7ccna
Chapter7ccnaChapter7ccna
Chapter7ccnarobertoxe
 
Lab 9 instructions
Lab 9 instructionsLab 9 instructions
Lab 9 instructions
trayyoo
 
How to configure the basic OSPF?
How to configure the basic OSPF?How to configure the basic OSPF?
How to configure the basic OSPF?
E-Lins Technology Co. Ltd.
 
Networking Tutorial Goes to Basic PPP Configuration
Networking Tutorial Goes to Basic PPP ConfigurationNetworking Tutorial Goes to Basic PPP Configuration
Networking Tutorial Goes to Basic PPP Configuration
3Anetwork com
 
Ospf
OspfOspf
Multi-Area OSPF on IOS XR
Multi-Area OSPF on IOS XRMulti-Area OSPF on IOS XR
Multi-Area OSPF on IOS XR
CoderGenie Technologies
 
Allwyn ospf ppt
Allwyn ospf pptAllwyn ospf ppt
Allwyn ospf ppt
Allwyngeorge4
 

Similar to OSPF Internal Route Summarization (20)

Ospf Last Modified Eng
Ospf  Last Modified EngOspf  Last Modified Eng
Ospf Last Modified Eng
 
Ospf Cisco
Ospf CiscoOspf Cisco
Ospf Cisco
 
OSPF 3
OSPF 3OSPF 3
OSPF 3
 
OSPF 3
OSPF 3OSPF 3
OSPF 3
 
OSPF_multi.pdf
OSPF_multi.pdfOSPF_multi.pdf
OSPF_multi.pdf
 
Dynamic routing OSPF 1
Dynamic routing OSPF 1Dynamic routing OSPF 1
Dynamic routing OSPF 1
 
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
 
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
 
acit mumbai - ospf rouitng
acit mumbai - ospf rouitng acit mumbai - ospf rouitng
acit mumbai - ospf rouitng
 
How to Configure Routing Information Protocol (RIP)
How to Configure Routing Information Protocol (RIP)How to Configure Routing Information Protocol (RIP)
How to Configure Routing Information Protocol (RIP)
 
Eigrp on a cisco asa firewall configuration
Eigrp on a cisco asa firewall configurationEigrp on a cisco asa firewall configuration
Eigrp on a cisco asa firewall configuration
 
Chapter7ccna
Chapter7ccnaChapter7ccna
Chapter7ccna
 
Chapter7ccna
Chapter7ccnaChapter7ccna
Chapter7ccna
 
Lab 9 instructions
Lab 9 instructionsLab 9 instructions
Lab 9 instructions
 
How to configure the basic OSPF?
How to configure the basic OSPF?How to configure the basic OSPF?
How to configure the basic OSPF?
 
Networking Tutorial Goes to Basic PPP Configuration
Networking Tutorial Goes to Basic PPP ConfigurationNetworking Tutorial Goes to Basic PPP Configuration
Networking Tutorial Goes to Basic PPP Configuration
 
Ospf
OspfOspf
Ospf
 
Multi-Area OSPF on IOS XR
Multi-Area OSPF on IOS XRMulti-Area OSPF on IOS XR
Multi-Area OSPF on IOS XR
 
Allwyn ospf ppt
Allwyn ospf pptAllwyn ospf ppt
Allwyn ospf ppt
 

More from NetProtocol Xpert

Basic Cisco ASA 5506-x Configuration (Firepower)
Basic Cisco ASA 5506-x Configuration (Firepower)Basic Cisco ASA 5506-x Configuration (Firepower)
Basic Cisco ASA 5506-x Configuration (Firepower)
NetProtocol Xpert
 
MPLS Layer 3 VPN
MPLS Layer 3 VPN MPLS Layer 3 VPN
MPLS Layer 3 VPN
NetProtocol Xpert
 
Common Layer 2 Threats, Attacks & Mitigation
Common Layer 2 Threats, Attacks & MitigationCommon Layer 2 Threats, Attacks & Mitigation
Common Layer 2 Threats, Attacks & Mitigation
NetProtocol Xpert
 
Storm-Control
Storm-ControlStorm-Control
Storm-Control
NetProtocol Xpert
 
Dynamic ARP Inspection (DAI)
Dynamic ARP Inspection (DAI)Dynamic ARP Inspection (DAI)
Dynamic ARP Inspection (DAI)
NetProtocol Xpert
 
IP Source Guard
IP Source Guard IP Source Guard
IP Source Guard
NetProtocol Xpert
 
DHCP Snooping
DHCP SnoopingDHCP Snooping
DHCP Snooping
NetProtocol Xpert
 
Password Recovery
Password RecoveryPassword Recovery
Password Recovery
NetProtocol Xpert
 
Application & Data Center
Application & Data CenterApplication & Data Center
Application & Data Center
NetProtocol Xpert
 
Cisco ISR 4351 Router
Cisco ISR 4351 RouterCisco ISR 4351 Router
Cisco ISR 4351 Router
NetProtocol Xpert
 
Cisco ASR 1001-X Router
Cisco ASR 1001-X RouterCisco ASR 1001-X Router
Cisco ASR 1001-X Router
NetProtocol Xpert
 
Securing management, control & data plane
Securing management, control & data planeSecuring management, control & data plane
Securing management, control & data plane
NetProtocol Xpert
 
Point to-point protocol (ppp), PAP & CHAP
Point to-point protocol (ppp), PAP & CHAPPoint to-point protocol (ppp), PAP & CHAP
Point to-point protocol (ppp), PAP & CHAP
NetProtocol Xpert
 
Avoid DNS lookup when mistyping a command
Avoid DNS lookup when mistyping a commandAvoid DNS lookup when mistyping a command
Avoid DNS lookup when mistyping a command
NetProtocol Xpert
 
TCLSH and Macro Ping Test on Cisco Routers and Switches
TCLSH and Macro Ping Test on Cisco Routers and SwitchesTCLSH and Macro Ping Test on Cisco Routers and Switches
TCLSH and Macro Ping Test on Cisco Routers and Switches
NetProtocol Xpert
 
Private VLANs
Private VLANsPrivate VLANs
Private VLANs
NetProtocol Xpert
 
MTU (maximum transmission unit) & MRU (maximum receive unit)
MTU (maximum transmission unit) & MRU (maximum receive unit)MTU (maximum transmission unit) & MRU (maximum receive unit)
MTU (maximum transmission unit) & MRU (maximum receive unit)
NetProtocol Xpert
 
OTV Configuration
OTV ConfigurationOTV Configuration
OTV Configuration
NetProtocol Xpert
 
Cisco OTV 
Cisco OTV Cisco OTV 
Cisco OTV 
NetProtocol Xpert
 
OTV(Overlay Transport Virtualization)
OTV(Overlay  Transport  Virtualization)OTV(Overlay  Transport  Virtualization)
OTV(Overlay Transport Virtualization)
NetProtocol Xpert
 

More from NetProtocol Xpert (20)

Basic Cisco ASA 5506-x Configuration (Firepower)
Basic Cisco ASA 5506-x Configuration (Firepower)Basic Cisco ASA 5506-x Configuration (Firepower)
Basic Cisco ASA 5506-x Configuration (Firepower)
 
MPLS Layer 3 VPN
MPLS Layer 3 VPN MPLS Layer 3 VPN
MPLS Layer 3 VPN
 
Common Layer 2 Threats, Attacks & Mitigation
Common Layer 2 Threats, Attacks & MitigationCommon Layer 2 Threats, Attacks & Mitigation
Common Layer 2 Threats, Attacks & Mitigation
 
Storm-Control
Storm-ControlStorm-Control
Storm-Control
 
Dynamic ARP Inspection (DAI)
Dynamic ARP Inspection (DAI)Dynamic ARP Inspection (DAI)
Dynamic ARP Inspection (DAI)
 
IP Source Guard
IP Source Guard IP Source Guard
IP Source Guard
 
DHCP Snooping
DHCP SnoopingDHCP Snooping
DHCP Snooping
 
Password Recovery
Password RecoveryPassword Recovery
Password Recovery
 
Application & Data Center
Application & Data CenterApplication & Data Center
Application & Data Center
 
Cisco ISR 4351 Router
Cisco ISR 4351 RouterCisco ISR 4351 Router
Cisco ISR 4351 Router
 
Cisco ASR 1001-X Router
Cisco ASR 1001-X RouterCisco ASR 1001-X Router
Cisco ASR 1001-X Router
 
Securing management, control & data plane
Securing management, control & data planeSecuring management, control & data plane
Securing management, control & data plane
 
Point to-point protocol (ppp), PAP & CHAP
Point to-point protocol (ppp), PAP & CHAPPoint to-point protocol (ppp), PAP & CHAP
Point to-point protocol (ppp), PAP & CHAP
 
Avoid DNS lookup when mistyping a command
Avoid DNS lookup when mistyping a commandAvoid DNS lookup when mistyping a command
Avoid DNS lookup when mistyping a command
 
TCLSH and Macro Ping Test on Cisco Routers and Switches
TCLSH and Macro Ping Test on Cisco Routers and SwitchesTCLSH and Macro Ping Test on Cisco Routers and Switches
TCLSH and Macro Ping Test on Cisco Routers and Switches
 
Private VLANs
Private VLANsPrivate VLANs
Private VLANs
 
MTU (maximum transmission unit) & MRU (maximum receive unit)
MTU (maximum transmission unit) & MRU (maximum receive unit)MTU (maximum transmission unit) & MRU (maximum receive unit)
MTU (maximum transmission unit) & MRU (maximum receive unit)
 
OTV Configuration
OTV ConfigurationOTV Configuration
OTV Configuration
 
Cisco OTV 
Cisco OTV Cisco OTV 
Cisco OTV 
 
OTV(Overlay Transport Virtualization)
OTV(Overlay  Transport  Virtualization)OTV(Overlay  Transport  Virtualization)
OTV(Overlay Transport Virtualization)
 

Recently uploaded

J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang,  ICLR 2024, MLILAB, KAIST AI.pdfJ.Yang,  ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
MLILAB
 
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
thanhdowork
 
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Dr.Costas Sachpazis
 
The role of big data in decision making.
The role of big data in decision making.The role of big data in decision making.
The role of big data in decision making.
ankuprajapati0525
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
Kamal Acharya
 
power quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptxpower quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptx
ViniHema
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Teleport Manpower Consultant
 
ethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.pptethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.ppt
Jayaprasanna4
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
Osamah Alsalih
 
ethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.pptethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.ppt
Jayaprasanna4
 
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
zwunae
 
Runway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptxRunway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptx
SupreethSP4
 
weather web application report.pdf
weather web application report.pdfweather web application report.pdf
weather web application report.pdf
Pratik Pawar
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
fxintegritypublishin
 
English lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdfEnglish lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdf
BrazilAccount1
 
HYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generationHYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generation
Robbie Edward Sayers
 
Architectural Portfolio Sean Lockwood
Architectural Portfolio Sean LockwoodArchitectural Portfolio Sean Lockwood
Architectural Portfolio Sean Lockwood
seandesed
 
ML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptxML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptx
Vijay Dialani, PhD
 
CME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional ElectiveCME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional Elective
karthi keyan
 
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
H.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdfH.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdf
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
MLILAB
 

Recently uploaded (20)

J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang,  ICLR 2024, MLILAB, KAIST AI.pdfJ.Yang,  ICLR 2024, MLILAB, KAIST AI.pdf
J.Yang, ICLR 2024, MLILAB, KAIST AI.pdf
 
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
 
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
 
The role of big data in decision making.
The role of big data in decision making.The role of big data in decision making.
The role of big data in decision making.
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
 
power quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptxpower quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptx
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
 
ethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.pptethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.ppt
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
 
ethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.pptethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.ppt
 
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
 
Runway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptxRunway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptx
 
weather web application report.pdf
weather web application report.pdfweather web application report.pdf
weather web application report.pdf
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
 
English lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdfEnglish lab ppt no titlespecENG PPTt.pdf
English lab ppt no titlespecENG PPTt.pdf
 
HYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generationHYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generation
 
Architectural Portfolio Sean Lockwood
Architectural Portfolio Sean LockwoodArchitectural Portfolio Sean Lockwood
Architectural Portfolio Sean Lockwood
 
ML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptxML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptx
 
CME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional ElectiveCME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional Elective
 
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
H.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdfH.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdf
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
 

OSPF Internal Route Summarization

  • 2.  OSPF does not support auto summarization, only manual. OSPF route summarization can be of two types:  Internal route summarization;  External route summarization.  OSPF internal route summarization on Cisco routers. Unlike EIGRP where is possible to summarize wherever, in OSPF you can do internal route summarization only on ABR (between areas). The reason for this is that Link State Database for all routers in a area must be the same for that area.
  • 3.  Using OSPF summarization give us significant advantages like:  Smaller routing tables;  Less LSA flooding throughout the network;  Less bandwidth, memory and CPU resources utilization on network links and devices.  Summary routes are carried by type 3 LSA (called summary LSA). Normally type 3 LSA (which runs between areas) is translated from type 1 LSA and type 2 LSA (which run within area). When summarization is used type 3 LSA joins multiple routes into fewer. So, instead of flooding all type 1 and 2 LSAs (translated into type 3 LSA) between areas, only one or several summary prefixes will be sent between areas carried in type 3 LSA.  By default summary LSA (type 3 LSA), which runs between areas, does not contain summary routes, it contains information from type 1 LSA (Router LSA) and type 2 LSA (Network LSA). So, they carry summarization information after you configure summarization.
  • 4. To configure OSPF summarization go to ABR under OSPF configuration mode and use this command: area area-id range address mask [advertise | not-advertise][cost cost]
  • 5. Configure OSPF in this network Cont.. ABR  ABR(config)#interface fastEthernet 0/0  ABR(config-if)#ip address 192.168.0.1 255.255.255.0  ABR(config-if)#no shutdown  ABR(config-if)#interface fastEthernet 0/1  ABR(config-if)#ip address 192.168.1.1 255.255.255.0  ABR(config-if)#no shutdown  ABR(config-if)#interface serial 0/0  ABR(config-if)#ip address 10.0.0.1 255.255.255.252  ABR(config-if)#no shutdown
  • 6.  ABR(config)#router ospf 1  ABR(config-router)#network 192.168.0.0 0.0.0.255 area 15  ABR(config-router)#network 192.168.1.0 0.0.0.255 area 15  ABR(config-router)#network 10.0.0.0 0.0.0.3 area 0
  • 7. HQ  HQ(config)#interface serial 0/0  HQ(config-if)#ip address 10.0.0.2 255.255.255.252  HQ(config-if)#no shutdown  HQ(config)#router ospf 1  HQ(config-router)#network 10.0.0.0 0.0.0.3 area 0
  • 8. NORTH  NORTH(config)#interface fastEthernet 0/0  NORTH(config-if)#ip address 192.168.0.2 255.255.255.0  NORTH(config-if)#no shutdown  NORTH(config)#router ospf 1  NORTH(config-router)#network 192.168.0.0 0.0.0.255 area 15
  • 9. SOUTH  SOUTH(config)#interface fastEthernet 0/0  SOUTH(config-if)#ip address 192.168.1.2 255.255.255.0  SOUTH(config-if)#no shutdown  SOUTH(config)#router ospf 1  SOUTH(config-router)#network 192.168.1.0 0.0.0.255 area 15
  • 10.  We will configure ABR to summarize routes learned in Area 15, thus, a summary route will be sent in Area 0 to HQ. In next output we can see routing table and summary LSAs in link state database on HQ router before we configure summarization. HQ#show ip route  ... output ommited ...  Gateway of last resort is not set  10.0.0.0/30 is subnetted, 1 subnets  C 10.0.0.0 is directly connected, Serial0/0  O IA 192.168.0.0/24 [110/74] via 10.0.0.1, 00:14:17, Serial0/0  O IA 192.168.1.0/24 [110/74] via 10.0.0.1, 00:14:17, Serial0/0  HQ#
  • 11. HQ#show ip ospf database  ... output ommited ...  Summary Net Link States (Area 0)  Link ID ADV Router Age Seq# Checksum  192.168.0.0 192.168.1.1 1004 0x80000001 0x00233B  192.168.1.0 192.168.1.1 1004 0x80000001 0x001845
  • 12.  It’s time to configure summarization. Go to ABR under OSPF configuration and type: ABR(config-router)#area 15 range 192.168.0.0 255.255.254.0  Range 192.168.0.0/23 contains both networks in Area 15. Let’s verify again routing table and LSDB on HQ to see the results. HQ#show ip route  ... output ommited ...  Gateway of last resort is not set  10.0.0.0/30 is subnetted, 1 subnets  C 10.0.0.0 is directly connected, Serial0/0  O IA 192.168.0.0/23 [110/74] via 10.0.0.1, 00:04:32, Serial0/0
  • 13. HQ#show ip ospf database  ... output ommited ...  Summary Net Link States (Area 0)  Link ID ADV Router Age Seq# Checksum  192.168.0.0 192.168.1.1 310 0x80000003 0x001A43  It just works fine. Instead of two summary LSA in database, we have only one, the same is with inter area OSPF routes.  If we have more than one ABR between backbone area and a non-backbone area, be careful how you configure summarization to avoid suboptimal routing !

Editor's Notes

  1. NOTE: To change the image on this slide, select the picture and delete it. Then click the Pictures icon in the placeholder to insert your own image.