Book now with code EOY2025
liven wrote: » I posted a question about filtering earlier (no responses).... Router 3 has an interface that is on a different subnet. Eigrp advertises this subnet to router 2 which in turn advertises this subnet to router 1. I am trying to stop the advertisement at router 2. I am curious as if there is any way to stop the advertisements besides prefix lists and ACLs. If these are the only options fine, I just want to make sure. THANKS!!!!
EdTheLad wrote: » Eigrp uses a delay value of FFFFFFFF i.e 4294967295 to mark a route as unreachable.You could use a route-map to match the prefix and apply the offset list so that the prefix is advertised with a metric 4294967294. This route will be seen in R2 and be unreachable on R1. Unfortunately there is no way to change the hop count per prefix in eigrp.
GT-Rob wrote: » You would still being using an ACL or prefix-list to match the IP address in the route-map.
R2(config)#ip access-list standard EIGRP R2(config-std-nacl)#deny 172.30.0.0 0.0.7.255 R2(config-std-nacl)#permit any R2(config-std-nacl)#exit R2(config)#router eigrp 1 R2(config-router)#distribute-list EIGRP out fa1/0
Silver Bullet wrote: » I haven't seen the particular lab exercise you're referring to (I don't have that book yet), but I was working on a lab exercise where the requirements were the same. I was able to accomplish the requirement by using a standard acl and then using eigrp distribute-lists. My particular lab had lo0-lo7 in 172.30.0.0/21 that wasn't supposed to be advertised past R2.R2(config)#ip access-list standard EIGRP R2(config-std-nacl)#deny 172.30.0.0 0.0.7.255 R2(config-std-nacl)#permit any R2(config-std-nacl)#exit R2(config)#router eigrp 1 R2(config-router)#distribute-list EIGRP out fa1/0
GT-Rob wrote: » This subnet you trying to filter off, is in the same AS as the others? What if on router 3 route-map test match route-type local set tag 100 then on router 2 route-map filter match tag 100 then just apply what ever technique you want to use to filter. I am just not sure if this will filter out the link to R3 altogether. I just don't know how else to match the route on R2 so it can then filter it out. EDIT What if you were to redistribute the subnet off R3 back into EIGRP, then match external routes and filter on R2?
Use code EOY2025 to receive $250 off your 2025 certification boot camp!