09-20-2023 02:37 AM
I have a topology where traffic from R6 to R5 can go through R4 direct connection with R5 or through tunnel between R4 and R5. Right now the traffic is taking the gig link between R4 and R5 for all traffic coming from R6. I am trying to engineer the traffic in a way that if it is coming from the loopback of R6 it should go through the tunnel all other traffic should go through the gig link between R4 and R5.
On R4, I tried using prefix-list and permitted the loopback of R6 and set the next-hop using the route-map and applied to the inbound traffic through EIGRP using distribute-list. But it redirects all traffic coming in from R6 to the tunnel now.
I have tried using extended IP access-list and permited the host of R6 loopback to R5 loopback but it still doesn't work. Any suggestions.
When I tried to apply the distribute-list through EIGRP to the inbound traffic on the link between R4 and R6 nothing works. If I only apply the distribute-list inbound through EIGRP only then it works but with the problem I have explained above.
09-20-2023 11:53 PM
Thanks for the input, I will try PBR and update.
I am using the INE topology for CCIE Infrastructure. I was working with EIGRP and trying different things so I just tried this situation, I am not following any particular lab for this purpose, but if you know some I would appreciate if you could let me know.
Trying to perpare for the CCIE lab and kind of lost.
09-21-2023 08:05 AM - edited 09-21-2023 08:12 AM
I thought I recognize INE lab topology; Here is my "modified" version of the "EIGRP Filtering with Extended Access-Lists" lab based on old INE RSv5 lab (configs and topology is still similar to new lab). It's probably not what you were looking originally but it is part of CCIE lab topics/syllabus (under Route filtering). You can easily apply this concept to your topology. Also, You need a good "structured" lab workbook that covers almost all topics. Note that In addition to using distribute-list to do EIGRP Routes filtering, you can use distance command and offset-lists. In particular, distribute-list using route-maps and tags for routes that are being redistributed into EIGRP looks interesting.
Regards, ML
**Please Rate All Helpful Responses **
09-21-2023 09:13 AM
@Martin L I haven't looked at your attachment, but I assume the point of such a lab is manipulation of routes directing traffic TO a destination, not FROM a source, yes?
09-22-2023 12:01 AM
Yes that is the point. On a transit router I am trying to direct the traffic through a different path than selected by EIGRP.
09-22-2023 07:41 AM
Okay, then what your trying to do (traffic engineering) generally applies to traffic going TO a destination, not FROM a source (as described in OP). As the many replies have shown, different approaches are used for FROM vs.TO.
It's well worth knowing and understanding both approaches but often there might be other "approaches" to achieve the same end goal, possibly even better meeting the end goal and/or with less complexity.
09-22-2023 12:00 AM
Thanks Martin, I'll go through your lab and try to use the concept in my lab. Yes I am trying to follow a workbook from INE but during that I try different things. This forum is really helpful, I'll be using it more. Thanks to all of you who have replied and helped. I really appriciate it.
09-21-2023 01:48 AM
Hello
Can you share a topology diagram to assist in understanding in what you wish to accomplish, it will be much easier to visualise your network
09-21-2023 02:43 AM
Sure. Topology is attached.
09-21-2023 04:41 AM
Hello
@zeeshanbasit25789 wrote:
. I am trying to engineer the traffic in a way that if it is coming from the loopback of R6 it should go through the tunnel all other traffic should go through the gig link between R4 and R5.
You should be able to do this with Policy Based routing (PBR) applied on R4/R5
R4
Example PBR
ip access-list extended R6-loop
permit ip host 6.6.6.6 any
route-map PBR permit 10
match ip address R6-loop
set interface Tunnel45
route-map PBR permit 99
interface x.x
description physical link to R6
ip policy route-map PBR
R5
Example PBR
ip access-list extended R6_loop
permit ip any host 6.6.6.6
route-map PBR permit 10
match ip address R6-loop
set interface Tunnel54
route-map PBR permit 99
interface x.x
description physical lan links on R5
ip policy route-map PBR
09-22-2023 12:01 AM
Thanks Paul, I am going to try this PBR as well and will update.
09-22-2023 12:15 AM
II send you message check it
09-22-2023 12:19 AM
Thanks man, I'll check as soon as I receive it.
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