Skip to main content

Policer List

Configure policers to control the maximum rate of traffic sent or received on an interface, and to partition a network into multiple priority levels.

Diagram

Classes

policy_objects (sdwan)

NameTypeConstraintMandatoryDefault Value
policersList[policers]No

policers (sdwan.policy_objects)

NameTypeConstraintMandatoryDefault Value
nameStringRegex: ^[A-Za-z0-9-_]{1,128}$Yes
burst_bytesIntegermin: 15000, max: 10000000Yes
exceed_actionChoicedrop, remarkYes
rate_bpsIntegermin: 8, max: 100000000000Yes

Examples

Example-1: This example shows the configuration of a policer set to 10 Mbps, a burst rate to 15 KBytes and the policer is exceeded, the action is drop.

sdwan:
policy_objects:
policers:
- name: Policer_Drop_10Mbps
burst_bytes: 15000
exceed_action: drop
rate_bps: 10240000

Example-2: This example shows the configuration of a policer set to 50 Mbps, a burst rate to 15 KBytes and the policer is exceeded, the action is Remark.

sdwan:
policy_objects:
policers:
- name: Policer_Remark_50Mbps
burst_bytes: 15000
exceed_action: remark
rate_bps: 50000000

Example-3: This example shows the configuration of two different policers one set to 50 Mbps and the second set to 10 Mbps.

sdwan:
policy_objects:
policers:
- name: Policer_Drop_10Mbps
burst_bytes: 15000
exceed_action: drop
rate_bps: 10240000
- name: Policer_Remark_50Mbps
burst_bytes: 15000
exceed_action: remark
rate_bps: 50000000