cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1553
Views
0
Helpful
6
Replies

Route-map

saishreevj
Level 1
Level 1
#route-map name permit ?

# <0-65535>

 

Can we give whatever number here, not sure on the use case. 

1 Accepted Solution

Accepted Solutions

Hello,

 

the number is just a sequence, you can use whatever number you want. Lower numbers appear above higher numbers, e.g.:




route-map TEST permit 10

!

route-map TEST permit 20

View solution in original post

6 Replies 6

Hello,

 

what are you asking ? If the route map can have any name you want ? If so, yes. The name is totally up to you.

#route-map name permit ?

# <0-65535

Can we give whatever number here, not sure on the use case. 

Hello,

 

the number is just a sequence, you can use whatever number you want. Lower numbers appear above higher numbers, e.g.:




route-map TEST permit 10

!

route-map TEST permit 20

As Georg points out the choice of a number is essentially an arbitrary choice for the first stanza of the route map. If there is more than one stanza in the route map then the number determines the order in which the stanzas will be executed. Normal practice is to provide some gap in the numbering (10, 20, 30, etc) so that in the future you want to insert another stanza in between two existing stanzas there is room to insert it.

HTH

Rick

Hello
Just like to add, its important to understand not only are route-maps executed in numeric order (low-to high) as stated by others but also they have a logic to them that's can be a bit confusing.

Depending on how the route-map stanza is created (permit/deny) would depend then how its eventually serviced, So you need to be cautious when implementing them, as they can have an effect that you don't expect them have.


Please rate and mark as an accepted solution if you have found any of the information provided useful.
This then could assist others on these forums to find a valuable answer and broadens the community’s global network.

Kind Regards
Paul

@paul driver thanks for the information.