03-10-2023
06:16 AM
- last edited on
03-13-2023
02:57 AM
by
Translator
Hello.
There already exists a redistribution mechanism to redistribute static routes through a
route-map and ACL
I thought it fine to not use this existing mechanism, but instead just create a new static route, then use command...
"# conf t
#router eigrp 1
#redistribute static metric 10000 0 255 1 1500"
When I check the neighboring router, only the static routes from the
route map + ACL mechanism
exist in its routing table.
QUESTION: Why isn't the new static route in the neighbor's routing table?
Thank you.
Solved! Go to Solution.
03-10-2023
06:32 AM
- last edited on
03-13-2023
02:59 AM
by
Translator
0 <<- delay value is 0 so metric is wrong and hence the static never advertise.
you need to make it at least 100, or check interface delay and assign correct value
check
show eigrp
topology see if the prefix in router but not inject it in RIB or not
03-10-2023 06:23 AM
Hi
The can be sent but not installed due overlaping with another route. Can you share the config from both routers?
03-10-2023
06:38 AM
- last edited on
03-13-2023
02:57 AM
by
Translator
2951 <==> 5525ASA <==> tunnel to 172.16.33.5
(obfuscated)
5525ASA#sh route
S 10.12.8.0 255.255.248.0 [1/0] via 172.16.33.5 !! not redistributed in route-map + ACL mechanism !!
S 10.13.28.0 255.255.252.0 [1/0] via 172.16.33.5
S 10.13.32.0 255.255.252.0 [1/0] via 172.16.33.5
S 10.13.36.0 255.255.252.0 [1/0] via 172.16.33.5
S 10.13.40.0 255.255.252.0 [1/0] via 172.16.33.5
---
2951#sh ip route
D EX 10.13.28.0/22
[170/256512] via 172.16.20.5
D EX 10.13.32.0/22
[170/256512] via 172.16.20.5
D EX 10.13.36.0/22
[170/256512] via 172.16.20.5
D EX 10.13.40.0/22
[170/256512] via 172.16.20.5
03-10-2023
06:32 AM
- last edited on
03-13-2023
02:59 AM
by
Translator
0 <<- delay value is 0 so metric is wrong and hence the static never advertise.
you need to make it at least 100, or check interface delay and assign correct value
check
show eigrp
topology see if the prefix in router but not inject it in RIB or not
03-10-2023 06:54 AM
That solved it.
QUESTION: is the command half way down at the below link just wrong? It seems that he was taking his printouts from a real lab...
Redistribute Static Route into EIGRP in Cisco IOS Router (mustbegeek.com)
Now, after understanding all the EIGRP metrics, here’s the example of how to set the static route redistribution into EIGRP in R2:
R2#conf t
R2(config)#router eigrp 23
R2(config-router)#redistribute static metric 10000 0 255 1 1500
03-10-2023 07:04 AM
sure I will check link you share and check my note,
in which case we use delay = 0.
I will update you
03-13-2023 07:18 AM
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