Skip to main content

QoS Map Definition

For hardware, each interface has eight queues, numbered from 0 through 7. Queue 0 is reserved for low-latency queuing (LLQ), so any class that is mapped to queue 0 must be configured to use LLQ. The default scheduling method for all is weighted round-robin (WRR).

For Cisco vEdge devices, each interface has eight queues, numbered from 0 through 7. Queue 0 is reserved for control traffic, and queues 1, 2, 3, 4, 5, 6 and 7 are available for data traffic. The scheduling method for all eight queues is WRR. LLQ is not supported.

Diagram

Classes

definitions (sdwan.localized_policies)

NameTypeConstraintMandatoryDefault Value
qos_mapsList[qos_maps]No

qos_maps (sdwan.localized_policies.definitions)

NameTypeConstraintMandatoryDefault Value
nameStringRegex: ^[A-Za-z0-9-_]{1,128}$Yes
descriptionStringYes
qos_schedulersList[qos_schedulers]Yes

qos_schedulers (sdwan.localized_policies.definitions.qos_maps)

NameTypeConstraintMandatoryDefault Value
queueIntegermin: 0, max: 7Yes
bandwidth_percentIntegermin: 1, max: 100Yes
buffer_percentIntegermin: 1, max: 100Yes
burst_bytesIntegermin: 5000, max: 10000000No
scheduling_typeChoicellq, wrrYes
drop_typeChoicetail-drop, red-dropYes
class_mapStringRegex: ^[A-Za-z0-9-_]{1,128}$Yes

Examples

sdwan:
localized_policies:
definitions:
qos_maps:
- name: QOS-MAP-1P2Q
description: "1-prio 2-red queue qos-map"
qos_schedulers:
- queue: 0
bandwidth_percent: 30
buffer_percent: 30
burst_bytes: 200000
scheduling_type: llq
drop_type: tail-drop
class_map: REALTIME
- queue: 1
bandwidth_percent: 30
buffer_percent: 30
scheduling_type: wrr
drop_type: red-drop
class_map: TRANSACTIONAL
- queue: 2
bandwidth_percent: 40
buffer_percent: 40
scheduling_type: wrr
drop_type: red-drop
class_map: DEFAULT