047dcd0fc470c65c7fc95a79bbd3c34680d1a866
[web.git] / docs / uci_qos.txt
1 Quality of Service (qos-scripts) configuration
2 ==============================================
3
4 This is the documentation for the UCI configuration file '/etc/config/qos'.
5
6 *WARNING*: 'luci-app-qos' won't start until you enable the 'qos' Initscript within the System-->Startup tab as well as enable qos under Network-->QoS
7
8
9 == Sections
10
11 A minimal QoS configuration usually consists of:
12
13 * one _interface_ section
14 * some _rules_ allocating packets to at least two buckets
15 * _configuration_ of the buckets.
16
17 === Interface
18
19 Each Interface can have its own buffer. The 'interface' section declares global characteristics of the connection on which the specified interface is communicating. The following options are defined within this section:
20
21 ----
22 config interface dsl
23 option enabled 1
24 option classgroup "Default"
25 option overhead 1
26 option upload 512
27 option download 4096
28 ----
29
30 [cols="4*1,4",options="header"]
31 |====
32 | Name | Type | Required | Default | Description
33 | 'enabled' | boolean | yes | '1' | Enable/Disable QoS
34 | 'classgroup' | string | yes | 'Default' | Specify 'classgroup' used for this interface (see description of 'classgroup' below)
35 | 'overhead' | boolean | yes | '1' | decrease upload and download ratio to prevent link saturation
36 | 'download' | integer | yes | '4096' | Download limit in 'kilobits/second'
37 | 'upload' | integer | yes | '512' | Upload limit in 'kilobits/second'
38 |====
39
40 === Rules
41
42 Each 'classify' section defines one group of packets and which target (i.e. bucket) this group belongs to. All the packets share the bucket specified.
43
44 [cols="4*1,4",options="header"]
45 |====
46 | Name | Type | Required | Default | Description
47 | 'target' | bucket | yes | _(none)_ | The four defaults are: 'Priority, Express, Normal' and 'Bulk'
48 | 'proto' | string | no | '0' | Packets matching this protocol belong to the bucket defined in target
49 | 'srchost' | string | no | _(none)_ | Packets matching this source host(s) (single IP or in CIDR notation) belong to the bucket defined in target
50 | 'dsthost' | string | no | _(none)_ | Packets matching this destination host(s) (single IP or in CIDR notation) belong to the bucket defined in target
51 | 'ports' | integer | no | _(none)_ | Packets matching this, belong to the bucket defined in target
52 | 'srcports' | integer | no | _(none)_ | Packets matching this, belong to the bucket defined in target
53 | 'dstports' | integer | no | _(none)_ | Packets matching this, belong to the bucket defined in target
54 | 'portrange' | integer | no | _(none)_ | Packets matching this, belong to the bucket defined in target
55 | 'pktsize' | integer | no | _(none)_ | Packets matching this, belong to the bucket defined in target
56 | 'tcpflags' | string | no | _(none)_ | Packets matching this, belong to the bucket defined in target
57 | 'mark' | string | no | _(none)_ | Packets matching this, belong to the bucket defined in target
58 | 'connbytes' | int | no | _(none)_ | Packets matching this, belong to the bucket defined in target
59 | 'tos' | string | no | _(none)_ | Packets matching this, belong to the bucket defined in target
60 | 'dscp' | string | no | _(none)_ | Packets matching this, belong to the bucket defined in target
61 | 'direction' | string | no | _(none)_ | Packets matching this traffic direction ('in' or 'out') belong to the bucket defined in target
62 |====
63
64 === Classgroup
65
66 As we can have more then one interface, we can have more then one classgroup.
67
68 ----
69 config classgroup "Default"
70 option classes "Priority Express Normal Bulk"
71 option default "Normal"
72 ----
73
74 [cols="4*1,4",options="header"]
75 |====
76 | Name | Type | Required | Default | Description
77 | 'classes' | bucket names | yes | _(none)_ | Specifies the list of names of _classes_
78 | 'default' | bucket name | yes | _(none)_ | Defines which _class_ is considered default
79 |====
80
81
82 === Classes
83
84 Each Bucket has its own configuration.
85
86 Example:
87 ----
88 config class "Normal"
89 option packetsize 1500
90 option packetdelay 100
91 option avgrate 10
92 option priority 5
93 ----
94
95 [cols="4*1,4",options="header"]
96 |====
97 | Name | Type | Required | Default | Description
98 | 'packetsize' | integer | yes | _(none)_ | in bytes
99 | 'packetdelay' | integer | yes | _(none)_ | in ms
100 | 'maxsize' | integer | yes | _(none)_ | in bytes
101 | 'avgrate' | integer | yes | _(none)_ | Average rate for this class, value in % of bandwidth (this value uses for calculate vaues 'Nx' of ''tc ... hfsc rt m1 N1 d N2 m2 N3'')
102 | 'limitrate' | integer | no | 100 | Defines to how much percent of the available bandwidth this class is capped to, value in %
103 | 'maxsize' | integer | yes | _(none)_ | in bytes
104 | 'priority' | integer | yes | _(none)_ | in %
105 |====
106
107 === Classes (For Advanced Users)
108
109 Below is unverified technical breakdown of each /etc/config/qos class parameters.
110
111 ----
112 ### Params:
113 #
114 # maxsize:
115 # limits packet size in iptables rule
116 #
117 # avgrate: (note: sum(avgrates) ~ 100)
118 # rt m1 = avgrate / sum (avgrate) * max_bandwidth
119 # rt m2 = avgrate * max_bandwidth / 100
120 # ls m1 = rt m1
121 #
122 # packetsize & packetdelay: (only works if avgrate is present)
123 # rt d = max( packetdelay, 'time required for packetsize to transfer' ) (smaller ps -> smaller d)
124 # ls d = rt d
125 #
126 # priority:
127 # ls m2 = priority / sum (priority) * max_bandwidth
128 #
129 # limitrate:
130 # ul rate = limitrate * max_bandwidth / 100
131 ----
132
133 == Quick start guide
134
135 Install the qos-scripts package:
136
137 ----
138 opkg install qos-scripts
139 ----
140
141 Basic configuration using UCI command line:
142
143 ----
144 uci set qos.wan.upload=1000 # Upload speed in kBits/s
145 uci set qos.wan.download=16000 # Download speed in kBits/s
146 uci set qos.wan.enabled=1
147 uci commit qos
148 ----
149
150 Start it and look for error output and test):
151
152 ----
153 /etc/init.d/qos start
154 ----
155
156 * Make script run at every boot up:
157
158 ----
159 /etc/init.d/qos enable
160 ----
161
162 == Troubleshooting
163
164 Look at the generated traffic control qdisc settings by running:
165
166 ----
167 tc qdisc
168 ----
169
170 The default (ie no-QoS-applied) values for any interface look like this:
171
172 ----
173 qdisc fq_codel 0: dev eth0 root refcnt 2 limit 1024p flows 1024 quantum 300 target 5.0ms interval 100.0ms ecn
174 ----
175
176 Any interface with only a single qdisc line printed, showing the same settings as this line (this one is for _dev eth0_), indicates no QoS on that interface.
177
178 Network interfaces with QoS enabled will have multiple qdisc lines printed, each corresponding to a QoS class, etc.
179
180 If the printed qdisc settings don't seem to be correct, you can preview the _tc_ commands generated from the OpenWRT _/etc/config/qos_ by running:
181
182 ----
183 /usr/lib/qos/generate.sh interface wan
184 ----
185
186 (Replace 'wan' with the UCI interface name you're debugging, as given in the _/etc/config/qos_ file.)
187
188 This should print a series of _insmod_ and _tc_ commands used to set up the QoS subsystem. You can debug any errors caused by running these commands by running:
189
190 ----
191 /usr/lib/qos/generate.sh interface wan | sh -x
192 ----
193
194 The output of _/usr/lib/qos/generate.sh_ is normally executed automatically as part of _/etc/hotplug.d/iface/10-qos_.