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
Section titled “Diagram”Classes
Section titled “Classes”policy_objects (sdwan)
Section titled “policy_objects (sdwan)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| policers | List | [policers] | No |
policers (sdwan.policy_objects)
Section titled “policers (sdwan.policy_objects)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| name | String | Regex: ^[A-Za-z0-9-_]{1,128}$ | Yes | |
| burst_bytes | Integer | min: 15000, max: 10000000 | Yes | |
| exceed_action | Choice | drop, remark | Yes | |
| rate_bps | Integer | min: 8, max: 100000000000 | Yes |
Examples
Section titled “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: 10240000Example-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: 50000000Example-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