Kconfig 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636
  1. #
  2. # IP configuration
  3. #
  4. config IP_MULTICAST
  5. bool "IP: multicasting"
  6. help
  7. This is code for addressing several networked computers at once,
  8. enlarging your kernel by about 2 KB. You need multicasting if you
  9. intend to participate in the MBONE, a high bandwidth network on top
  10. of the Internet which carries audio and video broadcasts. More
  11. information about the MBONE is on the WWW at
  12. <http://www.savetz.com/mbone/>. For most people, it's safe to say N.
  13. config IP_ADVANCED_ROUTER
  14. bool "IP: advanced router"
  15. ---help---
  16. If you intend to run your Linux box mostly as a router, i.e. as a
  17. computer that forwards and redistributes network packets, say Y; you
  18. will then be presented with several options that allow more precise
  19. control about the routing process.
  20. The answer to this question won't directly affect the kernel:
  21. answering N will just cause the configurator to skip all the
  22. questions about advanced routing.
  23. Note that your box can only act as a router if you enable IP
  24. forwarding in your kernel; you can do that by saying Y to "/proc
  25. file system support" and "Sysctl support" below and executing the
  26. line
  27. echo "1" > /proc/sys/net/ipv4/ip_forward
  28. at boot time after the /proc file system has been mounted.
  29. If you turn on IP forwarding, you should consider the rp_filter, which
  30. automatically rejects incoming packets if the routing table entry
  31. for their source address doesn't match the network interface they're
  32. arriving on. This has security advantages because it prevents the
  33. so-called IP spoofing, however it can pose problems if you use
  34. asymmetric routing (packets from you to a host take a different path
  35. than packets from that host to you) or if you operate a non-routing
  36. host which has several IP addresses on different interfaces. To turn
  37. rp_filter on use:
  38. echo 1 > /proc/sys/net/ipv4/conf/<device>/rp_filter
  39. or
  40. echo 1 > /proc/sys/net/ipv4/conf/all/rp_filter
  41. Note that some distributions enable it in startup scripts.
  42. For details about rp_filter strict and loose mode read
  43. <file:Documentation/networking/ip-sysctl.txt>.
  44. If unsure, say N here.
  45. config IP_FIB_TRIE_STATS
  46. bool "FIB TRIE statistics"
  47. depends on IP_ADVANCED_ROUTER
  48. ---help---
  49. Keep track of statistics on structure of FIB TRIE table.
  50. Useful for testing and measuring TRIE performance.
  51. config IP_MULTIPLE_TABLES
  52. bool "IP: policy routing"
  53. depends on IP_ADVANCED_ROUTER
  54. select FIB_RULES
  55. ---help---
  56. Normally, a router decides what to do with a received packet based
  57. solely on the packet's final destination address. If you say Y here,
  58. the Linux router will also be able to take the packet's source
  59. address into account. Furthermore, the TOS (Type-Of-Service) field
  60. of the packet can be used for routing decisions as well.
  61. If you are interested in this, please see the preliminary
  62. documentation at <http://www.compendium.com.ar/policy-routing.txt>
  63. and <ftp://post.tepkom.ru/pub/vol2/Linux/docs/advanced-routing.tex>.
  64. You will need supporting software from
  65. <ftp://ftp.tux.org/pub/net/ip-routing/>.
  66. If unsure, say N.
  67. config IP_ROUTE_MULTIPATH
  68. bool "IP: equal cost multipath"
  69. depends on IP_ADVANCED_ROUTER
  70. help
  71. Normally, the routing tables specify a single action to be taken in
  72. a deterministic manner for a given packet. If you say Y here
  73. however, it becomes possible to attach several actions to a packet
  74. pattern, in effect specifying several alternative paths to travel
  75. for those packets. The router considers all these paths to be of
  76. equal "cost" and chooses one of them in a non-deterministic fashion
  77. if a matching packet arrives.
  78. config IP_ROUTE_VERBOSE
  79. bool "IP: verbose route monitoring"
  80. depends on IP_ADVANCED_ROUTER
  81. help
  82. If you say Y here, which is recommended, then the kernel will print
  83. verbose messages regarding the routing, for example warnings about
  84. received packets which look strange and could be evidence of an
  85. attack or a misconfigured system somewhere. The information is
  86. handled by the klogd daemon which is responsible for kernel messages
  87. ("man klogd").
  88. config IP_ROUTE_CLASSID
  89. bool
  90. config IP_PNP
  91. bool "IP: kernel level autoconfiguration"
  92. help
  93. This enables automatic configuration of IP addresses of devices and
  94. of the routing table during kernel boot, based on either information
  95. supplied on the kernel command line or by BOOTP or RARP protocols.
  96. You need to say Y only for diskless machines requiring network
  97. access to boot (in which case you want to say Y to "Root file system
  98. on NFS" as well), because all other machines configure the network
  99. in their startup scripts.
  100. config IP_PNP_DHCP
  101. bool "IP: DHCP support"
  102. depends on IP_PNP
  103. ---help---
  104. If you want your Linux box to mount its whole root file system (the
  105. one containing the directory /) from some other computer over the
  106. net via NFS and you want the IP address of your computer to be
  107. discovered automatically at boot time using the DHCP protocol (a
  108. special protocol designed for doing this job), say Y here. In case
  109. the boot ROM of your network card was designed for booting Linux and
  110. does DHCP itself, providing all necessary information on the kernel
  111. command line, you can say N here.
  112. If unsure, say Y. Note that if you want to use DHCP, a DHCP server
  113. must be operating on your network. Read
  114. <file:Documentation/filesystems/nfs/nfsroot.txt> for details.
  115. config IP_PNP_BOOTP
  116. bool "IP: BOOTP support"
  117. depends on IP_PNP
  118. ---help---
  119. If you want your Linux box to mount its whole root file system (the
  120. one containing the directory /) from some other computer over the
  121. net via NFS and you want the IP address of your computer to be
  122. discovered automatically at boot time using the BOOTP protocol (a
  123. special protocol designed for doing this job), say Y here. In case
  124. the boot ROM of your network card was designed for booting Linux and
  125. does BOOTP itself, providing all necessary information on the kernel
  126. command line, you can say N here. If unsure, say Y. Note that if you
  127. want to use BOOTP, a BOOTP server must be operating on your network.
  128. Read <file:Documentation/filesystems/nfs/nfsroot.txt> for details.
  129. config IP_PNP_RARP
  130. bool "IP: RARP support"
  131. depends on IP_PNP
  132. help
  133. If you want your Linux box to mount its whole root file system (the
  134. one containing the directory /) from some other computer over the
  135. net via NFS and you want the IP address of your computer to be
  136. discovered automatically at boot time using the RARP protocol (an
  137. older protocol which is being obsoleted by BOOTP and DHCP), say Y
  138. here. Note that if you want to use RARP, a RARP server must be
  139. operating on your network. Read
  140. <file:Documentation/filesystems/nfs/nfsroot.txt> for details.
  141. config NET_IPIP
  142. tristate "IP: tunneling"
  143. select INET_TUNNEL
  144. select NET_IP_TUNNEL
  145. ---help---
  146. Tunneling means encapsulating data of one protocol type within
  147. another protocol and sending it over a channel that understands the
  148. encapsulating protocol. This particular tunneling driver implements
  149. encapsulation of IP within IP, which sounds kind of pointless, but
  150. can be useful if you want to make your (or some other) machine
  151. appear on a different network than it physically is, or to use
  152. mobile-IP facilities (allowing laptops to seamlessly move between
  153. networks without changing their IP addresses).
  154. Saying Y to this option will produce two modules ( = code which can
  155. be inserted in and removed from the running kernel whenever you
  156. want). Most people won't need this and can say N.
  157. config NET_IPGRE_DEMUX
  158. tristate "IP: GRE demultiplexer"
  159. help
  160. This is helper module to demultiplex GRE packets on GRE version field criteria.
  161. Required by ip_gre and pptp modules.
  162. config NET_IP_TUNNEL
  163. tristate
  164. default n
  165. config NET_IPGRE
  166. tristate "IP: GRE tunnels over IP"
  167. depends on (IPV6 || IPV6=n) && NET_IPGRE_DEMUX
  168. select NET_IP_TUNNEL
  169. help
  170. Tunneling means encapsulating data of one protocol type within
  171. another protocol and sending it over a channel that understands the
  172. encapsulating protocol. This particular tunneling driver implements
  173. GRE (Generic Routing Encapsulation) and at this time allows
  174. encapsulating of IPv4 or IPv6 over existing IPv4 infrastructure.
  175. This driver is useful if the other endpoint is a Cisco router: Cisco
  176. likes GRE much better than the other Linux tunneling driver ("IP
  177. tunneling" above). In addition, GRE allows multicast redistribution
  178. through the tunnel.
  179. config NET_IPGRE_BROADCAST
  180. bool "IP: broadcast GRE over IP"
  181. depends on IP_MULTICAST && NET_IPGRE
  182. help
  183. One application of GRE/IP is to construct a broadcast WAN (Wide Area
  184. Network), which looks like a normal Ethernet LAN (Local Area
  185. Network), but can be distributed all over the Internet. If you want
  186. to do that, say Y here and to "IP multicast routing" below.
  187. config IP_MROUTE
  188. bool "IP: multicast routing"
  189. depends on IP_MULTICAST
  190. help
  191. This is used if you want your machine to act as a router for IP
  192. packets that have several destination addresses. It is needed on the
  193. MBONE, a high bandwidth network on top of the Internet which carries
  194. audio and video broadcasts. In order to do that, you would most
  195. likely run the program mrouted. If you haven't heard about it, you
  196. 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
  233. 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 NET_IPVTI
  270. tristate "Virtual (secure) IP: tunneling"
  271. select INET_TUNNEL
  272. select NET_IP_TUNNEL
  273. depends on INET_XFRM_MODE_TUNNEL
  274. ---help---
  275. Tunneling means encapsulating data of one protocol type within
  276. another protocol and sending it over a channel that understands the
  277. encapsulating protocol. This can be used with xfrm mode tunnel to give
  278. the notion of a secure tunnel for IPSEC and then use routing protocol
  279. on top.
  280. config INET_AH
  281. tristate "IP: AH transformation"
  282. select XFRM_ALGO
  283. select CRYPTO
  284. select CRYPTO_HMAC
  285. select CRYPTO_MD5
  286. select CRYPTO_SHA1
  287. ---help---
  288. Support for IPsec AH.
  289. If unsure, say Y.
  290. config INET_ESP
  291. tristate "IP: ESP transformation"
  292. select XFRM_ALGO
  293. select CRYPTO
  294. select CRYPTO_AUTHENC
  295. select CRYPTO_HMAC
  296. select CRYPTO_MD5
  297. select CRYPTO_CBC
  298. select CRYPTO_SHA1
  299. select CRYPTO_DES
  300. ---help---
  301. Support for IPsec ESP.
  302. If unsure, say Y.
  303. config INET_IPCOMP
  304. tristate "IP: IPComp transformation"
  305. select INET_XFRM_TUNNEL
  306. select XFRM_IPCOMP
  307. ---help---
  308. Support for IP Payload Compression Protocol (IPComp) (RFC3173),
  309. typically needed for IPsec.
  310. If unsure, say Y.
  311. config INET_XFRM_TUNNEL
  312. tristate
  313. select INET_TUNNEL
  314. default n
  315. config INET_TUNNEL
  316. tristate
  317. default n
  318. config INET_XFRM_MODE_TRANSPORT
  319. tristate "IP: IPsec transport mode"
  320. default y
  321. select XFRM
  322. ---help---
  323. Support for IPsec transport mode.
  324. If unsure, say Y.
  325. config INET_XFRM_MODE_TUNNEL
  326. tristate "IP: IPsec tunnel mode"
  327. default y
  328. select XFRM
  329. ---help---
  330. Support for IPsec tunnel mode.
  331. If unsure, say Y.
  332. config INET_XFRM_MODE_BEET
  333. tristate "IP: IPsec BEET mode"
  334. default y
  335. select XFRM
  336. ---help---
  337. Support for IPsec BEET mode.
  338. If unsure, say Y.
  339. config INET_LRO
  340. tristate "Large Receive Offload (ipv4/tcp)"
  341. default y
  342. ---help---
  343. Support for Large Receive Offload (ipv4/tcp).
  344. If unsure, say Y.
  345. config INET_DIAG
  346. tristate "INET: socket monitoring interface"
  347. default y
  348. ---help---
  349. Support for INET (TCP, DCCP, etc) socket monitoring interface used by
  350. native Linux tools such as ss. ss is included in iproute2, currently
  351. downloadable at:
  352. http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2
  353. If unsure, say Y.
  354. config INET_TCP_DIAG
  355. depends on INET_DIAG
  356. def_tristate INET_DIAG
  357. config INET_UDP_DIAG
  358. tristate "UDP: socket monitoring interface"
  359. depends on INET_DIAG && (IPV6 || IPV6=n)
  360. default n
  361. ---help---
  362. Support for UDP socket monitoring interface used by the ss tool.
  363. If unsure, say Y.
  364. menuconfig TCP_CONG_ADVANCED
  365. bool "TCP: advanced congestion control"
  366. ---help---
  367. Support for selection of various TCP congestion control
  368. modules.
  369. Nearly all users can safely say no here, and a safe default
  370. selection will be made (CUBIC with new Reno as a fallback).
  371. If unsure, say N.
  372. if TCP_CONG_ADVANCED
  373. config TCP_CONG_BIC
  374. tristate "Binary Increase Congestion (BIC) control"
  375. default m
  376. ---help---
  377. BIC-TCP is a sender-side only change that ensures a linear RTT
  378. fairness under large windows while offering both scalability and
  379. bounded TCP-friendliness. The protocol combines two schemes
  380. called additive increase and binary search increase. When the
  381. congestion window is large, additive increase with a large
  382. increment ensures linear RTT fairness as well as good
  383. scalability. Under small congestion windows, binary search
  384. increase provides TCP friendliness.
  385. See http://www.csc.ncsu.edu/faculty/rhee/export/bitcp/
  386. config TCP_CONG_CUBIC
  387. tristate "CUBIC TCP"
  388. default y
  389. ---help---
  390. This is version 2.0 of BIC-TCP which uses a cubic growth function
  391. among other techniques.
  392. See http://www.csc.ncsu.edu/faculty/rhee/export/bitcp/cubic-paper.pdf
  393. config TCP_CONG_WESTWOOD
  394. tristate "TCP Westwood+"
  395. default m
  396. ---help---
  397. TCP Westwood+ is a sender-side only modification of the TCP Reno
  398. protocol stack that optimizes the performance of TCP congestion
  399. control. It is based on end-to-end bandwidth estimation to set
  400. congestion window and slow start threshold after a congestion
  401. episode. Using this estimation, TCP Westwood+ adaptively sets a
  402. slow start threshold and a congestion window which takes into
  403. account the bandwidth used at the time congestion is experienced.
  404. TCP Westwood+ significantly increases fairness wrt TCP Reno in
  405. wired networks and throughput over wireless links.
  406. config TCP_CONG_HTCP
  407. tristate "H-TCP"
  408. default m
  409. ---help---
  410. H-TCP is a send-side only modifications of the TCP Reno
  411. protocol stack that optimizes the performance of TCP
  412. congestion control for high speed network links. It uses a
  413. modeswitch to change the alpha and beta parameters of TCP Reno
  414. based on network conditions and in a way so as to be fair with
  415. other Reno and H-TCP flows.
  416. config TCP_CONG_HSTCP
  417. tristate "High Speed TCP"
  418. default n
  419. ---help---
  420. Sally Floyd's High Speed TCP (RFC 3649) congestion control.
  421. A modification to TCP's congestion control mechanism for use
  422. with large congestion windows. A table indicates how much to
  423. increase the congestion window by when an ACK is received.
  424. For more detail see http://www.icir.org/floyd/hstcp.html
  425. config TCP_CONG_HYBLA
  426. tristate "TCP-Hybla congestion control algorithm"
  427. default n
  428. ---help---
  429. TCP-Hybla is a sender-side only change that eliminates penalization of
  430. long-RTT, large-bandwidth connections, like when satellite legs are
  431. involved, especially when sharing a common bottleneck with normal
  432. terrestrial connections.
  433. config TCP_CONG_VEGAS
  434. tristate "TCP Vegas"
  435. default n
  436. ---help---
  437. TCP Vegas is a sender-side only change to TCP that anticipates
  438. the onset of congestion by estimating the bandwidth. TCP Vegas
  439. adjusts the sending rate by modifying the congestion
  440. window. TCP Vegas should provide less packet loss, but it is
  441. not as aggressive as TCP Reno.
  442. config TCP_CONG_SCALABLE
  443. tristate "Scalable TCP"
  444. default n
  445. ---help---
  446. Scalable TCP is a sender-side only change to TCP which uses a
  447. MIMD congestion control algorithm which has some nice scaling
  448. properties, though is known to have fairness issues.
  449. See http://www.deneholme.net/tom/scalable/
  450. config TCP_CONG_LP
  451. tristate "TCP Low Priority"
  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. 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://ieeexplore.ieee.org/xpl/freeabs_all.jsp?arnumber=1177186>
  468. config TCP_CONG_YEAH
  469. tristate "YeAH TCP"
  470. select TCP_CONG_VEGAS
  471. default n
  472. ---help---
  473. YeAH-TCP is a sender-side high-speed enabled TCP congestion control
  474. algorithm, which uses a mixed loss/delay approach to compute the
  475. congestion window. It's design goals target high efficiency,
  476. internal, RTT and Reno fairness, resilience to link loss while
  477. keeping network elements load as low as possible.
  478. For further details look here:
  479. http://wil.cs.caltech.edu/pfldnet2007/paper/YeAH_TCP.pdf
  480. config TCP_CONG_ILLINOIS
  481. tristate "TCP Illinois"
  482. default n
  483. ---help---
  484. TCP-Illinois is a sender-side modification of TCP Reno for
  485. high speed long delay links. It uses round-trip-time to
  486. adjust the alpha and beta parameters to achieve a higher average
  487. throughput and maintain fairness.
  488. For further details see:
  489. http://www.ews.uiuc.edu/~shaoliu/tcpillinois/index.html
  490. choice
  491. prompt "Default TCP congestion control"
  492. default DEFAULT_CUBIC
  493. help
  494. Select the TCP congestion control that will be used by default
  495. for all connections.
  496. config DEFAULT_BIC
  497. bool "Bic" if TCP_CONG_BIC=y
  498. config DEFAULT_CUBIC
  499. bool "Cubic" if TCP_CONG_CUBIC=y
  500. config DEFAULT_HTCP
  501. bool "Htcp" if TCP_CONG_HTCP=y
  502. config DEFAULT_HYBLA
  503. bool "Hybla" if TCP_CONG_HYBLA=y
  504. config DEFAULT_VEGAS
  505. bool "Vegas" if TCP_CONG_VEGAS=y
  506. config DEFAULT_VENO
  507. bool "Veno" if TCP_CONG_VENO=y
  508. config DEFAULT_WESTWOOD
  509. bool "Westwood" if TCP_CONG_WESTWOOD=y
  510. config DEFAULT_RENO
  511. bool "Reno"
  512. endchoice
  513. endif
  514. config TCP_CONG_CUBIC
  515. tristate
  516. depends on !TCP_CONG_ADVANCED
  517. default y
  518. config DEFAULT_TCP_CONG
  519. string
  520. default "bic" if DEFAULT_BIC
  521. default "cubic" if DEFAULT_CUBIC
  522. default "htcp" if DEFAULT_HTCP
  523. default "hybla" if DEFAULT_HYBLA
  524. default "vegas" if DEFAULT_VEGAS
  525. default "westwood" if DEFAULT_WESTWOOD
  526. default "veno" if DEFAULT_VENO
  527. default "reno" if DEFAULT_RENO
  528. default "cubic"
  529. config TCP_MD5SIG
  530. bool "TCP: MD5 Signature Option support (RFC2385)"
  531. select CRYPTO
  532. select CRYPTO_MD5
  533. ---help---
  534. RFC2385 specifies a method of giving MD5 protection to TCP sessions.
  535. Its main (only?) use is to protect BGP sessions between core routers
  536. on the Internet.
  537. If unsure, say N.