Link to home
Start Free TrialLog in
Avatar of Member_2_7966113
Member_2_7966113

asked on

Cisco Mutual redistribution between EIGRP and BGP and match statements

Hello Experts

I'm working on a mutual redistribution problem between EIGRP and BGP

The idea is set a tag (210) to traffic coming from our LAN on R2-2 so that it can be matched and denied on R3-7. The goal is to prevent routing loops.

The routes are being redistributed into R1-1, but I'm not able to see if the routes are being tagged.

Can someone let me know how to verify routes are being filtered with the route-maps?

TBH, I don't think its working at all.

I have attached the configs and show commands.

I read somewhere the problem was with command match route-type internal, but I'm not sure if that is the problem

Any help will be greatly appreciated.

Cheers
R1-1.txt
R2-2.txt
R3-7.txt
R4-3.txt
R5-8.txt
JMROUTETAGGING.png
Avatar of Predrag Jovic
Predrag Jovic
Flag of Poland image

Once again (I wrote the same for OSPF redistribution).
You can't tag routes while you redistribute routes into BGP (at least not with route map set tag <number>).

You can check route tag typically by using
# sh ip route x.x.x.x    <--- specific route that you need to check (easy on router on what you are not doing redistribution)
# sh ip eigrp topology  <--- for routes imported into EIGRP
# sh ip ospf database   <--- for routes imported into OSPF
Avatar of Member_2_7966113
Member_2_7966113

ASKER

You can find article about BGP autotagging here.
I remembered that scenario when I saw message
% "TAG" used as redistribute ospf into bgp route-map, set tag not supported
Did not go deep in configurations from your links currently, but as much as I can see it is the same what I already wrote you for ospf to bgp mutual redistribution. There is no tagging OSFP while redistributing in BGP (but did not go too deep into configs 2- 4, I just checked the first one).
One of your possible solutions is to change AD of BGP to look worse than EIGRP or OSPF (on edge routers) so as long as internal routes exist internal routes with lower AD will be placed in routing table of edge routers. Changing AD for routing protocols is locally significant, so it will not affect any other routers.
But scenario should be real life, otherwise I am not sure which loop prevention mechanism to apply since there is more than one option for those scenarios.
Hi Predrag,

Thanks again for responding. You have been very helpful.

Because I was certain it worked I also posted the question on Cisco website. This is what they have to say:

https://supportforums.cisco.com/discussion/13110191/mutual-redistribution-between-eigrp-and-bgp-and-match-statements#comment-11579926
ASKER CERTIFIED SOLUTION
Avatar of Predrag Jovic
Predrag Jovic
Flag of Poland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi Predrag,

Thanks again for your input.

I'm not sure what your conclusion is?
No conclusion, just suggestions to what you should pay attention too.
Redistribution and loop prevention can be done in several ways and the best way (easiest way) may be protocol or scenario specific.
Hi Predrag, if think we have both come to the same conclusion. In any case your answers pointed me in the right direction