This section provides information to configure route policies and configuration examples of common tasks. The minimal route policy parameters that need to be configured are:
policy statement with the following parameters specified:
at least one entry
entry action
A:ALA-B>config>router>policy-options# info
----------------------------------------------
. . .
policy-statement "aggregate-customer-peer-only"
entry 1
from
community "all-customer-announce"
exit
action accept
exit
exit
default-action reject
exit
exit
----------------------------------------------
A:ALA-B>config>router>policy-options#
A:ALA-B>config>router>policy-options#info
----------------------------------------------
prefix-list "host"
prefix 10.0.0.0/8 longer
exit
prefix-list "group"
prefix 239.6.6.6/32 exact
exit
policy-statement "block-igmp"
description "Reject-Reports-From-Specific-Group-And-Host"
entry 1
from
host-ip "host"
exit
action next-entry
exit
exit
entry 2
from
group-address "group"
exit
action reject
exit
default-action accept
exit
exit
policy-statement "permit-igmp"
description "Accept-Reports-From-Specific-Group-And-Host"
entry 1
from
host-ip "host3"
group-address "group3"
exit
action accept
exit
exit
default-action reject
exit
----------------------------------------------
A:ALA-B>config>router>policy-options#