Kconfig 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757
  1. #
  2. # IP configuration
  3. #
  4. config IP_MULTICAST
  5. bool "IP: multicasting"
  6. help
  7. This is code for addressing several networked computers at once,
  8. enlarging your kernel by about 2 KB. You need multicasting if you
  9. intend to participate in the MBONE, a high bandwidth network on top
  10. of the Internet which carries audio and video broadcasts. More
  11. information about the MBONE is on the WWW at
  12. <http://www.savetz.com/mbone/>. For most people, it's safe to say N.
  13. config IP_ADVANCED_ROUTER
  14. bool "IP: advanced router"
  15. ---help---
  16. If you intend to run your Linux box mostly as a router, i.e. as a
  17. computer that forwards and redistributes network packets, say Y; you
  18. will then be presented with several options that allow more precise
  19. control about the routing process.
  20. The answer to this question won't directly affect the kernel:
  21. answering N will just cause the configurator to skip all the
  22. questions about advanced routing.
  23. Note that your box can only act as a router if you enable IP
  24. forwarding in your kernel; you can do that by saying Y to "/proc
  25. file system support" and "Sysctl support" below and executing the
  26. line
  27. echo "1" > /proc/sys/net/ipv4/ip_forward
  28. at boot time after the /proc file system has been mounted.
  29. If you turn on IP forwarding, you should consider the rp_filter, which
  30. automatically rejects incoming packets if the routing table entry
  31. for their source address doesn't match the network interface they're
  32. arriving on. This has security advantages because it prevents the
  33. so-called IP spoofing, however it can pose problems if you use
  34. asymmetric routing (packets from you to a host take a different path
  35. than packets from that host to you) or if you operate a non-routing
  36. host which has several IP addresses on different interfaces. To turn
  37. rp_filter on use:
  38. echo 1 > /proc/sys/net/ipv4/conf/<device>/rp_filter
  39. or
  40. echo 1 > /proc/sys/net/ipv4/conf/all/rp_filter
  41. Note that some distributions enable it in startup scripts.
  42. For details about rp_filter strict and loose mode read
  43. <file:Documentation/networking/ip-sysctl.txt>.
  44. If unsure, say N here.
  45. config IP_FIB_TRIE_STATS
  46. bool "FIB TRIE statistics"
  47. depends on IP_ADVANCED_ROUTER
  48. ---help---
  49. Keep track of statistics on structure of FIB TRIE table.
  50. Useful for testing and measuring TRIE performance.
  51. config IP_MULTIPLE_TABLES
  52. bool "IP: policy routing"
  53. depends on IP_ADVANCED_ROUTER
  54. select FIB_RULES
  55. ---help---
  56. Normally, a router decides what to do with a received packet based
  57. solely on the packet's final destination address. If you say Y here,
  58. the Linux router will also be able to take the packet's source
  59. address into account. Furthermore, the TOS (Type-Of-Service) field
  60. of the packet can be used for routing decisions as well.
  61. If you need more information, see the Linux Advanced
  62. Routing and Traffic Control documentation at
  63. <http://lartc.org/howto/lartc.rpdb.html>
  64. If unsure, say N.
  65. config IP_ROUTE_MULTIPATH
  66. bool "IP: equal cost multipath"
  67. depends on IP_ADVANCED_ROUTER
  68. help
  69. Normally, the routing tables specify a single action to be taken in
  70. a deterministic manner for a given packet. If you say Y here
  71. however, it becomes possible to attach several actions to a packet
  72. pattern, in effect specifying several alternative paths to travel
  73. for those packets. The router considers all these paths to be of
  74. equal "cost" and chooses one of them in a non-deterministic fashion
  75. if a matching packet arrives.
  76. config IP_ROUTE_VERBOSE
  77. bool "IP: verbose route monitoring"
  78. depends on IP_ADVANCED_ROUTER
  79. help
  80. If you say Y here, which is recommended, then the kernel will print
  81. verbose messages regarding the routing, for example warnings about
  82. received packets which look strange and could be evidence of an
  83. attack or a misconfigured system somewhere. The information is
  84. handled by the klogd daemon which is responsible for kernel messages
  85. ("man klogd").
  86. config IP_ROUTE_CLASSID
  87. bool
  88. config IP_PNP
  89. bool "IP: kernel level autoconfiguration"
  90. help
  91. This enables automatic configuration of IP addresses of devices and
  92. of the routing table during kernel boot, based on either information
  93. supplied on the kernel command line or by BOOTP or RARP protocols.
  94. You need to say Y only for diskless machines requiring network
  95. access to boot (in which case you want to say Y to "Root file system
  96. on NFS" as well), because all other machines configure the network
  97. in their startup scripts.
  98. config IP_PNP_DHCP
  99. bool "IP: DHCP support"
  100. depends on IP_PNP
  101. ---help---
  102. If you want your Linux box to mount its whole root file system (the
  103. one containing the directory /) from some other computer over the
  104. net via NFS and you want the IP address of your computer to be
  105. discovered automatically at boot time using the DHCP protocol (a
  106. special protocol designed for doing this job), say Y here. In case
  107. the boot ROM of your network card was designed for booting Linux and
  108. does DHCP itself, providing all necessary information on the kernel
  109. command line, you can say N here.
  110. If unsure, say Y. Note that if you want to use DHCP, a DHCP server
  111. must be operating on your network. Read
  112. <file:Documentation/filesystems/nfs/nfsroot.txt> for details.
  113. config IP_PNP_BOOTP
  114. bool "IP: BOOTP support"
  115. depends on IP_PNP
  116. ---help---
  117. If you want your Linux box to mount its whole root file system (the
  118. one containing the directory /) from some other computer over the
  119. net via NFS and you want the IP address of your computer to be
  120. discovered automatically at boot time using the BOOTP protocol (a
  121. special protocol designed for doing this job), say Y here. In case
  122. the boot ROM of your network card was designed for booting Linux and
  123. does BOOTP itself, providing all necessary information on the kernel
  124. command line, you can say N here. If unsure, say Y. Note that if you
  125. want to use BOOTP, a BOOTP server must be operating on your network.
  126. Read <file:Documentation/filesystems/nfs/nfsroot.txt> for details.
  127. config IP_PNP_RARP
  128. bool "IP: RARP support"
  129. depends on IP_PNP
  130. help
  131. If you want your Linux box to mount its whole root file system (the
  132. one containing the directory /) from some other computer over the
  133. net via NFS and you want the IP address of your computer to be
  134. discovered automatically at boot time using the RARP protocol (an
  135. older protocol which is being obsoleted by BOOTP and DHCP), say Y
  136. here. Note that if you want to use RARP, a RARP server must be
  137. operating on your network. Read
  138. <file:Documentation/filesystems/nfs/nfsroot.txt> for details.
  139. config NET_IPIP
  140. tristate "IP: tunneling"
  141. select INET_TUNNEL
  142. select NET_IP_TUNNEL
  143. ---help---
  144. Tunneling means encapsulating data of one protocol type within
  145. another protocol and sending it over a channel that understands the
  146. encapsulating protocol. This particular tunneling driver implements
  147. encapsulation of IP within IP, which sounds kind of pointless, but
  148. can be useful if you want to make your (or some other) machine
  149. appear on a different network than it physically is, or to use
  150. mobile-IP facilities (allowing laptops to seamlessly move between
  151. networks without changing their IP addresses).
  152. Saying Y to this option will produce two modules ( = code which can
  153. be inserted in and removed from the running kernel whenever you
  154. want). Most people won't need this and can say N.
  155. config NET_IPGRE_DEMUX
  156. tristate "IP: GRE demultiplexer"
  157. help
  158. This is helper module to demultiplex GRE packets on GRE version field criteria.
  159. Required by ip_gre and pptp modules.
  160. config NET_IP_TUNNEL
  161. tristate
  162. select DST_CACHE
  163. select GRO_CELLS
  164. default n
  165. config NET_IPGRE
  166. tristate "IP: GRE tunnels over IP"
  167. depends on (IPV6 || IPV6=n) && NET_IPGRE_DEMUX
  168. select NET_IP_TUNNEL
  169. help
  170. Tunneling means encapsulating data of one protocol type within
  171. another protocol and sending it over a channel that understands the
  172. encapsulating protocol. This particular tunneling driver implements
  173. GRE (Generic Routing Encapsulation) and at this time allows
  174. encapsulating of IPv4 or IPv6 over existing IPv4 infrastructure.
  175. This driver is useful if the other endpoint is a Cisco router: Cisco
  176. likes GRE much better than the other Linux tunneling driver ("IP
  177. tunneling" above). In addition, GRE allows multicast redistribution
  178. through the tunnel.
  179. config NET_IPGRE_BROADCAST
  180. bool "IP: broadcast GRE over IP"
  181. depends on IP_MULTICAST && NET_IPGRE
  182. help
  183. One application of GRE/IP is to construct a broadcast WAN (Wide Area
  184. Network), which looks like a normal Ethernet LAN (Local Area
  185. Network), but can be distributed all over the Internet. If you want
  186. to do that, say Y here and to "IP multicast routing" below.
  187. config IP_MROUTE_COMMON
  188. bool
  189. depends on IP_MROUTE || IPV6_MROUTE
  190. config IP_MROUTE
  191. bool "IP: multicast routing"
  192. depends on IP_MULTICAST
  193. select IP_MROUTE_COMMON
  194. help
  195. This is used if you want your machine to act as a router for IP
  196. packets that have several destination addresses. It is needed on the
  197. MBONE, a high bandwidth network on top of the Internet which carries
  198. audio and video broadcasts. In order to do that, you would most
  199. likely run the program mrouted. If you haven't heard about it, you
  200. don't need it.
  201. config IP_MROUTE_MULTIPLE_TABLES
  202. bool "IP: multicast policy routing"
  203. depends on IP_MROUTE && IP_ADVANCED_ROUTER
  204. select FIB_RULES
  205. help
  206. Normally, a multicast router runs a userspace daemon and decides
  207. what to do with a multicast packet based on the source and
  208. destination addresses. If you say Y here, the multicast router
  209. will also be able to take interfaces and packet marks into
  210. account and run multiple instances of userspace daemons
  211. simultaneously, each one handling a single table.
  212. If unsure, say N.
  213. config IP_PIMSM_V1
  214. bool "IP: PIM-SM version 1 support"
  215. depends on IP_MROUTE
  216. help
  217. Kernel side support for Sparse Mode PIM (Protocol Independent
  218. Multicast) version 1. This multicast routing protocol is used widely
  219. because Cisco supports it. You need special software to use it
  220. (pimd-v1). Please see <http://netweb.usc.edu/pim/> for more
  221. information about PIM.
  222. Say Y if you want to use PIM-SM v1. Note that you can say N here if
  223. you just want to use Dense Mode PIM.
  224. config IP_PIMSM_V2
  225. bool "IP: PIM-SM version 2 support"
  226. depends on IP_MROUTE
  227. help
  228. Kernel side support for Sparse Mode PIM version 2. In order to use
  229. this, you need an experimental routing daemon supporting it (pimd or
  230. gated-5). This routing protocol is not used widely, so say N unless
  231. you want to play with it.
  232. config SYN_COOKIES
  233. bool "IP: TCP syncookie support"
  234. ---help---
  235. Normal TCP/IP networking is open to an attack known as "SYN
  236. flooding". This denial-of-service attack prevents legitimate remote
  237. users from being able to connect to your computer during an ongoing
  238. attack and requires very little work from the attacker, who can
  239. operate from anywhere on the Internet.
  240. SYN cookies provide protection against this type of attack. If you
  241. say Y here, the TCP/IP stack will use a cryptographic challenge
  242. protocol known as "SYN cookies" to enable legitimate users to
  243. continue to connect, even when your machine is under attack. There
  244. is no need for the legitimate users to change their TCP/IP software;
  245. SYN cookies work transparently to them. For technical information
  246. about SYN cookies, check out <http://cr.yp.to/syncookies.html>.
  247. If you are SYN flooded, the source address reported by the kernel is
  248. likely to have been forged by the attacker; it is only reported as
  249. an aid in tracing the packets to their actual source and should not
  250. be taken as absolute truth.
  251. SYN cookies may prevent correct error reporting on clients when the
  252. server is really overloaded. If this happens frequently better turn
  253. them off.
  254. If you say Y here, you can disable SYN cookies at run time by
  255. saying Y to "/proc file system support" and
  256. "Sysctl support" below and executing the command
  257. echo 0 > /proc/sys/net/ipv4/tcp_syncookies
  258. after the /proc file system has been mounted.
  259. If unsure, say N.
  260. config NET_IPVTI
  261. tristate "Virtual (secure) IP: tunneling"
  262. depends on IPV6 || IPV6=n
  263. select INET_TUNNEL
  264. select NET_IP_TUNNEL
  265. depends on INET_XFRM_MODE_TUNNEL
  266. ---help---
  267. Tunneling means encapsulating data of one protocol type within
  268. another protocol and sending it over a channel that understands the
  269. encapsulating protocol. This can be used with xfrm mode tunnel to give
  270. the notion of a secure tunnel for IPSEC and then use routing protocol
  271. on top.
  272. config NET_UDP_TUNNEL
  273. tristate
  274. select NET_IP_TUNNEL
  275. default n
  276. config NET_FOU
  277. tristate "IP: Foo (IP protocols) over UDP"
  278. select XFRM
  279. select NET_UDP_TUNNEL
  280. ---help---
  281. Foo over UDP allows any IP protocol to be directly encapsulated
  282. over UDP include tunnels (IPIP, GRE, SIT). By encapsulating in UDP
  283. network mechanisms and optimizations for UDP (such as ECMP
  284. and RSS) can be leveraged to provide better service.
  285. config NET_FOU_IP_TUNNELS
  286. bool "IP: FOU encapsulation of IP tunnels"
  287. depends on NET_IPIP || NET_IPGRE || IPV6_SIT
  288. select NET_FOU
  289. ---help---
  290. Allow configuration of FOU or GUE encapsulation for IP tunnels.
  291. When this option is enabled IP tunnels can be configured to use
  292. FOU or GUE encapsulation.
  293. config INET_AH
  294. tristate "IP: AH transformation"
  295. select XFRM_ALGO
  296. select CRYPTO
  297. select CRYPTO_HMAC
  298. select CRYPTO_MD5
  299. select CRYPTO_SHA1
  300. ---help---
  301. Support for IPsec AH.
  302. If unsure, say Y.
  303. config INET_ESP
  304. tristate "IP: ESP transformation"
  305. select XFRM_ALGO
  306. select CRYPTO
  307. select CRYPTO_AUTHENC
  308. select CRYPTO_HMAC
  309. select CRYPTO_MD5
  310. select CRYPTO_CBC
  311. select CRYPTO_SHA1
  312. select CRYPTO_DES
  313. select CRYPTO_ECHAINIV
  314. ---help---
  315. Support for IPsec ESP.
  316. If unsure, say Y.
  317. config INET_ESP_OFFLOAD
  318. tristate "IP: ESP transformation offload"
  319. depends on INET_ESP
  320. select XFRM_OFFLOAD
  321. default n
  322. ---help---
  323. Support for ESP transformation offload. This makes sense
  324. only if this system really does IPsec and want to do it
  325. with high throughput. A typical desktop system does not
  326. need it, even if it does IPsec.
  327. If unsure, say N.
  328. config INET_IPCOMP
  329. tristate "IP: IPComp transformation"
  330. select INET_XFRM_TUNNEL
  331. select XFRM_IPCOMP
  332. ---help---
  333. Support for IP Payload Compression Protocol (IPComp) (RFC3173),
  334. typically needed for IPsec.
  335. If unsure, say Y.
  336. config INET_XFRM_TUNNEL
  337. tristate
  338. select INET_TUNNEL
  339. default n
  340. config INET_TUNNEL
  341. tristate
  342. default n
  343. config INET_XFRM_MODE_TRANSPORT
  344. tristate "IP: IPsec transport mode"
  345. default y
  346. select XFRM
  347. ---help---
  348. Support for IPsec transport mode.
  349. If unsure, say Y.
  350. config INET_XFRM_MODE_TUNNEL
  351. tristate "IP: IPsec tunnel mode"
  352. default y
  353. select XFRM
  354. ---help---
  355. Support for IPsec tunnel mode.
  356. If unsure, say Y.
  357. config INET_XFRM_MODE_BEET
  358. tristate "IP: IPsec BEET mode"
  359. default y
  360. select XFRM
  361. ---help---
  362. Support for IPsec BEET mode.
  363. If unsure, say Y.
  364. config INET_DIAG
  365. tristate "INET: socket monitoring interface"
  366. default y
  367. ---help---
  368. Support for INET (TCP, DCCP, etc) socket monitoring interface used by
  369. native Linux tools such as ss. ss is included in iproute2, currently
  370. downloadable at:
  371. http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2
  372. If unsure, say Y.
  373. config INET_TCP_DIAG
  374. depends on INET_DIAG
  375. def_tristate INET_DIAG
  376. config INET_UDP_DIAG
  377. tristate "UDP: socket monitoring interface"
  378. depends on INET_DIAG && (IPV6 || IPV6=n)
  379. default n
  380. ---help---
  381. Support for UDP socket monitoring interface used by the ss tool.
  382. If unsure, say Y.
  383. config INET_RAW_DIAG
  384. tristate "RAW: socket monitoring interface"
  385. depends on INET_DIAG && (IPV6 || IPV6=n)
  386. default n
  387. ---help---
  388. Support for RAW socket monitoring interface used by the ss tool.
  389. If unsure, say Y.
  390. config INET_DIAG_DESTROY
  391. bool "INET: allow privileged process to administratively close sockets"
  392. depends on INET_DIAG
  393. default n
  394. ---help---
  395. Provides a SOCK_DESTROY operation that allows privileged processes
  396. (e.g., a connection manager or a network administration tool such as
  397. ss) to close sockets opened by other processes. Closing a socket in
  398. this way interrupts any blocking read/write/connect operations on
  399. the socket and causes future socket calls to behave as if the socket
  400. had been disconnected.
  401. If unsure, say N.
  402. menuconfig TCP_CONG_ADVANCED
  403. bool "TCP: advanced congestion control"
  404. ---help---
  405. Support for selection of various TCP congestion control
  406. modules.
  407. Nearly all users can safely say no here, and a safe default
  408. selection will be made (CUBIC with new Reno as a fallback).
  409. If unsure, say N.
  410. if TCP_CONG_ADVANCED
  411. config TCP_CONG_BIC
  412. tristate "Binary Increase Congestion (BIC) control"
  413. default m
  414. ---help---
  415. BIC-TCP is a sender-side only change that ensures a linear RTT
  416. fairness under large windows while offering both scalability and
  417. bounded TCP-friendliness. The protocol combines two schemes
  418. called additive increase and binary search increase. When the
  419. congestion window is large, additive increase with a large
  420. increment ensures linear RTT fairness as well as good
  421. scalability. Under small congestion windows, binary search
  422. increase provides TCP friendliness.
  423. See http://www.csc.ncsu.edu/faculty/rhee/export/bitcp/
  424. config TCP_CONG_CUBIC
  425. tristate "CUBIC TCP"
  426. default y
  427. ---help---
  428. This is version 2.0 of BIC-TCP which uses a cubic growth function
  429. among other techniques.
  430. See http://www.csc.ncsu.edu/faculty/rhee/export/bitcp/cubic-paper.pdf
  431. config TCP_CONG_WESTWOOD
  432. tristate "TCP Westwood+"
  433. default m
  434. ---help---
  435. TCP Westwood+ is a sender-side only modification of the TCP Reno
  436. protocol stack that optimizes the performance of TCP congestion
  437. control. It is based on end-to-end bandwidth estimation to set
  438. congestion window and slow start threshold after a congestion
  439. episode. Using this estimation, TCP Westwood+ adaptively sets a
  440. slow start threshold and a congestion window which takes into
  441. account the bandwidth used at the time congestion is experienced.
  442. TCP Westwood+ significantly increases fairness wrt TCP Reno in
  443. wired networks and throughput over wireless links.
  444. config TCP_CONG_HTCP
  445. tristate "H-TCP"
  446. default m
  447. ---help---
  448. H-TCP is a send-side only modifications of the TCP Reno
  449. protocol stack that optimizes the performance of TCP
  450. congestion control for high speed network links. It uses a
  451. modeswitch to change the alpha and beta parameters of TCP Reno
  452. based on network conditions and in a way so as to be fair with
  453. other Reno and H-TCP flows.
  454. config TCP_CONG_HSTCP
  455. tristate "High Speed TCP"
  456. default n
  457. ---help---
  458. Sally Floyd's High Speed TCP (RFC 3649) congestion control.
  459. A modification to TCP's congestion control mechanism for use
  460. with large congestion windows. A table indicates how much to
  461. increase the congestion window by when an ACK is received.
  462. For more detail see http://www.icir.org/floyd/hstcp.html
  463. config TCP_CONG_HYBLA
  464. tristate "TCP-Hybla congestion control algorithm"
  465. default n
  466. ---help---
  467. TCP-Hybla is a sender-side only change that eliminates penalization of
  468. long-RTT, large-bandwidth connections, like when satellite legs are
  469. involved, especially when sharing a common bottleneck with normal
  470. terrestrial connections.
  471. config TCP_CONG_VEGAS
  472. tristate "TCP Vegas"
  473. default n
  474. ---help---
  475. TCP Vegas is a sender-side only change to TCP that anticipates
  476. the onset of congestion by estimating the bandwidth. TCP Vegas
  477. adjusts the sending rate by modifying the congestion
  478. window. TCP Vegas should provide less packet loss, but it is
  479. not as aggressive as TCP Reno.
  480. config TCP_CONG_NV
  481. tristate "TCP NV"
  482. default n
  483. ---help---
  484. TCP NV is a follow up to TCP Vegas. It has been modified to deal with
  485. 10G networks, measurement noise introduced by LRO, GRO and interrupt
  486. coalescence. In addition, it will decrease its cwnd multiplicatively
  487. instead of linearly.
  488. Note that in general congestion avoidance (cwnd decreased when # packets
  489. queued grows) cannot coexist with congestion control (cwnd decreased only
  490. when there is packet loss) due to fairness issues. One scenario when they
  491. can coexist safely is when the CA flows have RTTs << CC flows RTTs.
  492. For further details see http://www.brakmo.org/networking/tcp-nv/
  493. config TCP_CONG_SCALABLE
  494. tristate "Scalable TCP"
  495. default n
  496. ---help---
  497. Scalable TCP is a sender-side only change to TCP which uses a
  498. MIMD congestion control algorithm which has some nice scaling
  499. properties, though is known to have fairness issues.
  500. See http://www.deneholme.net/tom/scalable/
  501. config TCP_CONG_LP
  502. tristate "TCP Low Priority"
  503. default n
  504. ---help---
  505. TCP Low Priority (TCP-LP), a distributed algorithm whose goal is
  506. to utilize only the excess network bandwidth as compared to the
  507. ``fair share`` of bandwidth as targeted by TCP.
  508. See http://www-ece.rice.edu/networks/TCP-LP/
  509. config TCP_CONG_VENO
  510. tristate "TCP Veno"
  511. default n
  512. ---help---
  513. TCP Veno is a sender-side only enhancement of TCP to obtain better
  514. throughput over wireless networks. TCP Veno makes use of state
  515. distinguishing to circumvent the difficult judgment of the packet loss
  516. type. TCP Veno cuts down less congestion window in response to random
  517. loss packets.
  518. See <http://ieeexplore.ieee.org/xpl/freeabs_all.jsp?arnumber=1177186>
  519. config TCP_CONG_YEAH
  520. tristate "YeAH TCP"
  521. select TCP_CONG_VEGAS
  522. default n
  523. ---help---
  524. YeAH-TCP is a sender-side high-speed enabled TCP congestion control
  525. algorithm, which uses a mixed loss/delay approach to compute the
  526. congestion window. It's design goals target high efficiency,
  527. internal, RTT and Reno fairness, resilience to link loss while
  528. keeping network elements load as low as possible.
  529. For further details look here:
  530. http://wil.cs.caltech.edu/pfldnet2007/paper/YeAH_TCP.pdf
  531. config TCP_CONG_ILLINOIS
  532. tristate "TCP Illinois"
  533. default n
  534. ---help---
  535. TCP-Illinois is a sender-side modification of TCP Reno for
  536. high speed long delay links. It uses round-trip-time to
  537. adjust the alpha and beta parameters to achieve a higher average
  538. throughput and maintain fairness.
  539. For further details see:
  540. http://www.ews.uiuc.edu/~shaoliu/tcpillinois/index.html
  541. config TCP_CONG_DCTCP
  542. tristate "DataCenter TCP (DCTCP)"
  543. default n
  544. ---help---
  545. DCTCP leverages Explicit Congestion Notification (ECN) in the network to
  546. provide multi-bit feedback to the end hosts. It is designed to provide:
  547. - High burst tolerance (incast due to partition/aggregate),
  548. - Low latency (short flows, queries),
  549. - High throughput (continuous data updates, large file transfers) with
  550. commodity, shallow-buffered switches.
  551. All switches in the data center network running DCTCP must support
  552. ECN marking and be configured for marking when reaching defined switch
  553. buffer thresholds. The default ECN marking threshold heuristic for
  554. DCTCP on switches is 20 packets (30KB) at 1Gbps, and 65 packets
  555. (~100KB) at 10Gbps, but might need further careful tweaking.
  556. For further details see:
  557. http://simula.stanford.edu/~alizade/Site/DCTCP_files/dctcp-final.pdf
  558. config TCP_CONG_CDG
  559. tristate "CAIA Delay-Gradient (CDG)"
  560. default n
  561. ---help---
  562. CAIA Delay-Gradient (CDG) is a TCP congestion control that modifies
  563. the TCP sender in order to:
  564. o Use the delay gradient as a congestion signal.
  565. o Back off with an average probability that is independent of the RTT.
  566. o Coexist with flows that use loss-based congestion control.
  567. o Tolerate packet loss unrelated to congestion.
  568. For further details see:
  569. D.A. Hayes and G. Armitage. "Revisiting TCP congestion control using
  570. delay gradients." In Networking 2011. Preprint: http://goo.gl/No3vdg
  571. config TCP_CONG_BBR
  572. tristate "BBR TCP"
  573. default n
  574. ---help---
  575. BBR (Bottleneck Bandwidth and RTT) TCP congestion control aims to
  576. maximize network utilization and minimize queues. It builds an explicit
  577. model of the the bottleneck delivery rate and path round-trip
  578. propagation delay. It tolerates packet loss and delay unrelated to
  579. congestion. It can operate over LAN, WAN, cellular, wifi, or cable
  580. modem links. It can coexist with flows that use loss-based congestion
  581. control, and can operate with shallow buffers, deep buffers,
  582. bufferbloat, policers, or AQM schemes that do not provide a delay
  583. signal. It requires the fq ("Fair Queue") pacing packet scheduler.
  584. choice
  585. prompt "Default TCP congestion control"
  586. default DEFAULT_CUBIC
  587. help
  588. Select the TCP congestion control that will be used by default
  589. for all connections.
  590. config DEFAULT_BIC
  591. bool "Bic" if TCP_CONG_BIC=y
  592. config DEFAULT_CUBIC
  593. bool "Cubic" if TCP_CONG_CUBIC=y
  594. config DEFAULT_HTCP
  595. bool "Htcp" if TCP_CONG_HTCP=y
  596. config DEFAULT_HYBLA
  597. bool "Hybla" if TCP_CONG_HYBLA=y
  598. config DEFAULT_VEGAS
  599. bool "Vegas" if TCP_CONG_VEGAS=y
  600. config DEFAULT_VENO
  601. bool "Veno" if TCP_CONG_VENO=y
  602. config DEFAULT_WESTWOOD
  603. bool "Westwood" if TCP_CONG_WESTWOOD=y
  604. config DEFAULT_DCTCP
  605. bool "DCTCP" if TCP_CONG_DCTCP=y
  606. config DEFAULT_CDG
  607. bool "CDG" if TCP_CONG_CDG=y
  608. config DEFAULT_BBR
  609. bool "BBR" if TCP_CONG_BBR=y
  610. config DEFAULT_RENO
  611. bool "Reno"
  612. endchoice
  613. endif
  614. config TCP_CONG_CUBIC
  615. tristate
  616. depends on !TCP_CONG_ADVANCED
  617. default y
  618. config DEFAULT_TCP_CONG
  619. string
  620. default "bic" if DEFAULT_BIC
  621. default "cubic" if DEFAULT_CUBIC
  622. default "htcp" if DEFAULT_HTCP
  623. default "hybla" if DEFAULT_HYBLA
  624. default "vegas" if DEFAULT_VEGAS
  625. default "westwood" if DEFAULT_WESTWOOD
  626. default "veno" if DEFAULT_VENO
  627. default "reno" if DEFAULT_RENO
  628. default "dctcp" if DEFAULT_DCTCP
  629. default "cdg" if DEFAULT_CDG
  630. default "bbr" if DEFAULT_BBR
  631. default "cubic"
  632. config TCP_MD5SIG
  633. bool "TCP: MD5 Signature Option support (RFC2385)"
  634. select CRYPTO
  635. select CRYPTO_MD5
  636. ---help---
  637. RFC2385 specifies a method of giving MD5 protection to TCP sessions.
  638. Its main (only?) use is to protect BGP sessions between core routers
  639. on the Internet.
  640. If unsure, say N.