Kconfig 22 KB

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