Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MPLS, BGP, and EIGRP

Status
Not open for further replies.

jbrotschul

Technical User
Jan 5, 2005
43
US
[blue]I'm a newbie, so any feedback is greatly appreciated. I'm trying to incorporate a Verizon MPLS network to our current infrastructure.

We use eigrp as our routing protocol on our internal network. How can I make this work using the mpls connections with bgp?

So we have the mpls circuit in Rotterdam and Phila turned up...
[/blue]

PHILADELPHIA (Cisco 4506 - Brain1 Ia.Ia.Ia.Ia):

interface Vlan28
description Verizon Business MPLS Ethernet Access
ip address Ea.Ea.Ea.Ea 255.255.255.252
no ip redirects
ip pim dense-mode

interface FastEthernet5/6
description Verizon Business MPLS Ethernet Access
switchport access vlan 28
switchport mode access

router bgp 11111
no synchronization
bgp log-neighbor-changes
redistribute connected
neighbor Eb.Eb.Eb.Eb remote-as 22222
no auto-summary

************************************************************

ROTTERDAM (Cisco 2811 - BDP_Rotterdam_MPLS Ic.Ic.Ic.Ic):

interface Serial0/2/0:1
no ip address
encapsulation frame-relay IETF
! point-to-point
description Verizon Business MPLS Circuit rotterdam-nl
ip address Ec.Ec.Ec.Ec 255.255.255.252
frame-relay interface-dlci 100 IETF
!
router bgp 11111
no synchronization
bgp log-neighbor-changes
redistribute connected
neighbor Ed.Ed.Ed.Ed remote-as 22222
no auto-summary


[blue]And I can communicate accross the mpls network to each other...[/blue]

PHILADELPHIA (Cisco 4506 - Brain1 Ia.Ia.Ia.Ia):

BDP_Brain1# ping Ic.Ic.Ic.Ic

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to Ic.Ic.Ic.Ic, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 92/94/96 ms

BDP_Brain1#trace Ic.Ic.Ic.Ic

Type escape sequence to abort.
Tracing the route to Ic.Ic.Ic.Ic

1 Eb.Eb.Eb.Eb 0 msec 4 msec 4 msec
2 Ed.Ed.Ed.Ed [AS 22222] 88 msec 92 msec 88 msec
3 Ec.Ec.Ec.Ec [AS 22222] 92 msec * 92 msec
BDP_Brain1#

************************************************************

ROTTERDAM (Cisco 2811 - BDP_Rotterdam_MPLS Ic.Ic.Ic.Ic):

BDP_Rotterdam_MPLS#ping Ia.Ia.Ia.Ia

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to Ia.Ia.Ia.Ia, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 92/95/96 ms

BDP_Rotterdam_MPLS# trace Ia.Ia.Ia.Ia

Type escape sequence to abort.
Tracing the route to Ia.Ia.Ia.Ia

1 Ed.Ed.Ed.Ed 4 msec 4 msec 4 msec
2 Ea.Ea.Ea.Ea [AS 22222] 96 msec 96 msec *
BDP_Rotterdam_MPLS#


[blue]But i can't communicate beyond the 2 end points...[/blue]

PHILADELPHIA (Cisco 4506 - Brain1 Ia.Ia.Ia.Ia):

BDP_Brain1#ping Id.Id.Id.Id

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to Id.Id.Id.Id, timeout is 2 seconds:
.....
Success rate is 0 percent (0/5)
BDP_Brain1#trace Id.Id.Id.Id

Type escape sequence to abort.
Tracing the route to Id.Id.Id.Id

1 Eb.Eb.Eb.Eb 4 msec 4 msec 0 msec
2 Ed.Ed.Ed.Ed [AS 22222] 88 msec 88 msec 88 msec
3 Ec.Ec.Ec.Ec [AS 22222] 96 msec 96 msec 96 msec
4 * * *

************************************************************

ROTTERDAM (Cisco 2811 - BDP_Rotterdam_MPLS Ic.Ic.Ic.Ic):

BDP_Rotterdam_MPLS#ping Ib.Ib.Ib.Ib

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to Ib.Ib.Ib.Ib, timeout is 2 seconds:
.....
Success rate is 0 percent (0/5)
BDP_Rotterdam_MPLS#trace Ib.Ib.Ib.Ib

Type escape sequence to abort.
Tracing the route to Ib.Ib.Ib.Ib

1 Ed.Ed.Ed.Ed 4 msec 4 msec 4 msec
2 Ea.Ea.Ea.Ea [AS 22222] 96 msec 92 msec 96 msec
3 * * *

 
Vipergg is correct. You must also run eigrp on the routers and re-disribute into each routing protocol and vice versa.
 
I don't think I am... Excuse my ignorance, but is that something that I can just do, or do I need to get Verizon involved on the PE side?
 
if you manage the CE routers then you can do it..
you just need to enter the redistribute commands into the Routing protocols.. The PEs are BGP and then MPLS facing the Core so they will pass whatever you send them.
 
[blue]Okay. I put in this command on our Philadelphia side, and the routes are now being distributed. Thanks for your help.[/blue]

router eigrp 1111
redistribute bgp 11111 metric 7680 10 255 255 1500
network X.X.0.0
no auto-summary

router bgp 11111
no synchronization
bgp log-neighbor-changes
redistribute connected
redistribute eigrp 1111
neighbor Eb.Eb.Eb.Eb remote-as 22222
no auto-summary

[blue]Now the question is this... Can I influence the metrics to make this mpls connection the preferred route? We currently have a vpn connection over another line that is the preferred route in the tables.[/blue]
 
One solution for the next question is to use floating static routes to via the VPN. The AD could be 200 for the static routes. When the MPLS goes down, the re-distributed routes that are 170 will be gone and take the static routes that has the AD of 200.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top