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

Example: Set the DSCP Bit to 0

Set the DSCP bit to 0 using a firewall filter:

firewall {
filter filter1 {
term 1 {
from {
dscp 2;
}
then {
dscp 0;
forwarding-class best-effort;
}
}
term 2 {
from {
dscp 3;
}
then {
forwarding-class best-effort;
}
}
}
}

Apply this filter to the logical interface corresponding to the VPN routing and forwarding (VRF) instance:

interfaces so-0/1/0 {
unit 0 {
family inet {
filter input filter1;
}
}
}

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