[c-nsp] Redistributing default route across MPLS WAN

jason evans jevans24 at gmail.com
Tue Jul 25 21:25:08 EDT 2006


Seems like this should be easy, but I'm having no success ...

The problem is the SF office has a flaky internet connection that
Verizon is looking into (we all know how long that can take). Good
news is that there is an MPLS Multilink PPP connection back into the
Verizon MPLS network and SF can reach NY and other offices (via
private IP's) on the MPLS bone just fine.

My objective is to route all traffic, Internet included for the time
being, through the MPLS link to NY, into the NY LAN and out of the NY
Firewall. All this has been set up and everything works fine IF the
NY-PPP router has a specific entry for the external network I'm trying
to reach. So for instance if I put a static route entry in NY-PPP for
1.2.3.4 255.255.255.255 NY-FW it works fine and from SF I can ping to
this external host. However, if I don't have a static entry in NY-PPP
then the packet gets dropped after it traverses the Verizon MPLS
first-hop neighbor. The DR on NY-PPP is the NY-FW btw.

Obviously, I'm not redistributing my entire BGP table into my LAN, so
how do I "trick" the NY-PPP into accepting the packets without a
specific entry being advertised to my SF MPLS router?

NY-PPP config (relevant)

router eigrp 100
 redistribute connected
 redistribute bgp 123456 route-map RM-redist-def-route-into-bgp
 network 192.168.20.0
 network 192.168.24.0
 default-metric 10000 100 250 100 1500
 no auto-summary
!
router bgp 123456
 no synchronization
 bgp log-neighbor-changes
 network 192.168.24.0
 redistribute connected
 redistribute static
 redistribute eigrp 100
 neighbor 152.161.172.21 remote-as 65000
 no auto-summary
!
ip classless
ip route 0.0.0.0 0.0.0.0 192.168.1.254
ip route 1.2.3.4 255.255.255.255 192.168.1.254
ip route 2.3.4.5 255.255.255.255 192.168.1.254

ip prefix-list redist-def-route-into-bgp seq 5 permit 0.0.0.0/0

route-map RM-redist-def-route-into-bgp permit 10
 match ip address redist-def-route-into-bgp

SF-MPLS config (relevant)

router eigrp 100
 redistribute connected
 redistribute bgp 123456
 network 192.168.210.0 0.0.0.127
 network 192.168.210.128 0.0.0.127
 default-metric 10000 100 250 100 1500
 auto-summary
!
router bgp 123456
 no synchronization
 bgp log-neighbor-changes
 redistribute connected
 redistribute static
 neighbor 152.161.122.69 remote-as 65000
 no auto-summary
!
ip classless
ip route 0.0.0.0 0.0.0.0 192.168.24.24 (NY-PPP)
ip route 192.168.210.128 255.255.255.128 192.168.210.1

Any guidance is greatly appreciated!

Jason


More information about the cisco-nsp mailing list