Reject routes with a mask of /8 and greater (that is, /8, /9, /10, and so on) that have the first 8 bits set to 0 and accept routes less than 8 bits in length:
- [edit]
- policy-options {
-
- policy-statement from-hall3 {
-
- term term1 {
-
- from {
- route-filter 0/0 upto /7 accept;
- route-filter 0/8 orlonger;
- }
- then reject;
- }
- }
- }