SlideShare a Scribd company logo
1 of 17
EIGRP DEFAULT ROUTE
WWW.NETPROTOCOLXPERT.IN
• WITH THE USE OF DEFAULT ROUTES A BETTER NETWORK PERFORMANCE COULD BE
ACHIEVED.
• FOR EXAMPLE ROUTERS AT THE ACCESS LAYER DON’T NEED TO KNOW ALL ROUTES
IN WHOLE NETWORK.
• BY USING A DEFAULT ROUTE YOU CAN SIGNIFICANTLY REDUCE THE SIZE OF
ROUTER’S ROUTING TABLE THUS IMPROVING PERFORMANCE.
• THERE ARE FEW WAYS TO PROPAGATE A DEFAULT ROUTE INTO EIGRP DOMAIN,
• REDISTRIBUTED DEFAULT ROUTE
• DEFAULT ROUTE BY USING IP DEFAULT-NETWORK COMMAND
• DEFAULT ROUTE WITH NETWORK 0.0.0.0 COMMAND
• BY USING IP SUMMARY-ADDRESS COMMAND
ISP
• ISP(CONFIG)#INTERFACE FASTETHERNET 0/0
• ISP(CONFIG-IF)#IP ADDRESS 10.0.0.1 255.255.255.0
• ISP(CONFIG-IF)#NO SHUTDOWN
• ISP(CONFIG-IF)#INTERFACE LO 0
• ISP(CONFIG-IF)#IP ADDRESS 192.168.100.1 255.255.255.0
• ISP(CONFIG)#IP ROUTE 192.168.0.0 255.255.255.0 FASTETHERNET 0/0
BORDER
• BORDER(CONFIG)#INTERFACE FA0/0
• BORDER(CONFIG-IF)#IP ADDRESS 192.168.0.3 255.255.255.0
• BORDER(CONFIG-IF)#NO SHUTDOWN
• BORDER(CONFIG-IF)#INTERFACE FA0/1
• BORDER(CONFIG-IF)#IP ADDRESS 10.0.0.2 255.255.255.0
• BORDER(CONFIG-IF)#NO SHUTDOWN
• BORDER(CONFIG)#ROUTER EIGRP 1
• BORDER(CONFIG-ROUTER)#NETWORK 192.168.0.0 255.255.255.0
R1
• R1(CONFIG)#INTERFACE FA0/0
• R1(CONFIG-IF)#IP ADDRESS 192.168.0.1 255.255.255.0
• R1(CONFIG-IF)#NO SHUTDOWN
• R1(CONFIG)#ROUTER EIGRP 1
• R1(CONFIG-ROUTER)#NETWORK 192.168.0.0 255.255.255.0
R2
• R2(CONFIG)#INTERFACE FA0/0
• R2(CONFIG-IF)#IP ADDRESS 192.168.0.2 255.255.255.0
• R2(CONFIG-IF)#NO SHUTDOWN
• R2(CONFIG)#ROUTER EIGRP 1
• R2(CONFIG-ROUTER)#NETWORK 192.168.0.0 255.255.255.0
REDISTRIBUTED DEFAULT ROUTE
• TO REDISTRIBUTE A DEFAULT ROUTE INTO EIGRP, WE USED A STATIC DEFAULT ROUTE ON
BORDER WHICH POINTS TO ISP.
• BORDER(CONFIG)#IP ROUTE 0.0.0.0 0.0.0.0 10.0.0.1
• NOW, REDISTRIBUTION COMMAND
• BORDER(CONFIG-ROUTER)#REDISTRIBUTE STATIC METRIC 10000 100 255 1 1500
WHERE METRIC VALUES ARE:
• BANDWITH – 10000 KB/S (10 MB/S);
• DELAY – 100 (TENS OF MICROSECONDS, FOR 10MB/S INTERFACE WE HAVE 1000
MICROSECONDS);
• RELIABILITY – 255 (100% RELIABLE);
• LOADING – 1 (IF 255 THEN 100% LOADED);
• MTU – 1500.
SHOW IP ROUTE COMMAND AND SENT A PING TO ISP
LOOPBACK 0 INTERFACE
• R1#SHOW IP ROUTE
• ... OUTPUT OMITTED ...
• GATEWAY OF LAST RESORT IS 192.168.0.3 TO NETWORK 0.0.0.0
• C 192.168.0.0/24 IS DIRECTLY CONNECTED, FASTETHERNET0/0
• D*EX 0.0.0.0/0 [170/307200] VIA 192.168.0.3, 01:45:34, FASTETHERNET0/0
• R1#
• R1#PING 192.168.100.1
• TYPE ESCAPE SEQUENCE TO ABORT.
• SENDING 5, 100-BYTE ICMP ECHOS TO 192.168.100.1, TIMEOUT IS 2 SECONDS:
• !!!!!
• SUCCESS RATE IS 100 PERCENT (5/5), ROUND-TRIP MIN/AVG/MAX = 20/39/48 MS
• R1#
DEFAULT ROUTE BY USING IP DEFAULT-NETWORK COMMAND
• ANOTHER METHOD TO GENERATE A DEFAULT ROUTE IS BY USING IP DEFAULT-
NETWORK COMMAND.
• BUT FIRST TAKE INTO ACCOUNT FEW THINGS:
• DEFAULT NETWORK MUST BE REACHABLE BY THE ROUTER THAT ADVERTISE IT;
• ALL ROUTERS THAT RECEIVE DEFAULT NETWORK MUST KNOW HOW TO REACH IT THROUGH EIGRP.
• I CHOSE ISP’S LOOPBACK TO BE DEFAULT NETWORK AND ON BORDER I SET UP A
STATIC ROUTE AND THEN REDISTRIBUTED IT INTO EIGRP.
• BORDER(CONFIG)#IP ROUTE 192.168.100.0 255.255.255.0 FASTETHERNET 0/1
• BORDER(CONFIG)#ROUTER EIGRP 1
• BORDER(CONFIG-ROUTER)#REDISTRIBUTE STATIC METRIC 10000 100 255 1 1500
• NOW ONLY REMAINS TO ADD IP DEFAULT-NETWORK COMMAND ON BORDER ROUTER
AND A DEFAULT ROUTE WILL BE GENERATED
• BORDER(CONFIG)#IP DEFAULT-NETWORK 192.168.100.0
DEFAULT ROUTE IS INJECTED INTO R1’S ROUTING TABLE
• R1#SHOW IP ROUTE
• ... OUTPUT OMITTED ...
• GATEWAY OF LAST RESORT IS 192.168.0.3 TO NETWORK 192.168.100.0
• C 192.168.0.0/24 IS DIRECTLY CONNECTED, FASTETHERNET0/0
• D*EX 192.168.100.0/24 [170/307200] VIA 192.168.0.3, 00:13:51,
FASTETHERNET0/0
• R1#
DEFAULT ROUTE WITH NETWORK 0.0.0.0 COMMAND
• WITH THIS METHOD YOU ALSO NEED TO HAVE A DEFAULT ROUTE ON ROUTER THAT
GENERATES DEFAULT ROUTE AND THEN USE NETWORK 0.0.0.0 COMMAND, CHECK
CONFIGURATIONS ON BORDER BELOW
• BORDER(CONFIG)#IP ROUTE 0.0.0.0 0.0.0.0 FASTETHERNET0/1
• BORDER(CONFIG)#ROUTER EIGRP 1
• BORDER(CONFIG-ROUTER)#NETWORK 0.0.0.0
• R1#SHOW IP ROUTE
• ... OUTPUT OMITTED ...
• GATEWAY OF LAST RESORT IS 192.168.0.3 TO NETWORK 0.0.0.0
• D 10.0.0.0/8 [90/307200] VIA 192.168.0.3, 00:05:41, FASTETHERNET0/0
• C 192.168.0.0/24 IS DIRECTLY CONNECTED, FASTETHERNET0/0
• D* 0.0.0.0/0 [90/307200] VIA 192.168.0.3, 00:05:41, FASTETHERNET0/0
• R1#
• R1#PING 192.168.100.1
• TYPE ESCAPE SEQUENCE TO ABORT.
• SENDING 5, 100-BYTE ICMP ECHOS TO 192.168.100.1, TIMEOUT IS 2 SECONDS:
• !!!!!
• SUCCESS RATE IS 100 PERCENT (5/5), ROUND-TRIP MIN/AVG/MAX = 20/37/44 MS
• R1#
BY USING IP SUMMARY-ADDRESS COMMAND
• AN ALTERNATIVE METHOD TO CONFIGURE A MANUAL SUMMARY ROUTE ON A
INTERFACE WITH SUMMARY ADDRESS 0.0.0.0 AND MASK 0.0.0.0. THEN, ROUTER WILL
SEND A DEFAULT ROUTE ON THAT INTERFACE.
• BORDER(CONFIG)#INTERFACE FASTETHERNET 0/0
• BORDER(CONFIG-IF)#IP SUMMARY-ADDRESS EIGRP 1 0.0.0.0 0.0.0.0
• BORDER(CONFIG)#IP ROUTE 0.0.0.0 0.0.0.0 FASTETHERNET 0/1
• R1#SHOW IP ROUTE
• ... OUTPUT OMITTED ...
• GATEWAY OF LAST RESORT IS 192.168.0.3 TO NETWORK 0.0.0.0
• C 192.168.0.0/24 IS DIRECTLY CONNECTED, FASTETHERNET0/0
• D* 0.0.0.0/0 [90/307200] VIA 192.168.0.3, 00:00:51, FASTETHERNET0/0
• R1#
• R1#PING 192.168.100.1
• TYPE ESCAPE SEQUENCE TO ABORT.
• SENDING 5, 100-BYTE ICMP ECHOS TO 192.168.100.1, TIMEOUT IS 2 SECONDS:
• !!!!!
• SUCCESS RATE IS 100 PERCENT (5/5), ROUND-TRIP MIN/AVG/MAX = 20/40/60 MS
• R1#
FOLLOW US ON
https://www.facebook.com/N
etProtocolXpert/
https://www.linkedin.com/c
ompany/netprotocol-xpert
https://plus.google.com/u/
0/collection/AYQ-EB
https://www.instagram.com/
netprotocol_xpert/
https://twitter.com/NPX_cisco
https://branded.me/netprot
ocolxpert

More Related Content

What's hot

What's hot (20)

Rip
RipRip
Rip
 
VRF Configuration
VRF ConfigurationVRF Configuration
VRF Configuration
 
BGP Path Selection & Attributes BGP Weight & BGP AS-Path Prepending
BGP Path Selection & Attributes BGP Weight & BGP AS-Path PrependingBGP Path Selection & Attributes BGP Weight & BGP AS-Path Prepending
BGP Path Selection & Attributes BGP Weight & BGP AS-Path Prepending
 
VXLAN Design and Deployment.pdf
VXLAN Design and Deployment.pdfVXLAN Design and Deployment.pdf
VXLAN Design and Deployment.pdf
 
Croniques
CroniquesCroniques
Croniques
 
Spanning Tree Protocol Cheat Sheet
Spanning Tree Protocol Cheat SheetSpanning Tree Protocol Cheat Sheet
Spanning Tree Protocol Cheat Sheet
 
F-35 Multi-Role
F-35 Multi-RoleF-35 Multi-Role
F-35 Multi-Role
 
VPLS Fundamental
VPLS FundamentalVPLS Fundamental
VPLS Fundamental
 
Pst
Pst Pst
Pst
 
Influencia de las jarchas en la lírica maribel y lucia
Influencia de las jarchas en la lírica maribel y luciaInfluencia de las jarchas en la lírica maribel y lucia
Influencia de las jarchas en la lírica maribel y lucia
 
ipv4 & ipv6
ipv4 & ipv6ipv4 & ipv6
ipv4 & ipv6
 
OSPF
OSPF OSPF
OSPF
 
Dc fabric path
Dc fabric pathDc fabric path
Dc fabric path
 
EIGRP (Enhanced Interior Gateway Routing Protocol)
EIGRP (Enhanced Interior Gateway Routing Protocol)EIGRP (Enhanced Interior Gateway Routing Protocol)
EIGRP (Enhanced Interior Gateway Routing Protocol)
 
IP Routing Tutorial
IP Routing TutorialIP Routing Tutorial
IP Routing Tutorial
 
滑空スポーツ講習会2018大阪 グライダーの山岳とウェーブフライト
滑空スポーツ講習会2018大阪 グライダーの山岳とウェーブフライト滑空スポーツ講習会2018大阪 グライダーの山岳とウェーブフライト
滑空スポーツ講習会2018大阪 グライダーの山岳とウェーブフライト
 
EMEA Airheads- Virtual Switching Framework- Aruba OS Switch
EMEA Airheads- Virtual Switching Framework- Aruba OS SwitchEMEA Airheads- Virtual Switching Framework- Aruba OS Switch
EMEA Airheads- Virtual Switching Framework- Aruba OS Switch
 
Routing Protocols
Routing Protocols Routing Protocols
Routing Protocols
 
Joanot martorell
Joanot martorellJoanot martorell
Joanot martorell
 
Mpls Services
Mpls ServicesMpls Services
Mpls Services
 

Similar to EIGRP Default Route

Intro to router_config
Intro to router_configIntro to router_config
Intro to router_config97148881557
 
Dynamic Routing IGRP
Dynamic Routing IGRPDynamic Routing IGRP
Dynamic Routing IGRPKishore Kumar
 
Intro to router_config
Intro to router_configIntro to router_config
Intro to router_configarjuntrk
 
Uccn1003 -may10_-_lect04a_-_intro_to_routing_rules
Uccn1003  -may10_-_lect04a_-_intro_to_routing_rulesUccn1003  -may10_-_lect04a_-_intro_to_routing_rules
Uccn1003 -may10_-_lect04a_-_intro_to_routing_rulesShu Shin
 
Practice exam #2
Practice exam #2Practice exam #2
Practice exam #2Kris Mofu
 
CCNA_200-301_June_2023-v1.2.pdf
CCNA_200-301_June_2023-v1.2.pdfCCNA_200-301_June_2023-v1.2.pdf
CCNA_200-301_June_2023-v1.2.pdfCCIEHOMER
 
Router configuration in packet tracer
Router configuration in packet  tracerRouter configuration in packet  tracer
Router configuration in packet tracerAnabia Anabia
 
Ccna2 mod3-configuring a-router
Ccna2 mod3-configuring a-routerCcna2 mod3-configuring a-router
Ccna2 mod3-configuring a-router97148881557
 
Multihoming Using Juniper MX80
Multihoming Using Juniper MX80Multihoming Using Juniper MX80
Multihoming Using Juniper MX80Juniper Networks
 
Router configuration in packet tracer
Router configuration in packet  tracerRouter configuration in packet  tracer
Router configuration in packet tracerAnabia Anabia
 
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 Configuration3Anetwork com
 
Ccn pv7 route_lab2-1_eigrp-load-balancing_student
Ccn pv7 route_lab2-1_eigrp-load-balancing_studentCcn pv7 route_lab2-1_eigrp-load-balancing_student
Ccn pv7 route_lab2-1_eigrp-load-balancing_studentAngel Clavel
 
Network Design on cisco packet tracer 6.0
Network Design on cisco packet tracer 6.0Network Design on cisco packet tracer 6.0
Network Design on cisco packet tracer 6.0Saurav Pandey
 

Similar to EIGRP Default Route (20)

EIGRP Route Summarization
EIGRP Route SummarizationEIGRP Route Summarization
EIGRP Route Summarization
 
CCNA part 5 routing
CCNA part 5 routingCCNA part 5 routing
CCNA part 5 routing
 
Intro to router_config
Intro to router_configIntro to router_config
Intro to router_config
 
Dynamic Routing IGRP
Dynamic Routing IGRPDynamic Routing IGRP
Dynamic Routing IGRP
 
Intro to router_config
Intro to router_configIntro to router_config
Intro to router_config
 
Uccn1003 -may10_-_lect04a_-_intro_to_routing_rules
Uccn1003  -may10_-_lect04a_-_intro_to_routing_rulesUccn1003  -may10_-_lect04a_-_intro_to_routing_rules
Uccn1003 -may10_-_lect04a_-_intro_to_routing_rules
 
Practice exam #2
Practice exam #2Practice exam #2
Practice exam #2
 
CCNA_200-301_June_2023-v1.2.pdf
CCNA_200-301_June_2023-v1.2.pdfCCNA_200-301_June_2023-v1.2.pdf
CCNA_200-301_June_2023-v1.2.pdf
 
Dynamic Access List
Dynamic Access ListDynamic Access List
Dynamic Access List
 
Router configuration in packet tracer
Router configuration in packet  tracerRouter configuration in packet  tracer
Router configuration in packet tracer
 
Ccna2 mod3-configuring a-router
Ccna2 mod3-configuring a-routerCcna2 mod3-configuring a-router
Ccna2 mod3-configuring a-router
 
Dynamic routing
Dynamic routingDynamic routing
Dynamic routing
 
Modes of router
Modes of routerModes of router
Modes of router
 
Multihoming Using Juniper MX80
Multihoming Using Juniper MX80Multihoming Using Juniper MX80
Multihoming Using Juniper MX80
 
Router configuration in packet tracer
Router configuration in packet  tracerRouter configuration in packet  tracer
Router configuration in packet tracer
 
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
 
CCNA part 4 routers
CCNA part 4 routersCCNA part 4 routers
CCNA part 4 routers
 
Ccn pv7 route_lab2-1_eigrp-load-balancing_student
Ccn pv7 route_lab2-1_eigrp-load-balancing_studentCcn pv7 route_lab2-1_eigrp-load-balancing_student
Ccn pv7 route_lab2-1_eigrp-load-balancing_student
 
Network Design on cisco packet tracer 6.0
Network Design on cisco packet tracer 6.0Network Design on cisco packet tracer 6.0
Network Design on cisco packet tracer 6.0
 
Frame Relay (Multipoint)
Frame Relay (Multipoint)Frame Relay (Multipoint)
Frame Relay (Multipoint)
 

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
 
Common Layer 2 Threats, Attacks & Mitigation
Common Layer 2 Threats, Attacks & MitigationCommon Layer 2 Threats, Attacks & Mitigation
Common Layer 2 Threats, Attacks & MitigationNetProtocol Xpert
 
Dynamic ARP Inspection (DAI)
Dynamic ARP Inspection (DAI)Dynamic ARP Inspection (DAI)
Dynamic ARP Inspection (DAI)NetProtocol Xpert
 
Securing management, control & data plane
Securing management, control & data planeSecuring management, control & data plane
Securing management, control & data planeNetProtocol 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 & CHAPNetProtocol 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 commandNetProtocol 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 SwitchesNetProtocol 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(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

The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxhumanexperienceaaa
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 

Recently uploaded (20)

The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 

EIGRP Default Route

  • 2. • WITH THE USE OF DEFAULT ROUTES A BETTER NETWORK PERFORMANCE COULD BE ACHIEVED. • FOR EXAMPLE ROUTERS AT THE ACCESS LAYER DON’T NEED TO KNOW ALL ROUTES IN WHOLE NETWORK. • BY USING A DEFAULT ROUTE YOU CAN SIGNIFICANTLY REDUCE THE SIZE OF ROUTER’S ROUTING TABLE THUS IMPROVING PERFORMANCE. • THERE ARE FEW WAYS TO PROPAGATE A DEFAULT ROUTE INTO EIGRP DOMAIN, • REDISTRIBUTED DEFAULT ROUTE • DEFAULT ROUTE BY USING IP DEFAULT-NETWORK COMMAND • DEFAULT ROUTE WITH NETWORK 0.0.0.0 COMMAND • BY USING IP SUMMARY-ADDRESS COMMAND
  • 3.
  • 4. ISP • ISP(CONFIG)#INTERFACE FASTETHERNET 0/0 • ISP(CONFIG-IF)#IP ADDRESS 10.0.0.1 255.255.255.0 • ISP(CONFIG-IF)#NO SHUTDOWN • ISP(CONFIG-IF)#INTERFACE LO 0 • ISP(CONFIG-IF)#IP ADDRESS 192.168.100.1 255.255.255.0 • ISP(CONFIG)#IP ROUTE 192.168.0.0 255.255.255.0 FASTETHERNET 0/0
  • 5. BORDER • BORDER(CONFIG)#INTERFACE FA0/0 • BORDER(CONFIG-IF)#IP ADDRESS 192.168.0.3 255.255.255.0 • BORDER(CONFIG-IF)#NO SHUTDOWN • BORDER(CONFIG-IF)#INTERFACE FA0/1 • BORDER(CONFIG-IF)#IP ADDRESS 10.0.0.2 255.255.255.0 • BORDER(CONFIG-IF)#NO SHUTDOWN • BORDER(CONFIG)#ROUTER EIGRP 1 • BORDER(CONFIG-ROUTER)#NETWORK 192.168.0.0 255.255.255.0
  • 6. R1 • R1(CONFIG)#INTERFACE FA0/0 • R1(CONFIG-IF)#IP ADDRESS 192.168.0.1 255.255.255.0 • R1(CONFIG-IF)#NO SHUTDOWN • R1(CONFIG)#ROUTER EIGRP 1 • R1(CONFIG-ROUTER)#NETWORK 192.168.0.0 255.255.255.0 R2 • R2(CONFIG)#INTERFACE FA0/0 • R2(CONFIG-IF)#IP ADDRESS 192.168.0.2 255.255.255.0 • R2(CONFIG-IF)#NO SHUTDOWN • R2(CONFIG)#ROUTER EIGRP 1 • R2(CONFIG-ROUTER)#NETWORK 192.168.0.0 255.255.255.0
  • 7. REDISTRIBUTED DEFAULT ROUTE • TO REDISTRIBUTE A DEFAULT ROUTE INTO EIGRP, WE USED A STATIC DEFAULT ROUTE ON BORDER WHICH POINTS TO ISP. • BORDER(CONFIG)#IP ROUTE 0.0.0.0 0.0.0.0 10.0.0.1 • NOW, REDISTRIBUTION COMMAND • BORDER(CONFIG-ROUTER)#REDISTRIBUTE STATIC METRIC 10000 100 255 1 1500
  • 8. WHERE METRIC VALUES ARE: • BANDWITH – 10000 KB/S (10 MB/S); • DELAY – 100 (TENS OF MICROSECONDS, FOR 10MB/S INTERFACE WE HAVE 1000 MICROSECONDS); • RELIABILITY – 255 (100% RELIABLE); • LOADING – 1 (IF 255 THEN 100% LOADED); • MTU – 1500.
  • 9. SHOW IP ROUTE COMMAND AND SENT A PING TO ISP LOOPBACK 0 INTERFACE • R1#SHOW IP ROUTE • ... OUTPUT OMITTED ... • GATEWAY OF LAST RESORT IS 192.168.0.3 TO NETWORK 0.0.0.0 • C 192.168.0.0/24 IS DIRECTLY CONNECTED, FASTETHERNET0/0 • D*EX 0.0.0.0/0 [170/307200] VIA 192.168.0.3, 01:45:34, FASTETHERNET0/0 • R1# • R1#PING 192.168.100.1 • TYPE ESCAPE SEQUENCE TO ABORT. • SENDING 5, 100-BYTE ICMP ECHOS TO 192.168.100.1, TIMEOUT IS 2 SECONDS: • !!!!! • SUCCESS RATE IS 100 PERCENT (5/5), ROUND-TRIP MIN/AVG/MAX = 20/39/48 MS • R1#
  • 10. DEFAULT ROUTE BY USING IP DEFAULT-NETWORK COMMAND • ANOTHER METHOD TO GENERATE A DEFAULT ROUTE IS BY USING IP DEFAULT- NETWORK COMMAND. • BUT FIRST TAKE INTO ACCOUNT FEW THINGS: • DEFAULT NETWORK MUST BE REACHABLE BY THE ROUTER THAT ADVERTISE IT; • ALL ROUTERS THAT RECEIVE DEFAULT NETWORK MUST KNOW HOW TO REACH IT THROUGH EIGRP.
  • 11. • I CHOSE ISP’S LOOPBACK TO BE DEFAULT NETWORK AND ON BORDER I SET UP A STATIC ROUTE AND THEN REDISTRIBUTED IT INTO EIGRP. • BORDER(CONFIG)#IP ROUTE 192.168.100.0 255.255.255.0 FASTETHERNET 0/1 • BORDER(CONFIG)#ROUTER EIGRP 1 • BORDER(CONFIG-ROUTER)#REDISTRIBUTE STATIC METRIC 10000 100 255 1 1500 • NOW ONLY REMAINS TO ADD IP DEFAULT-NETWORK COMMAND ON BORDER ROUTER AND A DEFAULT ROUTE WILL BE GENERATED • BORDER(CONFIG)#IP DEFAULT-NETWORK 192.168.100.0
  • 12. DEFAULT ROUTE IS INJECTED INTO R1’S ROUTING TABLE • R1#SHOW IP ROUTE • ... OUTPUT OMITTED ... • GATEWAY OF LAST RESORT IS 192.168.0.3 TO NETWORK 192.168.100.0 • C 192.168.0.0/24 IS DIRECTLY CONNECTED, FASTETHERNET0/0 • D*EX 192.168.100.0/24 [170/307200] VIA 192.168.0.3, 00:13:51, FASTETHERNET0/0 • R1#
  • 13. DEFAULT ROUTE WITH NETWORK 0.0.0.0 COMMAND • WITH THIS METHOD YOU ALSO NEED TO HAVE A DEFAULT ROUTE ON ROUTER THAT GENERATES DEFAULT ROUTE AND THEN USE NETWORK 0.0.0.0 COMMAND, CHECK CONFIGURATIONS ON BORDER BELOW • BORDER(CONFIG)#IP ROUTE 0.0.0.0 0.0.0.0 FASTETHERNET0/1 • BORDER(CONFIG)#ROUTER EIGRP 1 • BORDER(CONFIG-ROUTER)#NETWORK 0.0.0.0
  • 14. • R1#SHOW IP ROUTE • ... OUTPUT OMITTED ... • GATEWAY OF LAST RESORT IS 192.168.0.3 TO NETWORK 0.0.0.0 • D 10.0.0.0/8 [90/307200] VIA 192.168.0.3, 00:05:41, FASTETHERNET0/0 • C 192.168.0.0/24 IS DIRECTLY CONNECTED, FASTETHERNET0/0 • D* 0.0.0.0/0 [90/307200] VIA 192.168.0.3, 00:05:41, FASTETHERNET0/0 • R1# • R1#PING 192.168.100.1 • TYPE ESCAPE SEQUENCE TO ABORT. • SENDING 5, 100-BYTE ICMP ECHOS TO 192.168.100.1, TIMEOUT IS 2 SECONDS: • !!!!! • SUCCESS RATE IS 100 PERCENT (5/5), ROUND-TRIP MIN/AVG/MAX = 20/37/44 MS • R1#
  • 15. BY USING IP SUMMARY-ADDRESS COMMAND • AN ALTERNATIVE METHOD TO CONFIGURE A MANUAL SUMMARY ROUTE ON A INTERFACE WITH SUMMARY ADDRESS 0.0.0.0 AND MASK 0.0.0.0. THEN, ROUTER WILL SEND A DEFAULT ROUTE ON THAT INTERFACE. • BORDER(CONFIG)#INTERFACE FASTETHERNET 0/0 • BORDER(CONFIG-IF)#IP SUMMARY-ADDRESS EIGRP 1 0.0.0.0 0.0.0.0 • BORDER(CONFIG)#IP ROUTE 0.0.0.0 0.0.0.0 FASTETHERNET 0/1
  • 16. • R1#SHOW IP ROUTE • ... OUTPUT OMITTED ... • GATEWAY OF LAST RESORT IS 192.168.0.3 TO NETWORK 0.0.0.0 • C 192.168.0.0/24 IS DIRECTLY CONNECTED, FASTETHERNET0/0 • D* 0.0.0.0/0 [90/307200] VIA 192.168.0.3, 00:00:51, FASTETHERNET0/0 • R1# • R1#PING 192.168.100.1 • TYPE ESCAPE SEQUENCE TO ABORT. • SENDING 5, 100-BYTE ICMP ECHOS TO 192.168.100.1, TIMEOUT IS 2 SECONDS: • !!!!! • SUCCESS RATE IS 100 PERCENT (5/5), ROUND-TRIP MIN/AVG/MAX = 20/40/60 MS • R1#