Monday, June 18, 2012

CCNP ROUTE Lab Manual Lab 4-4: EIGRP and OSPF Case Study


Here are my notes as I worked through this lab.  Either this lab seemed pretty straight-forward, or I’m getting better!

screenshot


Requirements:

  1. The ITA core network is running EIGRP in AS 1
    1. Implementation:
      1. router eigrp 1
        1. no auto-summary
        2. network <network>
    1. Verification:
      1. sh ip protocols
      2. sh ip eigrp neighbors
      1. sh ip route
    1. write memory

 

  1. Summarize the loopback interfaces on R2 with the best summary route to the other EIGRP routers
    1. Implementation:
      1. interface <interface> (Needs to be done on s1/0 and fa0/0)
        1. ip summary-address eigrp 1 192.168.1.96 255.255.255.240
    1. Verification:
      1. sh ip route on R2
        1. verify presense of 192.168.1.96/28 summary route
      1. sh ip eigrp topology all-links on remote router
        1. verify presence of 192.168.1.96/28 summary route
    1. write memory
  1. Loopback 192 on R3 represents a connection to the Internet.  Originate a default route into EIGRP from R3
    1. Implementation:
      1. ip default-network 192.168.100.0
    1. Verification:
      1. sh ip route on R3
        1. verify 192.168.100.0/24 is a candidate default
      1. sh ip route on remote router
        1. verify presence of 192.168.100.0/24 route as candidate default, and that the gateway of last resort is properly populated
    1. write memory
  1. The Local Travel Agency router, R4, needs to communicate with the ITA core via OSPF area 0
    1. Implementation:
      1. router ospf 1
        1. network <network> area 0
    1. Verification:
      1. sh ip protocols
      1. sh ip ospf neighbors
      1. sh ip route ospf
    1. write memory
  1. Redistribute OSPF into EIGRP
    1. Implementation:
      1. router eigrp 1
        1. redistribute  ospf 1 metric 1500 1500 255 255 1
    1. Verify:
      1. sh ip route eigrp on router in ITA core network and verify presence of external EIGRP (D EX) routes for the Local Travel Agency OSPF networks.
    1. write memory
  1. Originate a default route into the OSPF process from R3.
    1. Implementation:
      1. router ospf 1
        1. default-information originate always
    1. Verify:
      1. sh ip ospf database on R3
        1. verify presence of Type 5 LSA
      1. sh ip route ospf on R4
        1. verify presence of OSPF candidate default external type 2 (O*E2) route
    1. write memory
  1. Test connectivity with a TCL script

foreach address {

192.168.1.1

192.168.1.129

192.168.1.133

192.168.1.101

192.168.1.105

192.168.1.109

192.168.1.113

192.168.1.130

192.168.1.161

192.168.1.5

192.168.100.1

10.1.1.3

10.4.4.4

10.1.1.4

} { ping $address }

 

Mission complete!