Define a policer for destination class class1:
- [edit]
- firewall {
-
- family inet {
-
- filter filter1 {
-
- policer police-class1 {
-
- if-exceeding {
- bandwidth-limit 25;
- burst-size-limit 1000;
- }
-
- then {
- discard;
- }
- }
-
- term term1 {
-
- from {
- destination-class class1;
- }
-
- then {
- policer police-class1;
- }
- }
- }
- }
- }