home

Supported platforms

Vyatta documentation

Learn how to install, configure, and operate the Vyatta Network Operating System (Vyatta NOS) and Orchestrator, which help drive our virtual networking and physical platforms portfolio.

policy route prefix-list <list-name> rule <rule-num> ge <value>

Defines match criteria for a prefix list rule based on a “greater-than-or-equal-to” numeric comparison.

set policy route prefix-list list-name rule rule-num ge value
delete policy route prefix-list list-name rule rule-num ge
show policy route prefix-list list-name rule rule-num ge

If no prefix is specified, all network prefixes are considered to match the rule.

list-name
The name of a defined prefix list.
rule-num
The number of a defined prefix list rule.
value
A number representing a network prefix. Network prefixes greater than or equal to this number will match this rule. The range of values is 0 to 32.

Configuration mode


policy {
    route {
      prefix-list list-name {
        rule rule-num {
            ge value
          }
       }
   }
}

Use the set form of this command to specify a network prefix for determining routing. The network prefixes of incoming packets are compared with this value; if the prefix is greater than or equal to the specified prefix, the rule is matched and the action specified for the rule is taken.

Exactly one comparison (ge, le, or prefix) may be specified for a prefix list rule.

Use the delete form of this command to remove the specified “ge” prefix. If no prefix is specified, all network prefixes are considered to match the rule.

Use the show form of this command to display the value specified as “ge” prefix.