Kconfig 22 KB

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