Kconfig 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658
  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/>. Information about the multicast
  13. capabilities of the various network cards is contained in
  14. <file:Documentation/networking/multicast.txt>. For most people, it's
  15. safe to say N.
  16. config IP_ADVANCED_ROUTER
  17. bool "IP: advanced router"
  18. ---help---
  19. If you intend to run your Linux box mostly as a router, i.e. as a
  20. computer that forwards and redistributes network packets, say Y; you
  21. will then be presented with several options that allow more precise
  22. control about the routing process.
  23. The answer to this question won't directly affect the kernel:
  24. answering N will just cause the configurator to skip all the
  25. questions about advanced routing.
  26. Note that your box can only act as a router if you enable IP
  27. forwarding in your kernel; you can do that by saying Y to "/proc
  28. file system support" and "Sysctl support" below and executing the
  29. line
  30. echo "1" > /proc/sys/net/ipv4/ip_forward
  31. at boot time after the /proc file system has been mounted.
  32. If you turn on IP forwarding, you should consider the rp_filter, which
  33. automatically rejects incoming packets if the routing table entry
  34. for their source address doesn't match the network interface they're
  35. arriving on. This has security advantages because it prevents the
  36. so-called IP spoofing, however it can pose problems if you use
  37. asymmetric routing (packets from you to a host take a different path
  38. than packets from that host to you) or if you operate a non-routing
  39. host which has several IP addresses on different interfaces. To turn
  40. rp_filter on use:
  41. echo 1 > /proc/sys/net/ipv4/conf/<device>/rp_filter
  42. or
  43. echo 1 > /proc/sys/net/ipv4/conf/all/rp_filter
  44. Note that some distributions enable it in startup scripts.
  45. For details about rp_filter strict and loose mode read
  46. <file:Documentation/networking/ip-sysctl.txt>.
  47. If unsure, say N here.
  48. choice
  49. prompt "Choose IP: FIB lookup algorithm (choose FIB_HASH if unsure)"
  50. depends on IP_ADVANCED_ROUTER
  51. default ASK_IP_FIB_HASH
  52. config ASK_IP_FIB_HASH
  53. bool "FIB_HASH"
  54. ---help---
  55. Current FIB is very proven and good enough for most users.
  56. config IP_FIB_TRIE
  57. bool "FIB_TRIE"
  58. ---help---
  59. Use new experimental LC-trie as FIB lookup algorithm.
  60. This improves lookup performance if you have a large
  61. number of routes.
  62. LC-trie is a longest matching prefix lookup algorithm which
  63. performs better than FIB_HASH for large routing tables.
  64. But, it consumes more memory and is more complex.
  65. LC-trie is described in:
  66. IP-address lookup using LC-tries. Stefan Nilsson and Gunnar Karlsson
  67. IEEE Journal on Selected Areas in Communications, 17(6):1083-1092,
  68. June 1999
  69. An experimental study of compression methods for dynamic tries
  70. Stefan Nilsson and Matti Tikkanen. Algorithmica, 33(1):19-33, 2002.
  71. <http://www.csc.kth.se/~snilsson/software/dyntrie2/>
  72. endchoice
  73. config IP_FIB_HASH
  74. def_bool ASK_IP_FIB_HASH || !IP_ADVANCED_ROUTER
  75. config IP_FIB_TRIE_STATS
  76. bool "FIB TRIE statistics"
  77. depends on IP_FIB_TRIE
  78. ---help---
  79. Keep track of statistics on structure of FIB TRIE table.
  80. Useful for testing and measuring TRIE performance.
  81. config IP_MULTIPLE_TABLES
  82. bool "IP: policy routing"
  83. depends on IP_ADVANCED_ROUTER
  84. select FIB_RULES
  85. ---help---
  86. Normally, a router decides what to do with a received packet based
  87. solely on the packet's final destination address. If you say Y here,
  88. the Linux router will also be able to take the packet's source
  89. address into account. Furthermore, the TOS (Type-Of-Service) field
  90. of the packet can be used for routing decisions as well.
  91. If you are interested in this, please see the preliminary
  92. documentation at <http://www.compendium.com.ar/policy-routing.txt>
  93. and <ftp://post.tepkom.ru/pub/vol2/Linux/docs/advanced-routing.tex>.
  94. You will need supporting software from
  95. <ftp://ftp.tux.org/pub/net/ip-routing/>.
  96. If unsure, say N.
  97. config IP_ROUTE_MULTIPATH
  98. bool "IP: equal cost multipath"
  99. depends on IP_ADVANCED_ROUTER
  100. help
  101. Normally, the routing tables specify a single action to be taken in
  102. a deterministic manner for a given packet. If you say Y here
  103. however, it becomes possible to attach several actions to a packet
  104. pattern, in effect specifying several alternative paths to travel
  105. for those packets. The router considers all these paths to be of
  106. equal "cost" and chooses one of them in a non-deterministic fashion
  107. if a matching packet arrives.
  108. config IP_ROUTE_VERBOSE
  109. bool "IP: verbose route monitoring"
  110. depends on IP_ADVANCED_ROUTER
  111. help
  112. If you say Y here, which is recommended, then the kernel will print
  113. verbose messages regarding the routing, for example warnings about
  114. received packets which look strange and could be evidence of an
  115. attack or a misconfigured system somewhere. The information is
  116. handled by the klogd daemon which is responsible for kernel messages
  117. ("man klogd").
  118. config IP_PNP
  119. bool "IP: kernel level autoconfiguration"
  120. help
  121. This enables automatic configuration of IP addresses of devices and
  122. of the routing table during kernel boot, based on either information
  123. supplied on the kernel command line or by BOOTP or RARP protocols.
  124. You need to say Y only for diskless machines requiring network
  125. access to boot (in which case you want to say Y to "Root file system
  126. on NFS" as well), because all other machines configure the network
  127. in their startup scripts.
  128. config IP_PNP_DHCP
  129. bool "IP: DHCP support"
  130. depends on IP_PNP
  131. ---help---
  132. If you want your Linux box to mount its whole root file system (the
  133. one containing the directory /) from some other computer over the
  134. net via NFS and you want the IP address of your computer to be
  135. discovered automatically at boot time using the DHCP protocol (a
  136. special protocol designed for doing this job), say Y here. In case
  137. the boot ROM of your network card was designed for booting Linux and
  138. does DHCP itself, providing all necessary information on the kernel
  139. command line, you can say N here.
  140. If unsure, say Y. Note that if you want to use DHCP, a DHCP server
  141. must be operating on your network. Read
  142. <file:Documentation/filesystems/nfs/nfsroot.txt> for details.
  143. config IP_PNP_BOOTP
  144. bool "IP: BOOTP support"
  145. depends on IP_PNP
  146. ---help---
  147. If you want your Linux box to mount its whole root file system (the
  148. one containing the directory /) from some other computer over the
  149. net via NFS and you want the IP address of your computer to be
  150. discovered automatically at boot time using the BOOTP protocol (a
  151. special protocol designed for doing this job), say Y here. In case
  152. the boot ROM of your network card was designed for booting Linux and
  153. does BOOTP itself, providing all necessary information on the kernel
  154. command line, you can say N here. If unsure, say Y. Note that if you
  155. want to use BOOTP, a BOOTP server must be operating on your network.
  156. Read <file:Documentation/filesystems/nfs/nfsroot.txt> for details.
  157. config IP_PNP_RARP
  158. bool "IP: RARP support"
  159. depends on IP_PNP
  160. help
  161. If you want your Linux box to mount its whole root file system (the
  162. one containing the directory /) from some other computer over the
  163. net via NFS and you want the IP address of your computer to be
  164. discovered automatically at boot time using the RARP protocol (an
  165. older protocol which is being obsoleted by BOOTP and DHCP), say Y
  166. here. Note that if you want to use RARP, a RARP server must be
  167. operating on your network. Read
  168. <file:Documentation/filesystems/nfs/nfsroot.txt> for details.
  169. # not yet ready..
  170. # bool ' IP: ARP support' CONFIG_IP_PNP_ARP
  171. config NET_IPIP
  172. tristate "IP: tunneling"
  173. select INET_TUNNEL
  174. ---help---
  175. Tunneling means encapsulating data of one protocol type within
  176. another protocol and sending it over a channel that understands the
  177. encapsulating protocol. This particular tunneling driver implements
  178. encapsulation of IP within IP, which sounds kind of pointless, but
  179. can be useful if you want to make your (or some other) machine
  180. appear on a different network than it physically is, or to use
  181. mobile-IP facilities (allowing laptops to seamlessly move between
  182. networks without changing their IP addresses).
  183. Saying Y to this option will produce two modules ( = code which can
  184. be inserted in and removed from the running kernel whenever you
  185. want). Most people won't need this and can say N.
  186. config NET_IPGRE_DEMUX
  187. tristate "IP: GRE demultiplexer"
  188. help
  189. This is helper module to demultiplex GRE packets on GRE version field criteria.
  190. Required by ip_gre and pptp modules.
  191. config NET_IPGRE
  192. tristate "IP: GRE tunnels over IP"
  193. depends on (IPV6 || IPV6=n) && NET_IPGRE_DEMUX
  194. help
  195. Tunneling means encapsulating data of one protocol type within
  196. another protocol and sending it over a channel that understands the
  197. encapsulating protocol. This particular tunneling driver implements
  198. GRE (Generic Routing Encapsulation) and at this time allows
  199. encapsulating of IPv4 or IPv6 over existing IPv4 infrastructure.
  200. This driver is useful if the other endpoint is a Cisco router: Cisco
  201. likes GRE much better than the other Linux tunneling driver ("IP
  202. tunneling" above). In addition, GRE allows multicast redistribution
  203. through the tunnel.
  204. config NET_IPGRE_BROADCAST
  205. bool "IP: broadcast GRE over IP"
  206. depends on IP_MULTICAST && NET_IPGRE
  207. help
  208. One application of GRE/IP is to construct a broadcast WAN (Wide Area
  209. Network), which looks like a normal Ethernet LAN (Local Area
  210. Network), but can be distributed all over the Internet. If you want
  211. to do that, say Y here and to "IP multicast routing" below.
  212. config IP_MROUTE
  213. bool "IP: multicast routing"
  214. depends on IP_MULTICAST
  215. help
  216. This is used if you want your machine to act as a router for IP
  217. packets that have several destination addresses. It is needed on the
  218. MBONE, a high bandwidth network on top of the Internet which carries
  219. audio and video broadcasts. In order to do that, you would most
  220. likely run the program mrouted. Information about the multicast
  221. capabilities of the various network cards is contained in
  222. <file:Documentation/networking/multicast.txt>. If you haven't heard
  223. about it, you don't need it.
  224. config IP_MROUTE_MULTIPLE_TABLES
  225. bool "IP: multicast policy routing"
  226. depends on IP_MROUTE && IP_ADVANCED_ROUTER
  227. select FIB_RULES
  228. help
  229. Normally, a multicast router runs a userspace daemon and decides
  230. what to do with a multicast packet based on the source and
  231. destination addresses. If you say Y here, the multicast router
  232. will also be able to take interfaces and packet marks into
  233. account and run multiple instances of userspace daemons
  234. simultaneously, each one handling a single table.
  235. If unsure, say N.
  236. config IP_PIMSM_V1
  237. bool "IP: PIM-SM version 1 support"
  238. depends on IP_MROUTE
  239. help
  240. Kernel side support for Sparse Mode PIM (Protocol Independent
  241. Multicast) version 1. This multicast routing protocol is used widely
  242. because Cisco supports it. You need special software to use it
  243. (pimd-v1). Please see <http://netweb.usc.edu/pim/> for more
  244. information about PIM.
  245. Say Y if you want to use PIM-SM v1. Note that you can say N here if
  246. you just want to use Dense Mode PIM.
  247. config IP_PIMSM_V2
  248. bool "IP: PIM-SM version 2 support"
  249. depends on IP_MROUTE
  250. help
  251. Kernel side support for Sparse Mode PIM version 2. In order to use
  252. this, you need an experimental routing daemon supporting it (pimd or
  253. gated-5). This routing protocol is not used widely, so say N unless
  254. you want to play with it.
  255. config ARPD
  256. bool "IP: ARP daemon support"
  257. ---help---
  258. The kernel maintains an internal cache which maps IP addresses to
  259. hardware addresses on the local network, so that Ethernet/Token Ring/
  260. etc. frames are sent to the proper address on the physical networking
  261. layer. Normally, kernel uses the ARP protocol to resolve these
  262. mappings.
  263. Saying Y here adds support to have an user space daemon to do this
  264. resolution instead. This is useful for implementing an alternate
  265. address resolution protocol (e.g. NHRP on mGRE tunnels) and also for
  266. testing purposes.
  267. If unsure, say N.
  268. config SYN_COOKIES
  269. bool "IP: TCP syncookie support"
  270. ---help---
  271. Normal TCP/IP networking is open to an attack known as "SYN
  272. flooding". This denial-of-service attack prevents legitimate remote
  273. users from being able to connect to your computer during an ongoing
  274. attack and requires very little work from the attacker, who can
  275. operate from anywhere on the Internet.
  276. SYN cookies provide protection against this type of attack. If you
  277. say Y here, the TCP/IP stack will use a cryptographic challenge
  278. protocol known as "SYN cookies" to enable legitimate users to
  279. continue to connect, even when your machine is under attack. There
  280. is no need for the legitimate users to change their TCP/IP software;
  281. SYN cookies work transparently to them. For technical information
  282. about SYN cookies, check out <http://cr.yp.to/syncookies.html>.
  283. If you are SYN flooded, the source address reported by the kernel is
  284. likely to have been forged by the attacker; it is only reported as
  285. an aid in tracing the packets to their actual source and should not
  286. be taken as absolute truth.
  287. SYN cookies may prevent correct error reporting on clients when the
  288. server is really overloaded. If this happens frequently better turn
  289. them off.
  290. If you say Y here, you can disable SYN cookies at run time by
  291. saying Y to "/proc file system support" and
  292. "Sysctl support" below and executing the command
  293. echo 0 > /proc/sys/net/ipv4/tcp_syncookies
  294. after the /proc file system has been mounted.
  295. If unsure, say N.
  296. config INET_AH
  297. tristate "IP: AH transformation"
  298. select XFRM
  299. select CRYPTO
  300. select CRYPTO_HMAC
  301. select CRYPTO_MD5
  302. select CRYPTO_SHA1
  303. ---help---
  304. Support for IPsec AH.
  305. If unsure, say Y.
  306. config INET_ESP
  307. tristate "IP: ESP transformation"
  308. select XFRM
  309. select CRYPTO
  310. select CRYPTO_AUTHENC
  311. select CRYPTO_HMAC
  312. select CRYPTO_MD5
  313. select CRYPTO_CBC
  314. select CRYPTO_SHA1
  315. select CRYPTO_DES
  316. ---help---
  317. Support for IPsec ESP.
  318. If unsure, say Y.
  319. config INET_IPCOMP
  320. tristate "IP: IPComp transformation"
  321. select INET_XFRM_TUNNEL
  322. select XFRM_IPCOMP
  323. ---help---
  324. Support for IP Payload Compression Protocol (IPComp) (RFC3173),
  325. typically needed for IPsec.
  326. If unsure, say Y.
  327. config INET_XFRM_TUNNEL
  328. tristate
  329. select INET_TUNNEL
  330. default n
  331. config INET_TUNNEL
  332. tristate
  333. default n
  334. config INET_XFRM_MODE_TRANSPORT
  335. tristate "IP: IPsec transport mode"
  336. default y
  337. select XFRM
  338. ---help---
  339. Support for IPsec transport mode.
  340. If unsure, say Y.
  341. config INET_XFRM_MODE_TUNNEL
  342. tristate "IP: IPsec tunnel mode"
  343. default y
  344. select XFRM
  345. ---help---
  346. Support for IPsec tunnel mode.
  347. If unsure, say Y.
  348. config INET_XFRM_MODE_BEET
  349. tristate "IP: IPsec BEET mode"
  350. default y
  351. select XFRM
  352. ---help---
  353. Support for IPsec BEET mode.
  354. If unsure, say Y.
  355. config INET_LRO
  356. tristate "Large Receive Offload (ipv4/tcp)"
  357. default y
  358. ---help---
  359. Support for Large Receive Offload (ipv4/tcp).
  360. If unsure, say Y.
  361. config INET_DIAG
  362. tristate "INET: socket monitoring interface"
  363. default y
  364. ---help---
  365. Support for INET (TCP, DCCP, etc) socket monitoring interface used by
  366. native Linux tools such as ss. ss is included in iproute2, currently
  367. downloadable at <http://linux-net.osdl.org/index.php/Iproute2>.
  368. If unsure, say Y.
  369. config INET_TCP_DIAG
  370. depends on INET_DIAG
  371. def_tristate INET_DIAG
  372. menuconfig TCP_CONG_ADVANCED
  373. bool "TCP: advanced congestion control"
  374. ---help---
  375. Support for selection of various TCP congestion control
  376. modules.
  377. Nearly all users can safely say no here, and a safe default
  378. selection will be made (CUBIC with new Reno as a fallback).
  379. If unsure, say N.
  380. if TCP_CONG_ADVANCED
  381. config TCP_CONG_BIC
  382. tristate "Binary Increase Congestion (BIC) control"
  383. default m
  384. ---help---
  385. BIC-TCP is a sender-side only change that ensures a linear RTT
  386. fairness under large windows while offering both scalability and
  387. bounded TCP-friendliness. The protocol combines two schemes
  388. called additive increase and binary search increase. When the
  389. congestion window is large, additive increase with a large
  390. increment ensures linear RTT fairness as well as good
  391. scalability. Under small congestion windows, binary search
  392. increase provides TCP friendliness.
  393. See http://www.csc.ncsu.edu/faculty/rhee/export/bitcp/
  394. config TCP_CONG_CUBIC
  395. tristate "CUBIC TCP"
  396. default y
  397. ---help---
  398. This is version 2.0 of BIC-TCP which uses a cubic growth function
  399. among other techniques.
  400. See http://www.csc.ncsu.edu/faculty/rhee/export/bitcp/cubic-paper.pdf
  401. config TCP_CONG_WESTWOOD
  402. tristate "TCP Westwood+"
  403. default m
  404. ---help---
  405. TCP Westwood+ is a sender-side only modification of the TCP Reno
  406. protocol stack that optimizes the performance of TCP congestion
  407. control. It is based on end-to-end bandwidth estimation to set
  408. congestion window and slow start threshold after a congestion
  409. episode. Using this estimation, TCP Westwood+ adaptively sets a
  410. slow start threshold and a congestion window which takes into
  411. account the bandwidth used at the time congestion is experienced.
  412. TCP Westwood+ significantly increases fairness wrt TCP Reno in
  413. wired networks and throughput over wireless links.
  414. config TCP_CONG_HTCP
  415. tristate "H-TCP"
  416. default m
  417. ---help---
  418. H-TCP is a send-side only modifications of the TCP Reno
  419. protocol stack that optimizes the performance of TCP
  420. congestion control for high speed network links. It uses a
  421. modeswitch to change the alpha and beta parameters of TCP Reno
  422. based on network conditions and in a way so as to be fair with
  423. other Reno and H-TCP flows.
  424. config TCP_CONG_HSTCP
  425. tristate "High Speed TCP"
  426. depends on EXPERIMENTAL
  427. default n
  428. ---help---
  429. Sally Floyd's High Speed TCP (RFC 3649) congestion control.
  430. A modification to TCP's congestion control mechanism for use
  431. with large congestion windows. A table indicates how much to
  432. increase the congestion window by when an ACK is received.
  433. For more detail see http://www.icir.org/floyd/hstcp.html
  434. config TCP_CONG_HYBLA
  435. tristate "TCP-Hybla congestion control algorithm"
  436. depends on EXPERIMENTAL
  437. default n
  438. ---help---
  439. TCP-Hybla is a sender-side only change that eliminates penalization of
  440. long-RTT, large-bandwidth connections, like when satellite legs are
  441. involved, especially when sharing a common bottleneck with normal
  442. terrestrial connections.
  443. config TCP_CONG_VEGAS
  444. tristate "TCP Vegas"
  445. depends on EXPERIMENTAL
  446. default n
  447. ---help---
  448. TCP Vegas is a sender-side only change to TCP that anticipates
  449. the onset of congestion by estimating the bandwidth. TCP Vegas
  450. adjusts the sending rate by modifying the congestion
  451. window. TCP Vegas should provide less packet loss, but it is
  452. not as aggressive as TCP Reno.
  453. config TCP_CONG_SCALABLE
  454. tristate "Scalable TCP"
  455. depends on EXPERIMENTAL
  456. default n
  457. ---help---
  458. Scalable TCP is a sender-side only change to TCP which uses a
  459. MIMD congestion control algorithm which has some nice scaling
  460. properties, though is known to have fairness issues.
  461. See http://www.deneholme.net/tom/scalable/
  462. config TCP_CONG_LP
  463. tristate "TCP Low Priority"
  464. depends on EXPERIMENTAL
  465. default n
  466. ---help---
  467. TCP Low Priority (TCP-LP), a distributed algorithm whose goal is
  468. to utilize only the excess network bandwidth as compared to the
  469. ``fair share`` of bandwidth as targeted by TCP.
  470. See http://www-ece.rice.edu/networks/TCP-LP/
  471. config TCP_CONG_VENO
  472. tristate "TCP Veno"
  473. depends on EXPERIMENTAL
  474. default n
  475. ---help---
  476. TCP Veno is a sender-side only enhancement of TCP to obtain better
  477. throughput over wireless networks. TCP Veno makes use of state
  478. distinguishing to circumvent the difficult judgment of the packet loss
  479. type. TCP Veno cuts down less congestion window in response to random
  480. loss packets.
  481. See <http://ieeexplore.ieee.org/xpl/freeabs_all.jsp?arnumber=1177186>
  482. config TCP_CONG_YEAH
  483. tristate "YeAH TCP"
  484. depends on EXPERIMENTAL
  485. select TCP_CONG_VEGAS
  486. default n
  487. ---help---
  488. YeAH-TCP is a sender-side high-speed enabled TCP congestion control
  489. algorithm, which uses a mixed loss/delay approach to compute the
  490. congestion window. It's design goals target high efficiency,
  491. internal, RTT and Reno fairness, resilience to link loss while
  492. keeping network elements load as low as possible.
  493. For further details look here:
  494. http://wil.cs.caltech.edu/pfldnet2007/paper/YeAH_TCP.pdf
  495. config TCP_CONG_ILLINOIS
  496. tristate "TCP Illinois"
  497. depends on EXPERIMENTAL
  498. default n
  499. ---help---
  500. TCP-Illinois is a sender-side modification of TCP Reno for
  501. high speed long delay links. It uses round-trip-time to
  502. adjust the alpha and beta parameters to achieve a higher average
  503. throughput and maintain fairness.
  504. For further details see:
  505. http://www.ews.uiuc.edu/~shaoliu/tcpillinois/index.html
  506. choice
  507. prompt "Default TCP congestion control"
  508. default DEFAULT_CUBIC
  509. help
  510. Select the TCP congestion control that will be used by default
  511. for all connections.
  512. config DEFAULT_BIC
  513. bool "Bic" if TCP_CONG_BIC=y
  514. config DEFAULT_CUBIC
  515. bool "Cubic" if TCP_CONG_CUBIC=y
  516. config DEFAULT_HTCP
  517. bool "Htcp" if TCP_CONG_HTCP=y
  518. config DEFAULT_HYBLA
  519. bool "Hybla" if TCP_CONG_HYBLA=y
  520. config DEFAULT_VEGAS
  521. bool "Vegas" if TCP_CONG_VEGAS=y
  522. config DEFAULT_VENO
  523. bool "Veno" if TCP_CONG_VENO=y
  524. config DEFAULT_WESTWOOD
  525. bool "Westwood" if TCP_CONG_WESTWOOD=y
  526. config DEFAULT_RENO
  527. bool "Reno"
  528. endchoice
  529. endif
  530. config TCP_CONG_CUBIC
  531. tristate
  532. depends on !TCP_CONG_ADVANCED
  533. default y
  534. config DEFAULT_TCP_CONG
  535. string
  536. default "bic" if DEFAULT_BIC
  537. default "cubic" if DEFAULT_CUBIC
  538. default "htcp" if DEFAULT_HTCP
  539. default "hybla" if DEFAULT_HYBLA
  540. default "vegas" if DEFAULT_VEGAS
  541. default "westwood" if DEFAULT_WESTWOOD
  542. default "veno" if DEFAULT_VENO
  543. default "reno" if DEFAULT_RENO
  544. default "cubic"
  545. config TCP_MD5SIG
  546. bool "TCP: MD5 Signature Option support (RFC2385) (EXPERIMENTAL)"
  547. depends on EXPERIMENTAL
  548. select CRYPTO
  549. select CRYPTO_MD5
  550. ---help---
  551. RFC2385 specifies a method of giving MD5 protection to TCP sessions.
  552. Its main (only?) use is to protect BGP sessions between core routers
  553. on the Internet.
  554. If unsure, say N.