What would be the equivalent on xr to do a max paths statement. I believe on ios it is maxas-limit.
Solved! Go to Solution.
you may have to do a route-policy
route-policy max-asns if as-path length ge 5 then drop else pass endif end-policy
maxas-limit limits the length of the AS path rather than the number of paths. In XR, you can use a condition like
if as-path length ge <n> then drop endif
in your rpl import policy.
you may have to do a route-policy
route-policy max-asns if as-path length ge 5 then drop else pass endif end-policy
maxas-limit limits the length of the AS path rather than the number of paths. In XR, you can use a condition like
if as-path length ge <n> then drop endif
in your rpl import policy.