Given the following policy:
[edit policy-options] policy-statement my-filter { term first { from { route-filter 192.168.0.0/16 orlonger accept; route-filter 192.168.1.0/24 exact accept; route-filter 192.168.2.0/24 exact; } then { metric 10; accept; } term second { then { metric 20; accept; } policy-statement main { term change-attributes {from { policy my-filter; } then accept; } term default { then reject; } [edit protocols] bgp { export main; } Which action occurs when the static route 192.168.0.0/25 is evaluated by the policy main-policy?
Given the policy:
policy-statement find-specific-routes { term get-good-routes { from { protocol static; metric 10; } then accept; } term stop-bad-routes { from protocol static; then reject;} Which routes will be accepted?