Kconfig 17.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
#
# Traffic control configuration.
# 
4

5 6 7
menu "QoS and/or fair queueing"

config NET_SCHED
8 9 10 11
	bool "QoS and/or fair queueing"
	---help---
	  When the kernel has several packets to send out over a network
	  device, it has to decide which ones to send first, which ones to
12 13
	  delay, and which ones to drop. This is the job of the queueing
	  disciplines, several different algorithms for how to do this
14 15 16 17 18 19 20 21 22 23 24 25 26 27
	  "fairly" have been proposed.

	  If you say N here, you will get the standard packet scheduler, which
	  is a FIFO (first come, first served). If you say Y here, you will be
	  able to choose from among several alternative algorithms which can
	  then be attached to different network devices. This is useful for
	  example if some of your network devices are real time devices that
	  need a certain minimum data flow rate, or if you need to limit the
	  maximum data flow rate for traffic which matches specified criteria.
	  This code is considered to be experimental.

	  To administer these schedulers, you'll need the user-level utilities
	  from the package iproute2+tc at <ftp://ftp.tux.org/pub/net/ip-routing/>.
	  That package also contains some documentation; for more, check out
28
	  <http://linux-net.osdl.org/index.php/Iproute2>.
29 30 31

	  This Quality of Service (QoS) support will enable you to use
	  Differentiated Services (diffserv) and Resource Reservation Protocol
32 33 34
	  (RSVP) on your Linux router if you also say Y to the corresponding
	  classifiers below.  Documentation and software is at
	  <http://diffserv.sourceforge.net/>.
35 36 37 38 39 40 41 42

	  If you say Y here and to "/proc file system" below, you will be able
	  to read status information about packet schedulers from the file
	  /proc/net/psched.

	  The available schedulers are listed in the following questions; you
	  can say Y to as many as you like. If unsure, say N now.

L
Linus Torvalds 已提交
43 44 45 46
choice
	prompt "Packet scheduler clock source"
	depends on NET_SCHED
	default NET_SCH_CLK_JIFFIES
47
	---help---
L
Linus Torvalds 已提交
48 49 50 51 52 53 54 55 56 57 58 59 60
	  Packet schedulers need a monotonic clock that increments at a static
	  rate. The kernel provides several suitable interfaces, each with
	  different properties:
	  
	  - high resolution (us or better)
	  - fast to read (minimal locking, no i/o access)
	  - synchronized on all processors
	  - handles cpu clock frequency changes

	  but nothing provides all of the above.

config NET_SCH_CLK_JIFFIES
	bool "Timer interrupt"
61
	---help---
L
Linus Torvalds 已提交
62 63 64 65 66 67 68
	  Say Y here if you want to use the timer interrupt (jiffies) as clock
	  source. This clock source is fast, synchronized on all processors and
	  handles cpu clock frequency changes, but its resolution is too low
	  for accurate shaping except at very low speed.

config NET_SCH_CLK_GETTIMEOFDAY
	bool "gettimeofday"
69
	---help---
L
Linus Torvalds 已提交
70 71 72 73 74 75 76
	  Say Y here if you want to use gettimeofday as clock source. This clock
	  source has high resolution, is synchronized on all processors and
	  handles cpu clock frequency changes, but it is slow.

	  Choose this if you need a high resolution clock source but can't use
	  the CPU's cycle counter.

77 78
# don't allow on SMP x86 because they can have unsynchronized TSCs.
# gettimeofday is a good alternative
L
Linus Torvalds 已提交
79 80
config NET_SCH_CLK_CPU
	bool "CPU cycle counter"
81
	depends on ((X86_TSC || X86_64) && !SMP) || ALPHA || SPARC64 || PPC64 || IA64
82
	---help---
L
Linus Torvalds 已提交
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
	  Say Y here if you want to use the CPU's cycle counter as clock source.
	  This is a cheap and high resolution clock source, but on some
	  architectures it is not synchronized on all processors and doesn't
	  handle cpu clock frequency changes.

	  The useable cycle counters are:

	  	x86/x86_64	- Timestamp Counter
		alpha		- Cycle Counter
		sparc64		- %ticks register
		ppc64		- Time base
		ia64		- Interval Time Counter

	  Choose this if your CPU's cycle counter is working properly.

endchoice

100 101 102
comment "Queueing/Scheduling"
	depends on NET_SCHED

L
Linus Torvalds 已提交
103
config NET_SCH_CBQ
104
	tristate "Class Based Queueing (CBQ)"
L
Linus Torvalds 已提交
105 106 107
	depends on NET_SCHED
	---help---
	  Say Y here if you want to use the Class-Based Queueing (CBQ) packet
108 109 110
	  scheduling algorithm. This algorithm classifies the waiting packets
	  into a tree-like hierarchy of classes; the leaves of this tree are
	  in turn scheduled by separate algorithms.
L
Linus Torvalds 已提交
111

112
	  See the top of <file:net/sched/sch_cbq.c> for more details.
L
Linus Torvalds 已提交
113 114 115

	  CBQ is a commonly used scheduler, so if you're unsure, you should
	  say Y here. Then say Y to all the queueing algorithms below that you
116
	  want to use as leaf disciplines.
L
Linus Torvalds 已提交
117 118 119 120 121

	  To compile this code as a module, choose M here: the
	  module will be called sch_cbq.

config NET_SCH_HTB
122
	tristate "Hierarchical Token Bucket (HTB)"
L
Linus Torvalds 已提交
123 124 125
	depends on NET_SCHED
	---help---
	  Say Y here if you want to use the Hierarchical Token Buckets (HTB)
126
	  packet scheduling algorithm. See
L
Linus Torvalds 已提交
127 128 129
	  <http://luxik.cdi.cz/~devik/qos/htb/> for complete manual and
	  in-depth articles.

130
	  HTB is very similar to CBQ regarding its goals however is has
L
Linus Torvalds 已提交
131 132 133 134 135 136
	  different properties and different algorithm.

	  To compile this code as a module, choose M here: the
	  module will be called sch_htb.

config NET_SCH_HFSC
137
	tristate "Hierarchical Fair Service Curve (HFSC)"
L
Linus Torvalds 已提交
138 139 140
	depends on NET_SCHED
	---help---
	  Say Y here if you want to use the Hierarchical Fair Service Curve
141
	  (HFSC) packet scheduling algorithm.
L
Linus Torvalds 已提交
142 143 144 145 146

	  To compile this code as a module, choose M here: the
	  module will be called sch_hfsc.

config NET_SCH_ATM
147
	tristate "ATM Virtual Circuits (ATM)"
L
Linus Torvalds 已提交
148 149 150
	depends on NET_SCHED && ATM
	---help---
	  Say Y here if you want to use the ATM pseudo-scheduler.  This
151 152 153 154 155
	  provides a framework for invoking classifiers, which in turn
	  select classes of this queuing discipline.  Each class maps
	  the flow(s) it is handling to a given virtual circuit.

	  See the top of <file:net/sched/sch_atm.c>) for more details.
L
Linus Torvalds 已提交
156 157 158 159 160

	  To compile this code as a module, choose M here: the
	  module will be called sch_atm.

config NET_SCH_PRIO
161
	tristate "Multi Band Priority Queueing (PRIO)"
L
Linus Torvalds 已提交
162
	depends on NET_SCHED
163
	---help---
L
Linus Torvalds 已提交
164
	  Say Y here if you want to use an n-band priority queue packet
165
	  scheduler.
L
Linus Torvalds 已提交
166 167 168 169 170

	  To compile this code as a module, choose M here: the
	  module will be called sch_prio.

config NET_SCH_RED
171
	tristate "Random Early Detection (RED)"
L
Linus Torvalds 已提交
172
	depends on NET_SCHED
173
	---help---
L
Linus Torvalds 已提交
174
	  Say Y here if you want to use the Random Early Detection (RED)
175 176 177
	  packet scheduling algorithm.

	  See the top of <file:net/sched/sch_red.c> for more details.
L
Linus Torvalds 已提交
178 179 180 181 182

	  To compile this code as a module, choose M here: the
	  module will be called sch_red.

config NET_SCH_SFQ
183
	tristate "Stochastic Fairness Queueing (SFQ)"
L
Linus Torvalds 已提交
184 185 186
	depends on NET_SCHED
	---help---
	  Say Y here if you want to use the Stochastic Fairness Queueing (SFQ)
187 188 189
	  packet scheduling algorithm .

	  See the top of <file:net/sched/sch_sfq.c> for more details.
L
Linus Torvalds 已提交
190 191 192 193 194

	  To compile this code as a module, choose M here: the
	  module will be called sch_sfq.

config NET_SCH_TEQL
195
	tristate "True Link Equalizer (TEQL)"
L
Linus Torvalds 已提交
196 197 198
	depends on NET_SCHED
	---help---
	  Say Y here if you want to use the True Link Equalizer (TLE) packet
199 200 201 202
	  scheduling algorithm. This queueing discipline allows the combination
	  of several physical devices into one virtual device.

	  See the top of <file:net/sched/sch_teql.c> for more details.
L
Linus Torvalds 已提交
203 204 205 206 207

	  To compile this code as a module, choose M here: the
	  module will be called sch_teql.

config NET_SCH_TBF
208
	tristate "Token Bucket Filter (TBF)"
L
Linus Torvalds 已提交
209
	depends on NET_SCHED
210 211 212 213 214
	---help---
	  Say Y here if you want to use the Token Bucket Filter (TBF) packet
	  scheduling algorithm.

	  See the top of <file:net/sched/sch_tbf.c> for more details.
L
Linus Torvalds 已提交
215 216 217 218 219

	  To compile this code as a module, choose M here: the
	  module will be called sch_tbf.

config NET_SCH_GRED
220
	tristate "Generic Random Early Detection (GRED)"
L
Linus Torvalds 已提交
221
	depends on NET_SCHED
222
	---help---
L
Linus Torvalds 已提交
223
	  Say Y here if you want to use the Generic Random Early Detection
224
	  (GRED) packet scheduling algorithm for some of your network devices
L
Linus Torvalds 已提交
225 226 227 228 229 230 231
	  (see the top of <file:net/sched/sch_red.c> for details and
	  references about the algorithm).

	  To compile this code as a module, choose M here: the
	  module will be called sch_gred.

config NET_SCH_DSMARK
232
	tristate "Differentiated Services marker (DSMARK)"
L
Linus Torvalds 已提交
233
	depends on NET_SCHED
234
	---help---
L
Linus Torvalds 已提交
235 236 237 238 239 240 241 242 243
	  Say Y if you want to schedule packets according to the
	  Differentiated Services architecture proposed in RFC 2475.
	  Technical information on this method, with pointers to associated
	  RFCs, is available at <http://www.gta.ufrj.br/diffserv/>.

	  To compile this code as a module, choose M here: the
	  module will be called sch_dsmark.

config NET_SCH_NETEM
244
	tristate "Network emulator (NETEM)"
L
Linus Torvalds 已提交
245
	depends on NET_SCHED
246
	---help---
L
Linus Torvalds 已提交
247 248 249 250 251 252 253 254 255 256 257 258
	  Say Y if you want to emulate network delay, loss, and packet
	  re-ordering. This is often useful to simulate networks when
	  testing applications or protocols.

	  To compile this driver as a module, choose M here: the module
	  will be called sch_netem.

	  If unsure, say N.

config NET_SCH_INGRESS
	tristate "Ingress Qdisc"
	depends on NET_SCHED 
259 260
	---help---
	  Say Y here if you want to use classifiers for incoming packets.
L
Linus Torvalds 已提交
261 262 263 264 265
	  If unsure, say Y.

	  To compile this code as a module, choose M here: the
	  module will be called sch_ingress.

266
comment "Classification"
L
Linus Torvalds 已提交
267 268 269
	depends on NET_SCHED

config NET_CLS
270
	boolean
L
Linus Torvalds 已提交
271 272

config NET_CLS_BASIC
273 274 275
	tristate "Elementary classification (BASIC)"
	depends NET_SCHED
	select NET_CLS
L
Linus Torvalds 已提交
276 277 278 279 280 281 282 283
	---help---
	  Say Y here if you want to be able to classify packets using
	  only extended matches and actions.

	  To compile this code as a module, choose M here: the
	  module will be called cls_basic.

config NET_CLS_TCINDEX
284 285 286 287 288 289 290
	tristate "Traffic-Control Index (TCINDEX)"
	depends NET_SCHED
	select NET_CLS
	---help---
	  Say Y here if you want to be able to classify packets based on
	  traffic control indices. You will want this feature if you want
	  to implement Differentiated Services together with DSMARK.
L
Linus Torvalds 已提交
291 292 293 294 295

	  To compile this code as a module, choose M here: the
	  module will be called cls_tcindex.

config NET_CLS_ROUTE4
296 297
	tristate "Routing decision (ROUTE)"
	depends NET_SCHED
L
Linus Torvalds 已提交
298
	select NET_CLS_ROUTE
299 300 301 302
	select NET_CLS
	---help---
	  If you say Y here, you will be able to classify packets
	  according to the route table entry they matched.
L
Linus Torvalds 已提交
303 304 305 306 307 308 309 310 311

	  To compile this code as a module, choose M here: the
	  module will be called cls_route.

config NET_CLS_ROUTE
	bool
	default n

config NET_CLS_FW
312 313 314 315 316 317
	tristate "Netfilter mark (FW)"
	depends NET_SCHED
	select NET_CLS
	---help---
	  If you say Y here, you will be able to classify packets
	  according to netfilter/firewall marks.
L
Linus Torvalds 已提交
318 319 320 321 322

	  To compile this code as a module, choose M here: the
	  module will be called cls_fw.

config NET_CLS_U32
323 324 325 326 327 328
	tristate "Universal 32bit comparisons w/ hashing (U32)"
	depends NET_SCHED
	select NET_CLS
	---help---
	  Say Y here to be able to classify packetes using a universal
	  32bit pieces based comparison scheme.
L
Linus Torvalds 已提交
329 330 331 332 333

	  To compile this code as a module, choose M here: the
	  module will be called cls_u32.

config CLS_U32_PERF
334
	bool "Performance counters support"
L
Linus Torvalds 已提交
335
	depends on NET_CLS_U32
336 337 338
	---help---
	  Say Y here to make u32 gather additional statistics useful for
	  fine tuning u32 classifiers.
L
Linus Torvalds 已提交
339 340

config CLS_U32_MARK
341
	bool "Netfilter marks support"
L
Linus Torvalds 已提交
342
	depends on NET_CLS_U32 && NETFILTER
343 344
	---help---
	  Say Y here to be able to use netfilter marks as u32 key.
L
Linus Torvalds 已提交
345 346

config NET_CLS_RSVP
347 348 349 350
	tristate "IPv4 Resource Reservation Protocol (RSVP)"
	depends on NET_SCHED
	select NET_CLS
	select NET_ESTIMATOR
L
Linus Torvalds 已提交
351 352 353 354 355 356 357 358 359 360 361 362
	---help---
	  The Resource Reservation Protocol (RSVP) permits end systems to
	  request a minimum and maximum data flow rate for a connection; this
	  is important for real time data such as streaming sound or video.

	  Say Y here if you want to be able to classify outgoing packets based
	  on their RSVP requests.

	  To compile this code as a module, choose M here: the
	  module will be called cls_rsvp.

config NET_CLS_RSVP6
363 364 365 366
	tristate "IPv6 Resource Reservation Protocol (RSVP6)"
	depends on NET_SCHED
	select NET_CLS
	select NET_ESTIMATOR
L
Linus Torvalds 已提交
367 368 369 370 371 372
	---help---
	  The Resource Reservation Protocol (RSVP) permits end systems to
	  request a minimum and maximum data flow rate for a connection; this
	  is important for real time data such as streaming sound or video.

	  Say Y here if you want to be able to classify outgoing packets based
373
	  on their RSVP requests and you are using the IPv6.
L
Linus Torvalds 已提交
374 375 376 377 378 379

	  To compile this code as a module, choose M here: the
	  module will be called cls_rsvp6.

config NET_EMATCH
	bool "Extended Matches"
380 381
	depends NET_SCHED
	select NET_CLS
L
Linus Torvalds 已提交
382 383 384 385 386
	---help---
	  Say Y here if you want to use extended matches on top of classifiers
	  and select the extended matches below.

	  Extended matches are small classification helpers not worth writing
387
	  a separate classifier for.
L
Linus Torvalds 已提交
388

389
	  A recent version of the iproute2 package is required to use
L
Linus Torvalds 已提交
390 391 392 393 394 395 396 397 398
	  extended matches.

config NET_EMATCH_STACK
	int "Stack size"
	depends on NET_EMATCH
	default "32"
	---help---
	  Size of the local stack variable used while evaluating the tree of
	  ematches. Limits the depth of the tree, i.e. the number of
399
	  encapsulated precedences. Every level requires 4 bytes of additional
L
Linus Torvalds 已提交
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
	  stack space.

config NET_EMATCH_CMP
	tristate "Simple packet data comparison"
	depends on NET_EMATCH
	---help---
	  Say Y here if you want to be able to classify packets based on
	  simple packet data comparisons for 8, 16, and 32bit values.

	  To compile this code as a module, choose M here: the
	  module will be called em_cmp.

config NET_EMATCH_NBYTE
	tristate "Multi byte comparison"
	depends on NET_EMATCH
	---help---
	  Say Y here if you want to be able to classify packets based on
	  multiple byte comparisons mainly useful for IPv6 address comparisons.

	  To compile this code as a module, choose M here: the
	  module will be called em_nbyte.

config NET_EMATCH_U32
423
	tristate "U32 key"
L
Linus Torvalds 已提交
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442
	depends on NET_EMATCH
	---help---
	  Say Y here if you want to be able to classify packets using
	  the famous u32 key in combination with logic relations.

	  To compile this code as a module, choose M here: the
	  module will be called em_u32.

config NET_EMATCH_META
	tristate "Metadata"
	depends on NET_EMATCH
	---help---
	  Say Y here if you want to be ablt to classify packets based on
	  metadata such as load average, netfilter attributes, socket
	  attributes and routing decisions.

	  To compile this code as a module, choose M here: the
	  module will be called em_meta.

443 444 445
config NET_EMATCH_TEXT
	tristate "Textsearch"
	depends on NET_EMATCH
446
	select TEXTSEARCH
447
	select TEXTSEARCH_KMP
448
	select TEXTSEARCH_BM
449
	select TEXTSEARCH_FSM
450
	---help---
451
	  Say Y here if you want to be able to classify packets based on
452
	  textsearch comparisons.
453 454 455 456

	  To compile this code as a module, choose M here: the
	  module will be called em_text.

L
Linus Torvalds 已提交
457
config NET_CLS_ACT
458 459 460
	bool "Actions"
	depends on EXPERIMENTAL && NET_SCHED
	select NET_ESTIMATOR
L
Linus Torvalds 已提交
461
	---help---
462 463 464 465 466 467 468
	  Say Y here if you want to use traffic control actions. Actions
	  get attached to classifiers and are invoked after a successful
	  classification. They are used to overwrite the classification
	  result, instantly drop or redirect packets, etc.

	  A recent version of the iproute2 package is required to use
	  extended matches.
L
Linus Torvalds 已提交
469 470

config NET_ACT_POLICE
471
	tristate "Traffic Policing"
L
Linus Torvalds 已提交
472 473
        depends on NET_CLS_ACT 
        ---help---
474 475 476 477 478 479
	  Say Y here if you want to do traffic policing, i.e. strict
	  bandwidth limiting. This action replaces the existing policing
	  module.

	  To compile this code as a module, choose M here: the
	  module will be called police.
L
Linus Torvalds 已提交
480 481

config NET_ACT_GACT
482
        tristate "Generic actions"
L
Linus Torvalds 已提交
483 484
        depends on NET_CLS_ACT
        ---help---
485 486 487 488 489
	  Say Y here to take generic actions such as dropping and
	  accepting packets.

	  To compile this code as a module, choose M here: the
	  module will be called gact.
L
Linus Torvalds 已提交
490 491

config GACT_PROB
492
        bool "Probability support"
L
Linus Torvalds 已提交
493 494
        depends on NET_ACT_GACT
        ---help---
495
	  Say Y here to use the generic action randomly or deterministically.
L
Linus Torvalds 已提交
496 497

config NET_ACT_MIRRED
498
        tristate "Redirecting and Mirroring"
L
Linus Torvalds 已提交
499 500
        depends on NET_CLS_ACT
        ---help---
501 502 503 504 505
	  Say Y here to allow packets to be mirrored or redirected to
	  other devices.

	  To compile this code as a module, choose M here: the
	  module will be called mirred.
L
Linus Torvalds 已提交
506 507

config NET_ACT_IPT
508
        tristate "IPtables targets"
L
Linus Torvalds 已提交
509 510
        depends on NET_CLS_ACT && NETFILTER && IP_NF_IPTABLES
        ---help---
511 512 513 514 515
	  Say Y here to be able to invoke iptables targets after succesful
	  classification.

	  To compile this code as a module, choose M here: the
	  module will be called ipt.
L
Linus Torvalds 已提交
516 517

config NET_ACT_PEDIT
518
        tristate "Packet Editing"
L
Linus Torvalds 已提交
519 520
        depends on NET_CLS_ACT
        ---help---
521
	  Say Y here if you want to mangle the content of packets.
L
Linus Torvalds 已提交
522

523 524
	  To compile this code as a module, choose M here: the
	  module will be called pedit.
L
Linus Torvalds 已提交
525

526
config NET_ACT_SIMP
527
        tristate "Simple Example (Debug)"
528 529
        depends on NET_CLS_ACT
        ---help---
530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
	  Say Y here to add a simple action for demonstration purposes.
	  It is meant as an example and for debugging purposes. It will
	  print a configured policy string followed by the packet count
	  to the console for every packet that passes by.

	  If unsure, say N.

	  To compile this code as a module, choose M here: the
	  module will be called simple.

config NET_CLS_POLICE
	bool "Traffic Policing (obsolete)"
	depends on NET_SCHED && NET_CLS_ACT!=y
	select NET_ESTIMATOR
	---help---
	  Say Y here if you want to do traffic policing, i.e. strict
	  bandwidth limiting. This option is obsoleted by the traffic
	  policer implemented as action, it stays here for compatibility
	  reasons.

config NET_CLS_IND
	bool "Incoming device classification"
	depends on NET_SCHED && (NET_CLS_U32 || NET_CLS_FW)
	---help---
	  Say Y here to extend the u32 and fw classifier to support
	  classification based on the incoming device. This option is
	  likely to disappear in favour of the metadata ematch.

config NET_ESTIMATOR
	bool "Rate estimator"
	depends on NET_SCHED
	---help---
	  Say Y here to allow using rate estimators to estimate the current
	  rate-of-flow for network devices, queues, etc. This module is
	  automaticaly selected if needed but can be selected manually for
	  statstical purposes.
566

567
endmenu