...
QFX10000 switches support 8K policers (all policer types).
QFX5100 and QFX5200 switches support 1535 ingress policers and 1024 egress policers (assuming one policer per firewall filter term).
QFX5110 switches support 6144 ingress policers and 1024 egress policers (assuming one policer per firewall filter term).
Code Block | ||
---|---|---|
| ||
class-of-service {
interfaces {
xe-0/0/46 {
shaping-rate 2g;
}
firewall {
family ethernet-switching {
filter 2G-limit {
term 1 {
then policer 2G-limit;
}
}
}
policer 2G-limit {
if-exceeding {
bandwidth-limit 2g;
burst-size-limit 1250k;
}
then discard;
}
}
xe-0/0/46 {
unit 0 {
family ethernet-switching {
vlan {
members V3000;
}
filter {
input 2G-limit;
}
}
}
} |