]> git.proxmox.com Git - mirror_iproute2.git/blame - man/man8/tc-drr.8
ip-xfrm: Add support for OUTPUT_MARK
[mirror_iproute2.git] / man / man8 / tc-drr.8
CommitLineData
5080db33
FW
1.TH TC 8 "January 2010" "iproute2" "Linux"
2.SH NAME
3drr \- deficit round robin scheduler
4.SH SYNOPSIS
5.B tc qdisc ... add drr
6.B [ quantum
7bytes
8.B ]
9
10.SH DESCRIPTION
11
12The Deficit Round Robin Scheduler is a classful queuing discipline as
13a more flexible replacement for Stochastic Fairness Queuing.
14
15Unlike SFQ, there are no built-in queues \-\- you need to add classes
16and then set up filters to classify packets accordingly.
17This can be useful e.g. for using RED qdiscs with different settings for particular
18traffic. There is no default class \-\- if a packet cannot be classified,
19it is dropped.
20
21.SH ALGORITHM
22Each class is assigned a deficit counter, initialized to
23.B quantum.
24
25DRR maintains an (internal) ''active'' list of classes whose qdiscs are
a89d5329 26non-empty. This list is used for dequeuing. A packet is dequeued from
5080db33 27the class at the head of the list if the packet size is smaller or equal
a89d5329 28to the deficit counter. If the counter is too small, it is increased by
5080db33
FW
29.B quantum
30and the scheduler moves on to the next class in the active list.
31
32
33.SH PARAMETERS
34.TP
35quantum
36Amount of bytes a flow is allowed to dequeue before the scheduler moves to
a89d5329 37the next class. Defaults to the MTU of the interface. The minimum value is 1.
5080db33
FW
38
39.SH EXAMPLE & USAGE
40
41To attach to device eth0, using the interface MTU as its quantum:
42.P
43# tc qdisc add dev eth0 handle 1 root drr
44.P
45Adding two classes:
46.P
47# tc class add dev eth0 parent 1: classid 1:1 drr
1b3c149b 48.br
5080db33
FW
49# tc class add dev eth0 parent 1: classid 1:2 drr
50.P
51You also need to add at least one filter to classify packets.
52.P
53# tc filter add dev eth0 protocol .. classid 1:1
54.P
55
56Like SFQ, DRR is only useful when it owns the queue \-\- it is a pure scheduler and does
a89d5329 57not delay packets. Attaching non-work-conserving qdiscs like tbf to it does not make
5080db33 58sense \-\- other qdiscs in the active list will also become inactive until the dequeue
a89d5329 59operation succeeds. Embed DRR within another qdisc like HTB or HFSC to ensure it owns the queue.
5080db33
FW
60.P
61You can mimic SFQ behavior by assigning packets to the attached classes using the
62flow filter:
63
64.B tc qdisc add dev .. drr
65
66.B for i in .. 1024;do
67.br
d18086cc 68.B "\ttc class add dev .. classid $handle:$(print %x $i)"
5080db33 69.br
d18086cc 70.B "\ttc qdisc add dev .. fifo limit 16"
5080db33
FW
71.br
72.B done
73
74.B tc filter add .. protocol ip .. $handle flow hash keys src,dst,proto,proto-src,proto-dst divisor 1024 perturb 10
75
76
77.SH SOURCE
78.TP
79o
80M. Shreedhar and George Varghese "Efficient Fair
81Queuing using Deficit Round Robin", Proc. SIGCOMM 95.
82
83.SH NOTES
84
85This implementation does not drop packets from the longest queue on overrun,
86as limits are handled by the individual child qdiscs.
87
88.SH SEE ALSO
89.BR tc (8),
90.BR tc-htb (8),
91.BR tc-sfq (8)
92
93.SH AUTHOR
94sched_drr was written by Patrick McHardy.