Prefix List
Prefix List
Prefix List
• Named list of IP addresses used to match routes
• The action is executed immediately after the match occurs, and the
then statement is not evaluated
prefix-list rfc1918 {
10.0.0.0/8;
172.16.0.0/12;
192.168.0.0/16;
}
policy-statement my-policy {
term reject-rfc1918 {
from {
prefix-list-filter rfc1918 orlonger reject;
}
}
}