in

CCIE - Internetwork Expert's Online Community

Latest post 12-23-2008 2:21 PM by skint. 1 replies.
Page 1 of 1 (2 items)
Sort Posts: Previous Next
  • 11-06-2008 2:32 AM

    • NTllect
    • Top 10 Contributor
    • Joined on 07-11-2008
    • CIS
    • Posts 269
    • Points 3,860

    Task 5.4

    • Configure the network in such a way that these routers still have reachability to all BGP learned prefixes, but do not need to carry a full view of the Internet  routing table.

    There are a lot of drawbacks associated with SG's solution. I decided to solve this task using redistribution.

    Rack1R6(config-router)#do sh run | s eigrp 10
     router eigrp 10
     redistribute bgp 100 metric 1 1 1 1 1 route-map BGP->EIGRP

    Rack1R6(config-router)#do sh run | b pref
    ip prefix-list BGP->EIGRP seq 5 permit 28.119.16.0/22
    ip prefix-list BGP->EIGRP seq 10 permit 112.0.0.0/5
    !
    !
    !
    route-map BGP->EIGRP permit 10
     match ip address prefix-list BGP->EIGRP

    Rack1R5(config-router)#do sh run | b pref
    ip prefix-list BGP->EIGRP seq 5 permit 28.119.16.0/22
    ip prefix-list BGP->EIGRP seq 10 permit 112.0.0.0/5
    ip prefix-list BGP->EIGRP seq 15 permit 205.90.31.0/24
    ip prefix-list BGP->EIGRP seq 20 permit 220.20.3.0/24
    ip prefix-list BGP->EIGRP seq 25 permit 222.22.2.0/24
    !

    route-map BGP->EIGRP permit 10
     match ip address prefix-list BGP->EIGRP

    router eigrp 10
     redistribute bgp 100 metric 1 1 1 1 1 route-map BGP->EIGRP
     

    This way we don't violate task req and in the same time provide optimal and working solution.

     

    • Post Points: 20
  • 12-23-2008 2:21 PM In reply to

    • skint
    • Top 100 Contributor
    • Joined on 12-18-2008
    • Posts 15
    • Points 120

    Re: Task 5.4

    My issue with the SG here is that it break section 4.3 as well.  The leak-map needs to include the 200.0.0.0/22 and 54.1.1.0/24 network that are learned from R6 / BB1.  I just added another sequence to leak-map on R5 to address this.

     

    • Post Points: 5
Page 1 of 1 (2 items)