Owner's Manual
354 | Chapter 14. Routing Policies
NETGEAR 8800 User Manual
nlri 10.10.0.0/18;
}
then {
permit;
}
}
entry entry-25 {
if {
nlri 22.44.66.0/23 exact;
}
then {
deny;
}
}
The policy above can be optimized by combining some of the if statements into a single
expression. The compact form of the policy looks like this:
entry permit_entry {
If match any {
nlri 22.16.0.0/14;
nlri 192.168.0.0/18 exact ;
nlri 10.10.0.0/18;
}
then {
permit;
}
}
entry deny_entry {
if match any {
nlri any/8;
nlri 22.44.66.0/23 exact;
}
then {
deny;
}
}
Translating a Route Map to a Policy
You may be more familiar with using route maps on other NETGEAR switches. This example
shows the policy equivalent to an NETGEAR route map.
NETGEAR route map:
Route Map : rt
Entry : 10 Action : permit
match origin incomplete
Entry : 20 Action : deny
match community 6553800
Entry : 30 Action : permit
match med 30










