Skip to content

Network Ninja

The Long Road to Cisco

  • Home
  • About
  • Legal Disclaimer
  • Archives

Less
More
Trim
Untrim
« Older
Home
Loading
Newer »

Tag Archive for 'summary-address'

Enhanced Interior Gateway Routing Protocol – Scalable EIGRP – Scenario One

Published
by
Deon Botha
on September 10, 2008
in BSCI, BSCI Questions, Certification and Cisco Systems
. 0 Comments

Working from the my last couple of EIGRP posts I am going to try and crystallize some of the material found by working through questions found in Stewart, B,D., Gough, C (2008). CCNP BSCI Official Exam Certification Guide, Fourth Edition. Indianapolis: Cisco Press. The Scenario works from the EIGRP Technology White Paper Sections on Cisco.com

Frame-Relay Example

The above network is experiencing timeouts and network crashes. In addition, EIGRP appears to be losing routes from its routing tables, which is adding to the problem.

  1. What changes to addressing or EIGRP could affect the route drops and network problems? State the configuration commands necessary to activate this solution on Router A.
    Summarization is the keystone to scalable EIGRP operation. Summarization will limit the query range preventing query scoping. This will also prevent the routes in the Topology Table from being SIA, which affects performance.
    Enter Router Mode to Define Routing Protocol
    RouterA(config)#router eigrp 1
    Define EIGRP Network for Routing Protocol
    RouterA(config-router)#network 10.0.0.0
    Disable Auto Summarization
    RouterA(config-router)#no auto-summary
    This is me being strange and clean exiting from the routing protocol sub-section
    RouterA(config-router)#exit
    Enter the Serial Interface where to start defining your Hub on the Hub-and-Spoke Network
    RouterA(config)#interface serial 0/0
    Define summary for this interface
    RouterA(config-if)#ip summary-address eigrp 1 10.1.0.0 255.255.0.0
    RouterA(config-if)#exit
  2. The WAN is a Frame Relay cloud, and Router A is the hub in the hub-and-spoke configuration. Each Virtual Circuit (VC) is 56-kbps. Give commands to configure Router A for EIGRP over this Non-Broadcast Multi-Access (NBMA) Cloud.
    This Cisco.com Configuration Note should explain why the below is done.
    RouterA(config)#interface serial 0/0
    RouterA(config-if)#frame-relay encapsulation
    RouterA(config-if)#bandwidth 168
    RouterA(config-if)#exit
  3. Give the commands to configure Router B for EIGRP over this NBMA cloud.
    RouterA(config)#interface serial 0/0
    RouterA(config-if)#frame-relay encapsulation
    RouterA(config-if)#bandwidth 56
    RouterA(config-if)#exit

Resources:

Stewart, B,D., Gough, C (2008). CCNP BSCI Official Exam Certification Guide, Fourth Edition. Indianapolis: Cisco Press.

Notes and Notices:

This is a part of my personal BSCI notes and research to assist myself in learning and understanding the concepts and theory for the BSCI exam. I learn by making notes reading and writing things down and wish to file them where I can’t lose them. These notes are not to be seen, judged or mistaken for replacements to Cisco recognized and authorized training which I personally support and attend and suggest you undertake if you are going for the BSCI Certification.

Enhanced Interior Gateway Routing Protocol – Optional Configuration Commands for EIGRP – Summarization

Published
by
Deon Botha
on September 1, 2008
in BSCI, BSCI Notes, Certification, Cisco Systems, Concepts and Constructs, auto-summary and summary-address
. 1 Comment

Scalability in EIGRP comes from Summarization. In EIGRP Summarization limits advertisements, minimizes the size and optimizes the speed of the routing table, limits route recalculation, and keeps to a minimum the amount of memory and processor resources consumed.

Summarization also solves a unique problem in EIGRP known as query scoping. This is when queries do not stop until they reach a dead-end; because of this, queries can loop. Routing convergence cannot proceed until all queries sent out have a reply. Summarization limits queries by stating “only these routes are found past this point” in effect making dead-ends. Summarization at logical points of the network is important to prevent SIA.

As of IOS 12.2(8) auto summarization happens at the classful network boundaries. This is EIGRP being helpful, however most networks use the private address classes 10.0.0.0/8 or 192.168.x.0/24. But some networks combine the two network-numbers and in that case automatic summarization will need to be disabled.

To disable auto summarization do the following:

Router(config)#router eigrp autonomous-system-number
Router(config-router)#network network-number
Router(config-router)#no auto-summary

Used in an example:

Router(config)#router eigrp 1
Router(config-router)#network 10.0.0.0
Router(config-router)#no auto-summary

From here Summarization may be applied at any point in the network. You can configure manual summarization on any router interface. Summarization for upstream should receive consolidated routes and downstream should receive the default route.

Router(config)#router eigrp autonomous-system-number
Router(config-router)#network network-number
Router(config-router)#no auto-summary
Router(config-router)#exit
Router(config)#interface fastethernet 0/1
Router(config-if)#ip summary-address eigrp autonomous-system-number address mask

Used in an Example:

Router(config)#router eigrp 1
Router(config-router)#network 10.0.0.0
Router(config-router)#no auto-summary
Router(config-router)#exit
!Downstream
Router(config)#interface fastethernet 0/1
Router(config-if)#ip summary-address eigrp 1 0.0.0.0 0.0.0.0
Router(config-if)#exit
!Upstream
Router(config)#interface fastethernet 0/2
Router(config-if)#ip summary-address eigrp 1 10.0.0.0 255.255.255.0
Router(config-if)#exit

Summarizing a default route is useful but where there are multiple default paths, this will reduce routing options and prevent failover when the primary route fails.

Software Study Resources:

The Command Memorizer was originally developed by a CCIE Candidate (David Bombal) for his own use and is now available to anyone who wants to use it.Command Memorizer helped him pass the CCIE Lab on the first attempt, and although I am not a CCIE candidate “officially” I have fiddling with it and finding it useful to test my command line retention and overall progress towards CCIE readiness as I do my current CCNP.

The proof will be in the pudding as the Command Memorizer boasts 1000s of commands and hundreds of scenarios to test command line knowledge and retention. It has a section for EIGRP and I also like knowing where I am on my long road to Cisco.

Like most study aids / study tools this tool / aid has a specific focus. The Command Memorizer only works when used in conjunction with theoretical backing because you need to know what a command does and how it relates to the technology area. IOW You need to make the connection before you can start drilling actual commands repetitively to get them to start flowing and become second nature.

For a disclosure statement on my relationship with Configure Terminal.

Cisco Press Resources:

Stewart, B,D., Gough, C (2008). CCNP BSCI Official Exam Certification Guide, Fourth Edition. Indianapolis: Cisco Press.

Notes and Notices:

This is a part of my personal BSCI notes and research to assist myself in learning and understanding the concepts and theory for the BSCI exam. I learn by making notes reading and writing things down and wish to file them where I can’t lose them. These notes are not to be seen, judged or mistaken for replacements to Cisco recognized and authorized training which I personally support and attend and suggest you undertake if you are going for the BSCI Certification.


Search

About

You are currently browsing the Network Ninja weblog archives for 'summary-address' tag.

Latest

RSS
  • Digital Growth with your Job
  • Open Shortest Path First – OSPF Fundamentals – Scenario
  • Open Shortest Path First – OSPF Fundamentals – Questions and Answers – Question 13
  • Open Shortest Path First – OSPF Fundamentals – Questions and Answers – Question 12
  • Open Shortest Path First – OSPF Fundamentals – Questions and Answers – Question 11
  • Open Shortest Path First – OSPF Fundamentals – Questions and Answers – Question 10
  • Open Shortest Path First – OSPF Fundamentals – Questions and Answers – Question 9
  • Open Shortest Path First – OSPF Fundamentals – Questions and Answers – Question 8
  • Open Shortest Path First – OSPF Fundamentals – Questions and Answers – Question 7
  • Open Shortest Path First – OSPF Fundamentals – Questions and Answers – Question 6

Archives

  • June 2009
  • April 2009
  • March 2009
  • February 2009
  • November 2008
  • October 2008
  • September 2008
  • August 2008
  • July 2008
  • June 2008
  • May 2008
  • April 2008

Categories

  • 802.11 (7)
  • 802.1Q (1)
  • 802.1X (1)
  • AAA (1)
  • Access Point (7)
  • ACL (4)
  • Addressing (3)
  • Asides (31)
  • auto-summary (3)
  • AutoQoS (1)
  • Bandwidth (2)
  • BCMSN (55)
  • BDR (2)
  • BGP (1)
  • BPDU Filtering (1)
  • BPDU Guard (2)
  • BPDU Root Guard (1)
  • BSCI (67)
  • BSCI Notes (18)
  • BSCI Questions (48)
  • Business (1)
  • Cabling and Equiptment (3)
  • CAM (1)
  • CCDA (1)
  • CDP (1)
  • CEF (1)
  • Certification (123)
  • CIDR (2)
  • CIR (2)
  • Cisco Systems (144)
  • Concepts and Constructs (76)
  • CoS (1)
  • Cost (3)
  • DAI (1)
  • DDNS (1)
  • Debug (2)
  • DHCP Snooping (1)
  • DHCP Spoofing (1)
  • DR (3)
  • DUAL (1)
  • Dynamic ARP Inspection (1)
  • ECNM (5)
  • EIGRP (5)
  • Enterprise Architecture (7)
  • EtherChannel (1)
  • GLBP (1)
  • Hello Timer (2)
  • Hold Timer (2)
  • Hot Standby Router Protocol (1)
  • HSRP (1)
  • IGRP (1)
  • IIN (2)
  • Inter-Vlan Routing (1)
  • Interconnection Technologies (2)
  • IP Source Guard (1)
  • IS-IS (1)
  • ISL (1)
  • LACP (1)
  • Link State Advertisements (2)
  • Load Balancing (2)
  • Loop Guard (1)
  • MAC Address Flooding (1)
  • MLS (1)
  • MSTP (1)
  • NBAR (1)
  • NBMA (1)
  • Off-Topic (12)
  • OSPF (18)
  • PAgP (1)
  • passive-interface (1)
  • PoE (1)
  • Port Security (1)
  • Priority (2)
  • Proxy ARP (1)
  • PVC (1)
  • QoS (2)
  • RIP (1)
  • RIPv2 (1)
  • Root Guard (1)
  • RSTP (1)
  • Show (6)
  • Software (1)
  • SONA (2)
  • SSH (2)
  • STP (5)
  • Stub Router (3)
  • summary-address (1)
  • Support (4)
  • Switch Spoofing (1)
  • TCAM (1)
  • Telnet (2)
  • Troubleshooting (1)
  • Trunk (6)
  • Unidirectional Link Detection (1)
  • VACL (3)
  • VC (1)
  • Vine (20)
  • VLAN (11)
  • VLAN Hopping (1)
  • VLSM (1)
  • VoIP (1)
  • VRRP (1)
  • VTP (4)
  • VTY (1)
  • Wireless (7)


Styled with Sawchuk

Powered by WordPressabc and K21.0-RC7

Entries Feed and Comments Feed

42 queries. 1.7130 seconds.