]> git.proxmox.com Git - mirror_iproute2.git/blame - man/man8/tc-drr.8
configure: remove TMPDIR on exit
[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
26non-empty. This list is used for dequeuing. A packet is dequeued from
27the class at the head of the list if the packet size is smaller or equal
28to the deficit counter. If the counter is too small, it is increased by
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
37the next class. Defaults to the MTU of the interface. The minimum value is 1.
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
48# tc class add dev eth0 parent 1: classid 1:2 drr
49.P
50You also need to add at least one filter to classify packets.
51.P
52# tc filter add dev eth0 protocol .. classid 1:1
53.P
54
55Like SFQ, DRR is only useful when it owns the queue \-\- it is a pure scheduler and does
56not delay packets. Attaching non-work-conserving qdiscs like tbf to it does not make
57sense \-\- other qdiscs in the active list will also become inactive until the dequeue
58operation succeeds. Embed DRR within another qdisc like HTB or HFSC to ensure it owns the queue.
59.P
60You can mimic SFQ behavior by assigning packets to the attached classes using the
61flow filter:
62
63.B tc qdisc add dev .. drr
64
65.B for i in .. 1024;do
66.br
d18086cc 67.B "\ttc class add dev .. classid $handle:$(print %x $i)"
5080db33 68.br
d18086cc 69.B "\ttc qdisc add dev .. fifo limit 16"
5080db33
FW
70.br
71.B done
72
73.B tc filter add .. protocol ip .. $handle flow hash keys src,dst,proto,proto-src,proto-dst divisor 1024 perturb 10
74
75
76.SH SOURCE
77.TP
78o
79M. Shreedhar and George Varghese "Efficient Fair
80Queuing using Deficit Round Robin", Proc. SIGCOMM 95.
81
82.SH NOTES
83
84This implementation does not drop packets from the longest queue on overrun,
85as limits are handled by the individual child qdiscs.
86
87.SH SEE ALSO
88.BR tc (8),
89.BR tc-htb (8),
90.BR tc-sfq (8)
91
92.SH AUTHOR
93sched_drr was written by Patrick McHardy.
94