03-20-2012 03:33 AM
Can anyone explain what the resolve keyword does in a static route statement?
I am looking at an example in the Junos Routing Essentials course and it does not explain it very well.
It says that Junos does not do recurssive lookups of next hops by default?
Can anyone clarify or point me to some documentation?
Thanks
Roger
I am a cisco guy and studying for my CCIE but this does not make sense
03-20-2012 07:50 AM
Hi,
Not much links found
By default, static routes can point only to a directly connected next hop. You can configure an IPv4 route to a prefix that is not directly connected by resolving the route through the inet.0 and inet.3 routing tables. To configure an IPv4 static route to a prefix that is not a directly connected next hop, include the resolve statement:
- it means that you could configure any static route on direct connect IP only but if you want to make the next-hop of this static route on another router for example you couldn't by default and need resolve so the router will look on the routing table for this next-hop and if exist so the route will be valid and could forward traffic
Regards,
Mohamed Elhariry
JNCIE-M/T # 1059, CCNP & CCIP
--------------------------------------------------
If this post was helpful, please mark this post as an "Accepted Solution".Kudos are always appreciated!
03-21-2012 03:01 PM - edited 03-23-2012 06:04 AM
Cisco automatically resolve recursive routes. Those which next hop is not under directly connected interface. But Junos dont behave this way, so you have to configure the resolve option.
For example, cisco config using recursive routes :
ip route 1.1.1.0 255.255.255.0 2.2.2.2
ip route 2.2.2.0 255.255.255.0 3.3.3.3
interface fastethernet 0/0
ip add 3.3.3.1 255.255.255.0
Usually the second static route is some dynamic learned route, this have no sense to configure two recursive statics.
Under Junos this config will be something like this :
set routing-options static route 1.1.1.0/24 next-hop 2.2.2.2 resolve
set routing-options static route 2.2.2.0/24 next-hop 3.3.3.3
set interface fe-0/0/0 unit 0 family inet address 3.3.3.1/24
If you dont use the resolve option, the first static router will be hidden because this have no an active next hop.