policy (Multicast-Only Fast Reroute)
Sintaxis
policy policy-name;
Nivel de jerarquía
[edit logical-systems logical-system-name routing-instances routing-instance-name routing-options multicast stream-protection], [edit logical-systems logical-system-name routing-options multicast stream-protection], [edit routing-instances routing-instance-name routing-options multicast stream-protection], [edit routing-options multicast stream-protection]
Descripción
Cuando configure el reenrutamiento rápido de solo multidifusión (MoFRR), aplique una política de enrutamiento que filtre un conjunto restringido de flujos de multidifusión que se verán afectados por la configuración moFRR. Puede aplicar filtros basados en direcciones de origen o grupo.
Por ejemplo:
routing-options {
multicast {
stream-protection {
policy mofrr-select;
}
}
}
policy-statement mofrr-select {
term A {
from {
source-address-filter 225.1.1.1/32 exact;
}
then {
accept;
}
}
term B {
from {
source-address-filter 226.0.0.0/8 orlonger;
}
then {
accept;
}
}
term C {
from {
source-address-filter 227.1.1.0/24 orlonger;
source-address-filter 227.4.1.0/24 orlonger;
source-address-filter 227.16.1.0/24 orlonger;
}
then {
accept;
}
}
term D {
from {
source-address-filter 227.1.1.1/32 exact;
}
then {
reject; #MoFRR disabled
}
}
term E {
from {
route-filter 227.1.1.0/24 orlonger;
}
then accept;
}
...
}
Nivel de privilegio requerido
enrutamiento: para ver esta instrucción en la configuración.
enrutamiento-control: para agregar esta instrucción a la configuración.
Información de versión
Declaración introducida en la versión 14.1 de Junos OS.
