Kconfig 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747
  1. #
  2. # Traffic control configuration.
  3. #
  4. menuconfig NET_SCHED
  5. bool "QoS and/or fair queueing"
  6. select NET_SCH_FIFO
  7. ---help---
  8. When the kernel has several packets to send out over a network
  9. device, it has to decide which ones to send first, which ones to
  10. delay, and which ones to drop. This is the job of the queueing
  11. disciplines, several different algorithms for how to do this
  12. "fairly" have been proposed.
  13. If you say N here, you will get the standard packet scheduler, which
  14. is a FIFO (first come, first served). If you say Y here, you will be
  15. able to choose from among several alternative algorithms which can
  16. then be attached to different network devices. This is useful for
  17. example if some of your network devices are real time devices that
  18. need a certain minimum data flow rate, or if you need to limit the
  19. maximum data flow rate for traffic which matches specified criteria.
  20. This code is considered to be experimental.
  21. To administer these schedulers, you'll need the user-level utilities
  22. from the package iproute2+tc at
  23. <https://www.kernel.org/pub/linux/utils/net/iproute2/>. That package
  24. also contains some documentation; for more, check out
  25. <http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2>.
  26. This Quality of Service (QoS) support will enable you to use
  27. Differentiated Services (diffserv) and Resource Reservation Protocol
  28. (RSVP) on your Linux router if you also say Y to the corresponding
  29. classifiers below. Documentation and software is at
  30. <http://diffserv.sourceforge.net/>.
  31. If you say Y here and to "/proc file system" below, you will be able
  32. to read status information about packet schedulers from the file
  33. /proc/net/psched.
  34. The available schedulers are listed in the following questions; you
  35. can say Y to as many as you like. If unsure, say N now.
  36. if NET_SCHED
  37. comment "Queueing/Scheduling"
  38. config NET_SCH_CBQ
  39. tristate "Class Based Queueing (CBQ)"
  40. ---help---
  41. Say Y here if you want to use the Class-Based Queueing (CBQ) packet
  42. scheduling algorithm. This algorithm classifies the waiting packets
  43. into a tree-like hierarchy of classes; the leaves of this tree are
  44. in turn scheduled by separate algorithms.
  45. See the top of <file:net/sched/sch_cbq.c> for more details.
  46. CBQ is a commonly used scheduler, so if you're unsure, you should
  47. say Y here. Then say Y to all the queueing algorithms below that you
  48. want to use as leaf disciplines.
  49. To compile this code as a module, choose M here: the
  50. module will be called sch_cbq.
  51. config NET_SCH_HTB
  52. tristate "Hierarchical Token Bucket (HTB)"
  53. ---help---
  54. Say Y here if you want to use the Hierarchical Token Buckets (HTB)
  55. packet scheduling algorithm. See
  56. <http://luxik.cdi.cz/~devik/qos/htb/> for complete manual and
  57. in-depth articles.
  58. HTB is very similar to CBQ regarding its goals however is has
  59. different properties and different algorithm.
  60. To compile this code as a module, choose M here: the
  61. module will be called sch_htb.
  62. config NET_SCH_HFSC
  63. tristate "Hierarchical Fair Service Curve (HFSC)"
  64. ---help---
  65. Say Y here if you want to use the Hierarchical Fair Service Curve
  66. (HFSC) packet scheduling algorithm.
  67. To compile this code as a module, choose M here: the
  68. module will be called sch_hfsc.
  69. config NET_SCH_ATM
  70. tristate "ATM Virtual Circuits (ATM)"
  71. depends on ATM
  72. ---help---
  73. Say Y here if you want to use the ATM pseudo-scheduler. This
  74. provides a framework for invoking classifiers, which in turn
  75. select classes of this queuing discipline. Each class maps
  76. the flow(s) it is handling to a given virtual circuit.
  77. See the top of <file:net/sched/sch_atm.c> for more details.
  78. To compile this code as a module, choose M here: the
  79. module will be called sch_atm.
  80. config NET_SCH_PRIO
  81. tristate "Multi Band Priority Queueing (PRIO)"
  82. ---help---
  83. Say Y here if you want to use an n-band priority queue packet
  84. scheduler.
  85. To compile this code as a module, choose M here: the
  86. module will be called sch_prio.
  87. config NET_SCH_MULTIQ
  88. tristate "Hardware Multiqueue-aware Multi Band Queuing (MULTIQ)"
  89. ---help---
  90. Say Y here if you want to use an n-band queue packet scheduler
  91. to support devices that have multiple hardware transmit queues.
  92. To compile this code as a module, choose M here: the
  93. module will be called sch_multiq.
  94. config NET_SCH_RED
  95. tristate "Random Early Detection (RED)"
  96. ---help---
  97. Say Y here if you want to use the Random Early Detection (RED)
  98. packet scheduling algorithm.
  99. See the top of <file:net/sched/sch_red.c> for more details.
  100. To compile this code as a module, choose M here: the
  101. module will be called sch_red.
  102. config NET_SCH_SFB
  103. tristate "Stochastic Fair Blue (SFB)"
  104. ---help---
  105. Say Y here if you want to use the Stochastic Fair Blue (SFB)
  106. packet scheduling algorithm.
  107. See the top of <file:net/sched/sch_sfb.c> for more details.
  108. To compile this code as a module, choose M here: the
  109. module will be called sch_sfb.
  110. config NET_SCH_SFQ
  111. tristate "Stochastic Fairness Queueing (SFQ)"
  112. ---help---
  113. Say Y here if you want to use the Stochastic Fairness Queueing (SFQ)
  114. packet scheduling algorithm.
  115. See the top of <file:net/sched/sch_sfq.c> for more details.
  116. To compile this code as a module, choose M here: the
  117. module will be called sch_sfq.
  118. config NET_SCH_TEQL
  119. tristate "True Link Equalizer (TEQL)"
  120. ---help---
  121. Say Y here if you want to use the True Link Equalizer (TLE) packet
  122. scheduling algorithm. This queueing discipline allows the combination
  123. of several physical devices into one virtual device.
  124. See the top of <file:net/sched/sch_teql.c> for more details.
  125. To compile this code as a module, choose M here: the
  126. module will be called sch_teql.
  127. config NET_SCH_TBF
  128. tristate "Token Bucket Filter (TBF)"
  129. ---help---
  130. Say Y here if you want to use the Token Bucket Filter (TBF) packet
  131. scheduling algorithm.
  132. See the top of <file:net/sched/sch_tbf.c> for more details.
  133. To compile this code as a module, choose M here: the
  134. module will be called sch_tbf.
  135. config NET_SCH_GRED
  136. tristate "Generic Random Early Detection (GRED)"
  137. ---help---
  138. Say Y here if you want to use the Generic Random Early Detection
  139. (GRED) packet scheduling algorithm for some of your network devices
  140. (see the top of <file:net/sched/sch_red.c> for details and
  141. references about the algorithm).
  142. To compile this code as a module, choose M here: the
  143. module will be called sch_gred.
  144. config NET_SCH_DSMARK
  145. tristate "Differentiated Services marker (DSMARK)"
  146. ---help---
  147. Say Y if you want to schedule packets according to the
  148. Differentiated Services architecture proposed in RFC 2475.
  149. Technical information on this method, with pointers to associated
  150. RFCs, is available at <http://www.gta.ufrj.br/diffserv/>.
  151. To compile this code as a module, choose M here: the
  152. module will be called sch_dsmark.
  153. config NET_SCH_NETEM
  154. tristate "Network emulator (NETEM)"
  155. ---help---
  156. Say Y if you want to emulate network delay, loss, and packet
  157. re-ordering. This is often useful to simulate networks when
  158. testing applications or protocols.
  159. To compile this driver as a module, choose M here: the module
  160. will be called sch_netem.
  161. If unsure, say N.
  162. config NET_SCH_DRR
  163. tristate "Deficit Round Robin scheduler (DRR)"
  164. help
  165. Say Y here if you want to use the Deficit Round Robin (DRR) packet
  166. scheduling algorithm.
  167. To compile this driver as a module, choose M here: the module
  168. will be called sch_drr.
  169. If unsure, say N.
  170. config NET_SCH_MQPRIO
  171. tristate "Multi-queue priority scheduler (MQPRIO)"
  172. help
  173. Say Y here if you want to use the Multi-queue Priority scheduler.
  174. This scheduler allows QOS to be offloaded on NICs that have support
  175. for offloading QOS schedulers.
  176. To compile this driver as a module, choose M here: the module will
  177. be called sch_mqprio.
  178. If unsure, say N.
  179. config NET_SCH_CHOKE
  180. tristate "CHOose and Keep responsive flow scheduler (CHOKE)"
  181. help
  182. Say Y here if you want to use the CHOKe packet scheduler (CHOose
  183. and Keep for responsive flows, CHOose and Kill for unresponsive
  184. flows). This is a variation of RED which trys to penalize flows
  185. that monopolize the queue.
  186. To compile this code as a module, choose M here: the
  187. module will be called sch_choke.
  188. config NET_SCH_QFQ
  189. tristate "Quick Fair Queueing scheduler (QFQ)"
  190. help
  191. Say Y here if you want to use the Quick Fair Queueing Scheduler (QFQ)
  192. packet scheduling algorithm.
  193. To compile this driver as a module, choose M here: the module
  194. will be called sch_qfq.
  195. If unsure, say N.
  196. config NET_SCH_CODEL
  197. tristate "Controlled Delay AQM (CODEL)"
  198. help
  199. Say Y here if you want to use the Controlled Delay (CODEL)
  200. packet scheduling algorithm.
  201. To compile this driver as a module, choose M here: the module
  202. will be called sch_codel.
  203. If unsure, say N.
  204. config NET_SCH_FQ_CODEL
  205. tristate "Fair Queue Controlled Delay AQM (FQ_CODEL)"
  206. help
  207. Say Y here if you want to use the FQ Controlled Delay (FQ_CODEL)
  208. packet scheduling algorithm.
  209. To compile this driver as a module, choose M here: the module
  210. will be called sch_fq_codel.
  211. If unsure, say N.
  212. config NET_SCH_FQ
  213. tristate "Fair Queue"
  214. help
  215. Say Y here if you want to use the FQ packet scheduling algorithm.
  216. FQ does flow separation, and is able to respect pacing requirements
  217. set by TCP stack into sk->sk_pacing_rate (for localy generated
  218. traffic)
  219. To compile this driver as a module, choose M here: the module
  220. will be called sch_fq.
  221. If unsure, say N.
  222. config NET_SCH_HHF
  223. tristate "Heavy-Hitter Filter (HHF)"
  224. help
  225. Say Y here if you want to use the Heavy-Hitter Filter (HHF)
  226. packet scheduling algorithm.
  227. To compile this driver as a module, choose M here: the module
  228. will be called sch_hhf.
  229. config NET_SCH_PIE
  230. tristate "Proportional Integral controller Enhanced (PIE) scheduler"
  231. help
  232. Say Y here if you want to use the Proportional Integral controller
  233. Enhanced scheduler packet scheduling algorithm.
  234. For more information, please see
  235. http://tools.ietf.org/html/draft-pan-tsvwg-pie-00
  236. To compile this driver as a module, choose M here: the module
  237. will be called sch_pie.
  238. If unsure, say N.
  239. config NET_SCH_INGRESS
  240. tristate "Ingress Qdisc"
  241. depends on NET_CLS_ACT
  242. select NET_INGRESS
  243. ---help---
  244. Say Y here if you want to use classifiers for incoming packets.
  245. If unsure, say Y.
  246. To compile this code as a module, choose M here: the
  247. module will be called sch_ingress.
  248. config NET_SCH_PLUG
  249. tristate "Plug network traffic until release (PLUG)"
  250. ---help---
  251. This queuing discipline allows userspace to plug/unplug a network
  252. output queue, using the netlink interface. When it receives an
  253. enqueue command it inserts a plug into the outbound queue that
  254. causes following packets to enqueue until a dequeue command arrives
  255. over netlink, causing the plug to be removed and resuming the normal
  256. packet flow.
  257. This module also provides a generic "network output buffering"
  258. functionality (aka output commit), wherein upon arrival of a dequeue
  259. command, only packets up to the first plug are released for delivery.
  260. The Remus HA project uses this module to enable speculative execution
  261. of virtual machines by allowing the generated network output to be rolled
  262. back if needed.
  263. For more information, please refer to <http://wiki.xenproject.org/wiki/Remus>
  264. Say Y here if you are using this kernel for Xen dom0 and
  265. want to protect Xen guests with Remus.
  266. To compile this code as a module, choose M here: the
  267. module will be called sch_plug.
  268. comment "Classification"
  269. config NET_CLS
  270. bool
  271. config NET_CLS_BASIC
  272. tristate "Elementary classification (BASIC)"
  273. select NET_CLS
  274. ---help---
  275. Say Y here if you want to be able to classify packets using
  276. only extended matches and actions.
  277. To compile this code as a module, choose M here: the
  278. module will be called cls_basic.
  279. config NET_CLS_TCINDEX
  280. tristate "Traffic-Control Index (TCINDEX)"
  281. select NET_CLS
  282. ---help---
  283. Say Y here if you want to be able to classify packets based on
  284. traffic control indices. You will want this feature if you want
  285. to implement Differentiated Services together with DSMARK.
  286. To compile this code as a module, choose M here: the
  287. module will be called cls_tcindex.
  288. config NET_CLS_ROUTE4
  289. tristate "Routing decision (ROUTE)"
  290. depends on INET
  291. select IP_ROUTE_CLASSID
  292. select NET_CLS
  293. ---help---
  294. If you say Y here, you will be able to classify packets
  295. according to the route table entry they matched.
  296. To compile this code as a module, choose M here: the
  297. module will be called cls_route.
  298. config NET_CLS_FW
  299. tristate "Netfilter mark (FW)"
  300. select NET_CLS
  301. ---help---
  302. If you say Y here, you will be able to classify packets
  303. according to netfilter/firewall marks.
  304. To compile this code as a module, choose M here: the
  305. module will be called cls_fw.
  306. config NET_CLS_U32
  307. tristate "Universal 32bit comparisons w/ hashing (U32)"
  308. select NET_CLS
  309. ---help---
  310. Say Y here to be able to classify packets using a universal
  311. 32bit pieces based comparison scheme.
  312. To compile this code as a module, choose M here: the
  313. module will be called cls_u32.
  314. config CLS_U32_PERF
  315. bool "Performance counters support"
  316. depends on NET_CLS_U32
  317. ---help---
  318. Say Y here to make u32 gather additional statistics useful for
  319. fine tuning u32 classifiers.
  320. config CLS_U32_MARK
  321. bool "Netfilter marks support"
  322. depends on NET_CLS_U32
  323. ---help---
  324. Say Y here to be able to use netfilter marks as u32 key.
  325. config NET_CLS_RSVP
  326. tristate "IPv4 Resource Reservation Protocol (RSVP)"
  327. select NET_CLS
  328. ---help---
  329. The Resource Reservation Protocol (RSVP) permits end systems to
  330. request a minimum and maximum data flow rate for a connection; this
  331. is important for real time data such as streaming sound or video.
  332. Say Y here if you want to be able to classify outgoing packets based
  333. on their RSVP requests.
  334. To compile this code as a module, choose M here: the
  335. module will be called cls_rsvp.
  336. config NET_CLS_RSVP6
  337. tristate "IPv6 Resource Reservation Protocol (RSVP6)"
  338. select NET_CLS
  339. ---help---
  340. The Resource Reservation Protocol (RSVP) permits end systems to
  341. request a minimum and maximum data flow rate for a connection; this
  342. is important for real time data such as streaming sound or video.
  343. Say Y here if you want to be able to classify outgoing packets based
  344. on their RSVP requests and you are using the IPv6 protocol.
  345. To compile this code as a module, choose M here: the
  346. module will be called cls_rsvp6.
  347. config NET_CLS_FLOW
  348. tristate "Flow classifier"
  349. select NET_CLS
  350. ---help---
  351. If you say Y here, you will be able to classify packets based on
  352. a configurable combination of packet keys. This is mostly useful
  353. in combination with SFQ.
  354. To compile this code as a module, choose M here: the
  355. module will be called cls_flow.
  356. config NET_CLS_CGROUP
  357. tristate "Control Group Classifier"
  358. select NET_CLS
  359. select CGROUP_NET_CLASSID
  360. depends on CGROUPS
  361. ---help---
  362. Say Y here if you want to classify packets based on the control
  363. cgroup of their process.
  364. To compile this code as a module, choose M here: the
  365. module will be called cls_cgroup.
  366. config NET_CLS_BPF
  367. tristate "BPF-based classifier"
  368. select NET_CLS
  369. ---help---
  370. If you say Y here, you will be able to classify packets based on
  371. programmable BPF (JIT'ed) filters as an alternative to ematches.
  372. To compile this code as a module, choose M here: the module will
  373. be called cls_bpf.
  374. config NET_CLS_FLOWER
  375. tristate "Flower classifier"
  376. select NET_CLS
  377. ---help---
  378. If you say Y here, you will be able to classify packets based on
  379. a configurable combination of packet keys and masks.
  380. To compile this code as a module, choose M here: the module will
  381. be called cls_flower.
  382. config NET_EMATCH
  383. bool "Extended Matches"
  384. select NET_CLS
  385. ---help---
  386. Say Y here if you want to use extended matches on top of classifiers
  387. and select the extended matches below.
  388. Extended matches are small classification helpers not worth writing
  389. a separate classifier for.
  390. A recent version of the iproute2 package is required to use
  391. extended matches.
  392. config NET_EMATCH_STACK
  393. int "Stack size"
  394. depends on NET_EMATCH
  395. default "32"
  396. ---help---
  397. Size of the local stack variable used while evaluating the tree of
  398. ematches. Limits the depth of the tree, i.e. the number of
  399. encapsulated precedences. Every level requires 4 bytes of additional
  400. stack space.
  401. config NET_EMATCH_CMP
  402. tristate "Simple packet data comparison"
  403. depends on NET_EMATCH
  404. ---help---
  405. Say Y here if you want to be able to classify packets based on
  406. simple packet data comparisons for 8, 16, and 32bit values.
  407. To compile this code as a module, choose M here: the
  408. module will be called em_cmp.
  409. config NET_EMATCH_NBYTE
  410. tristate "Multi byte comparison"
  411. depends on NET_EMATCH
  412. ---help---
  413. Say Y here if you want to be able to classify packets based on
  414. multiple byte comparisons mainly useful for IPv6 address comparisons.
  415. To compile this code as a module, choose M here: the
  416. module will be called em_nbyte.
  417. config NET_EMATCH_U32
  418. tristate "U32 key"
  419. depends on NET_EMATCH
  420. ---help---
  421. Say Y here if you want to be able to classify packets using
  422. the famous u32 key in combination with logic relations.
  423. To compile this code as a module, choose M here: the
  424. module will be called em_u32.
  425. config NET_EMATCH_META
  426. tristate "Metadata"
  427. depends on NET_EMATCH
  428. ---help---
  429. Say Y here if you want to be able to classify packets based on
  430. metadata such as load average, netfilter attributes, socket
  431. attributes and routing decisions.
  432. To compile this code as a module, choose M here: the
  433. module will be called em_meta.
  434. config NET_EMATCH_TEXT
  435. tristate "Textsearch"
  436. depends on NET_EMATCH
  437. select TEXTSEARCH
  438. select TEXTSEARCH_KMP
  439. select TEXTSEARCH_BM
  440. select TEXTSEARCH_FSM
  441. ---help---
  442. Say Y here if you want to be able to classify packets based on
  443. textsearch comparisons.
  444. To compile this code as a module, choose M here: the
  445. module will be called em_text.
  446. config NET_EMATCH_CANID
  447. tristate "CAN Identifier"
  448. depends on NET_EMATCH && (CAN=y || CAN=m)
  449. ---help---
  450. Say Y here if you want to be able to classify CAN frames based
  451. on CAN Identifier.
  452. To compile this code as a module, choose M here: the
  453. module will be called em_canid.
  454. config NET_EMATCH_IPSET
  455. tristate "IPset"
  456. depends on NET_EMATCH && IP_SET
  457. ---help---
  458. Say Y here if you want to be able to classify packets based on
  459. ipset membership.
  460. To compile this code as a module, choose M here: the
  461. module will be called em_ipset.
  462. config NET_CLS_ACT
  463. bool "Actions"
  464. ---help---
  465. Say Y here if you want to use traffic control actions. Actions
  466. get attached to classifiers and are invoked after a successful
  467. classification. They are used to overwrite the classification
  468. result, instantly drop or redirect packets, etc.
  469. A recent version of the iproute2 package is required to use
  470. extended matches.
  471. config NET_ACT_POLICE
  472. tristate "Traffic Policing"
  473. depends on NET_CLS_ACT
  474. ---help---
  475. Say Y here if you want to do traffic policing, i.e. strict
  476. bandwidth limiting. This action replaces the existing policing
  477. module.
  478. To compile this code as a module, choose M here: the
  479. module will be called act_police.
  480. config NET_ACT_GACT
  481. tristate "Generic actions"
  482. depends on NET_CLS_ACT
  483. ---help---
  484. Say Y here to take generic actions such as dropping and
  485. accepting packets.
  486. To compile this code as a module, choose M here: the
  487. module will be called act_gact.
  488. config GACT_PROB
  489. bool "Probability support"
  490. depends on NET_ACT_GACT
  491. ---help---
  492. Say Y here to use the generic action randomly or deterministically.
  493. config NET_ACT_MIRRED
  494. tristate "Redirecting and Mirroring"
  495. depends on NET_CLS_ACT
  496. ---help---
  497. Say Y here to allow packets to be mirrored or redirected to
  498. other devices.
  499. To compile this code as a module, choose M here: the
  500. module will be called act_mirred.
  501. config NET_ACT_IPT
  502. tristate "IPtables targets"
  503. depends on NET_CLS_ACT && NETFILTER && IP_NF_IPTABLES
  504. ---help---
  505. Say Y here to be able to invoke iptables targets after successful
  506. classification.
  507. To compile this code as a module, choose M here: the
  508. module will be called act_ipt.
  509. config NET_ACT_NAT
  510. tristate "Stateless NAT"
  511. depends on NET_CLS_ACT
  512. ---help---
  513. Say Y here to do stateless NAT on IPv4 packets. You should use
  514. netfilter for NAT unless you know what you are doing.
  515. To compile this code as a module, choose M here: the
  516. module will be called act_nat.
  517. config NET_ACT_PEDIT
  518. tristate "Packet Editing"
  519. depends on NET_CLS_ACT
  520. ---help---
  521. Say Y here if you want to mangle the content of packets.
  522. To compile this code as a module, choose M here: the
  523. module will be called act_pedit.
  524. config NET_ACT_SIMP
  525. tristate "Simple Example (Debug)"
  526. depends on NET_CLS_ACT
  527. ---help---
  528. Say Y here to add a simple action for demonstration purposes.
  529. It is meant as an example and for debugging purposes. It will
  530. print a configured policy string followed by the packet count
  531. to the console for every packet that passes by.
  532. If unsure, say N.
  533. To compile this code as a module, choose M here: the
  534. module will be called act_simple.
  535. config NET_ACT_SKBEDIT
  536. tristate "SKB Editing"
  537. depends on NET_CLS_ACT
  538. ---help---
  539. Say Y here to change skb priority or queue_mapping settings.
  540. If unsure, say N.
  541. To compile this code as a module, choose M here: the
  542. module will be called act_skbedit.
  543. config NET_ACT_CSUM
  544. tristate "Checksum Updating"
  545. depends on NET_CLS_ACT && INET
  546. ---help---
  547. Say Y here to update some common checksum after some direct
  548. packet alterations.
  549. To compile this code as a module, choose M here: the
  550. module will be called act_csum.
  551. config NET_ACT_VLAN
  552. tristate "Vlan manipulation"
  553. depends on NET_CLS_ACT
  554. ---help---
  555. Say Y here to push or pop vlan headers.
  556. If unsure, say N.
  557. To compile this code as a module, choose M here: the
  558. module will be called act_vlan.
  559. config NET_ACT_BPF
  560. tristate "BPF based action"
  561. depends on NET_CLS_ACT
  562. ---help---
  563. Say Y here to execute BPF code on packets. The BPF code will decide
  564. if the packet should be dropped or not.
  565. If unsure, say N.
  566. To compile this code as a module, choose M here: the
  567. module will be called act_bpf.
  568. config NET_ACT_CONNMARK
  569. tristate "Netfilter Connection Mark Retriever"
  570. depends on NET_CLS_ACT && NETFILTER && IP_NF_IPTABLES
  571. depends on NF_CONNTRACK && NF_CONNTRACK_MARK
  572. ---help---
  573. Say Y here to allow retrieving of conn mark
  574. If unsure, say N.
  575. To compile this code as a module, choose M here: the
  576. module will be called act_connmark.
  577. config NET_CLS_IND
  578. bool "Incoming device classification"
  579. depends on NET_CLS_U32 || NET_CLS_FW
  580. ---help---
  581. Say Y here to extend the u32 and fw classifier to support
  582. classification based on the incoming device. This option is
  583. likely to disappear in favour of the metadata ematch.
  584. endif # NET_SCHED
  585. config NET_SCH_FIFO
  586. bool