[Contents] [Prev] [Next] [Index] [Report an Error]

Medium-Low Loss Priority

In another example, the 4PLP filter and policer causes certain packets to be marked with medium-low loss priority.

interfaces {
ge-7/2/0 {
unit 0 {
family inet {
filter {
input 4PLP;
}
policer {
input 4PLP;
}
address 10.45.10.2/30;
}
}
}
}
 
firewall {
three-color-policer trTCM {
two-rate {
color-blind;
committed-information-rate 400m;
committed-burst-size 100m;
peak-information-rate 1g;
peak-burst-size 500m;
}
}
policer 4PLP {
if-exceeding {
bandwidth-limit 40k;
burst-size-limit 4k;
}
then loss-priority medium-low;
}
family inet {
filter 4PLP {
term 0 {
from {
precedence 1;
}
then loss-priority medium-low;
}
}
filter filter_trTCM {
term default {
then {
three-color-policer {
two-rate trTCM;
}
}
}
}
}
}

[Contents] [Prev] [Next] [Index] [Report an Error]