Kconfig 22 KB

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