08-31-2006 06:35 AM - edited 03-03-2019 01:50 PM
I?m trying to redistribute BGP into EIGRP and am having some problems. I?m not seeing any of the BGP routes in EIGRP.
I have attached the configurations of each router I?m working with. The one labeled ?tazwellopps2851? is the head end router. These two routers are connected via MPLS.
The tazwellopps2851 router is connected to another Cisco router that is terminating several P2P T-1?s. I had to configure a static router pointing to 192.168.4.0 on this router in order to get connectivity to this network.
Any help you could give me would be very much appreciated!!
08-31-2006 07:02 AM
Chris
I have looked at the configs that you posted. The biggest problem that I see is that when you redistribute BGP into EIGRP there is no default metric specified. When EIGRP attempts to learn the routes from BGP it has no metric to apply to them (and cetainly the way that BGP decides on routes does not translate into a metric that EIGRP could use). So EIGRP can not learn the BGP routes. I suggest that you configure a default-metric statement under router EIGRP (or you could easily add the metric paramters on the redistribute statement).
default-metric 100000 100 255 1 1500
or
redistribute bgp 65123 metric 100000 100 255 1 1500
Give that a try and let us know what happens.
HTH
Rick
08-31-2006 07:07 AM
Rick,
First thanks for the post.
Can you give me an example of the metric I could use under the default-metric statement?
Thanks very much!!
Chris
08-31-2006 07:09 AM
Chris
default-metric 100000 100 255 1 1500
or
redistribute bgp 65123 metric 100000 100 255 1 1500
Give that a try and let us know what happens.
HTH
Rick
08-31-2006 07:24 AM
I just added redistribute bgp 65123 metric 100000 100 255 1 1500 to my EIGRP configuration on the tazwellopps2851. Didn't seem to change anything. EIGRP seems to be redistributing its routes into BGP because I can see all route on the maynardville router. BGP isn't redistributing its routes..
08-31-2006 07:03 AM
Please post the output from
show ip bgp
show ip eigrp topology
08-31-2006 07:26 AM
08-31-2006 07:56 AM
Chris,
I browsed your file real quick and found most networks listed in BGP are redistributed into EIGRP topology, for instance:
P 12.112.64.160/30, 1 successors, FD is 51200, tag is 7018
via Redistributed (51200/0)
How are you verifying redistribution ?
Via show ip route ?
Remember, if both routing protocols are advertising the same route to the same destination, eBGP will be preferred due to its administrative distance.
08-31-2006 08:41 AM
I remove the static route and I no longer have connectivity.
Once I remove this static route, I never see a route for this network.
I have included in the attachment the output from show ip eigrp top command for one of the networks I am having problems with. It looks to me like this network is being redistributed from BGP.
08-31-2006 08:47 AM
It's learned from BGP indeed !
However, you mentioned that removing the static route breaks the connection which makes me think the network also disappear from the BGP table as well ?
If BGP doesn't have this network on its table, it won't be able to redistribute into EIGRP.
08-31-2006 09:08 AM
Chris
There are some things that I am puzzled about. Is router fcb_tazewell the router with address 192.168.1.3?
I see in that table that you posted from tazwellopps2851 that it had learned 10.200.4.0 from 192.168.1.3 with advertised metric of 28160. On fcb_taxwell it seems to have learned that route from redistribution of static with metric 28160 and also learned it from 192.168.1.250 which is tazwellopps2851 via redistribution of BGP.
I am also puzzled about the number of routers that you have that are in AS65123 for BGP. But the configs that you have posted they only have external neighbors in other ASes. Can you clarify the topology and the relation between the various routers?
HTH
Rick
08-31-2006 10:06 AM
Rick,
fcb_tazewell is 192.168.1.3.
192.168.3.1 has a static route for 10.10.4.0, 10.200.4.0, and 192.168.4.0 that points to tazwellopps2851.
If redistribution is working correctly, 192.168.1.3 should learn routes to 10.10.4.0, 10.200.4.0, and 192.168.4.0 from tazwellopps2851 because these networks are connected to another router off of tazwellopps2851.
Networks 10.10.4.0, 10.200.4.0, and 192.168.4.0 are connected to tazwellopps2851 via an MPLS link.
Let me know if you have any other questions.
Thanks,
Chris
08-31-2006 10:06 AM
Now I see why you need a static route in order for the route to network 10.200.4.0 255.255.255.0 be installed into BGP. On the router fcb_tazewell, you have
router bgp 65123
synchronization
You need to disable synchronization in order for iBGP routes to be installed into the BGP table.
Please rate helpful posts.
Thanks
08-31-2006 10:26 AM
Okay, I have removed disabled the synchronization command under router bgp 65123.
How can I tell if this is going to work without removing the static routes?
What does the synchronization command do anyway?
Thanks again!!!!
08-31-2006 10:32 AM
So you typed
'no synchronization'
Good !
When you have synchronization on, a route learned from another iBGP (a BGP peer running in the same AS) will not be installed in the BGP Routing table. The route can only be installed by using IGP, in your case a static route.
You can tell if it's going to work by issuing
show ip bgp
on that router.
The path should listed 'i' as the origin code.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide