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
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.
- 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 - 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 - 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:
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.










