...
The set routing route-map set-action src command sets the preferred source address for matching routes when installing in the kernel.
The delete routing route-map set-action src command restores the default behavior of not modifying the source address of the route entry.
...
set routing route-map <route-map-name> order <NUMBER> set-action src {<ipv4-address>|<ipv6-address>}
delete routing route-map <route-map-name> order <NUMBER> set-action src {<ipv4-address>|<ipv6-address>}
...
Parameter | Description |
route-map <route-map-name> | Specifies the name of the route map. Required. |
order <NUMBER> | Specifies the sequence number of the entry. Required. The value is an integer that ranges from 1 to 65535. |
src {<ipv4-address>|<ipv6-address>} | Specifies the preferred source address to be set for a route. |
...
Code Block |
---|
admin@Xorplus# set routing route-map GlobalMap order 10 set-action source addresssrc 100.100.100.1 admin@Xorplus# commit |
...