Kconfig 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620
  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 SYN_COOKIES
  229. bool "IP: TCP syncookie support"
  230. ---help---
  231. Normal TCP/IP networking is open to an attack known as "SYN
  232. flooding". This denial-of-service attack prevents legitimate remote
  233. users from being able to connect to your computer during an ongoing
  234. attack and requires very little work from the attacker, who can
  235. operate from anywhere on the Internet.
  236. SYN cookies provide protection against this type of attack. If you
  237. say Y here, the TCP/IP stack will use a cryptographic challenge
  238. protocol known as "SYN cookies" to enable legitimate users to
  239. continue to connect, even when your machine is under attack. There
  240. is no need for the legitimate users to change their TCP/IP software;
  241. SYN cookies work transparently to them. For technical information
  242. about SYN cookies, check out <http://cr.yp.to/syncookies.html>.
  243. If you are SYN flooded, the source address reported by the kernel is
  244. likely to have been forged by the attacker; it is only reported as
  245. an aid in tracing the packets to their actual source and should not
  246. be taken as absolute truth.
  247. SYN cookies may prevent correct error reporting on clients when the
  248. server is really overloaded. If this happens frequently better turn
  249. them off.
  250. If you say Y here, you can disable SYN cookies at run time by
  251. saying Y to "/proc file system support" and
  252. "Sysctl support" below and executing the command
  253. echo 0 > /proc/sys/net/ipv4/tcp_syncookies
  254. after the /proc file system has been mounted.
  255. If unsure, say N.
  256. config NET_IPVTI
  257. tristate "Virtual (secure) IP: tunneling"
  258. select INET_TUNNEL
  259. select NET_IP_TUNNEL
  260. depends on INET_XFRM_MODE_TUNNEL
  261. ---help---
  262. Tunneling means encapsulating data of one protocol type within
  263. another protocol and sending it over a channel that understands the
  264. encapsulating protocol. This can be used with xfrm mode tunnel to give
  265. the notion of a secure tunnel for IPSEC and then use routing protocol
  266. on top.
  267. config INET_AH
  268. tristate "IP: AH transformation"
  269. select XFRM_ALGO
  270. select CRYPTO
  271. select CRYPTO_HMAC
  272. select CRYPTO_MD5
  273. select CRYPTO_SHA1
  274. ---help---
  275. Support for IPsec AH.
  276. If unsure, say Y.
  277. config INET_ESP
  278. tristate "IP: ESP transformation"
  279. select XFRM_ALGO
  280. select CRYPTO
  281. select CRYPTO_AUTHENC
  282. select CRYPTO_HMAC
  283. select CRYPTO_MD5
  284. select CRYPTO_CBC
  285. select CRYPTO_SHA1
  286. select CRYPTO_DES
  287. ---help---
  288. Support for IPsec ESP.
  289. If unsure, say Y.
  290. config INET_IPCOMP
  291. tristate "IP: IPComp transformation"
  292. select INET_XFRM_TUNNEL
  293. select XFRM_IPCOMP
  294. ---help---
  295. Support for IP Payload Compression Protocol (IPComp) (RFC3173),
  296. typically needed for IPsec.
  297. If unsure, say Y.
  298. config INET_XFRM_TUNNEL
  299. tristate
  300. select INET_TUNNEL
  301. default n
  302. config INET_TUNNEL
  303. tristate
  304. default n
  305. config INET_XFRM_MODE_TRANSPORT
  306. tristate "IP: IPsec transport mode"
  307. default y
  308. select XFRM
  309. ---help---
  310. Support for IPsec transport mode.
  311. If unsure, say Y.
  312. config INET_XFRM_MODE_TUNNEL
  313. tristate "IP: IPsec tunnel mode"
  314. default y
  315. select XFRM
  316. ---help---
  317. Support for IPsec tunnel mode.
  318. If unsure, say Y.
  319. config INET_XFRM_MODE_BEET
  320. tristate "IP: IPsec BEET mode"
  321. default y
  322. select XFRM
  323. ---help---
  324. Support for IPsec BEET mode.
  325. If unsure, say Y.
  326. config INET_LRO
  327. tristate "Large Receive Offload (ipv4/tcp)"
  328. default y
  329. ---help---
  330. Support for Large Receive Offload (ipv4/tcp).
  331. If unsure, say Y.
  332. config INET_DIAG
  333. tristate "INET: socket monitoring interface"
  334. default y
  335. ---help---
  336. Support for INET (TCP, DCCP, etc) socket monitoring interface used by
  337. native Linux tools such as ss. ss is included in iproute2, currently
  338. downloadable at:
  339. http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2
  340. If unsure, say Y.
  341. config INET_TCP_DIAG
  342. depends on INET_DIAG
  343. def_tristate INET_DIAG
  344. config INET_UDP_DIAG
  345. tristate "UDP: socket monitoring interface"
  346. depends on INET_DIAG && (IPV6 || IPV6=n)
  347. default n
  348. ---help---
  349. Support for UDP socket monitoring interface used by the ss tool.
  350. If unsure, say Y.
  351. menuconfig TCP_CONG_ADVANCED
  352. bool "TCP: advanced congestion control"
  353. ---help---
  354. Support for selection of various TCP congestion control
  355. modules.
  356. Nearly all users can safely say no here, and a safe default
  357. selection will be made (CUBIC with new Reno as a fallback).
  358. If unsure, say N.
  359. if TCP_CONG_ADVANCED
  360. config TCP_CONG_BIC
  361. tristate "Binary Increase Congestion (BIC) control"
  362. default m
  363. ---help---
  364. BIC-TCP is a sender-side only change that ensures a linear RTT
  365. fairness under large windows while offering both scalability and
  366. bounded TCP-friendliness. The protocol combines two schemes
  367. called additive increase and binary search increase. When the
  368. congestion window is large, additive increase with a large
  369. increment ensures linear RTT fairness as well as good
  370. scalability. Under small congestion windows, binary search
  371. increase provides TCP friendliness.
  372. See http://www.csc.ncsu.edu/faculty/rhee/export/bitcp/
  373. config TCP_CONG_CUBIC
  374. tristate "CUBIC TCP"
  375. default y
  376. ---help---
  377. This is version 2.0 of BIC-TCP which uses a cubic growth function
  378. among other techniques.
  379. See http://www.csc.ncsu.edu/faculty/rhee/export/bitcp/cubic-paper.pdf
  380. config TCP_CONG_WESTWOOD
  381. tristate "TCP Westwood+"
  382. default m
  383. ---help---
  384. TCP Westwood+ is a sender-side only modification of the TCP Reno
  385. protocol stack that optimizes the performance of TCP congestion
  386. control. It is based on end-to-end bandwidth estimation to set
  387. congestion window and slow start threshold after a congestion
  388. episode. Using this estimation, TCP Westwood+ adaptively sets a
  389. slow start threshold and a congestion window which takes into
  390. account the bandwidth used at the time congestion is experienced.
  391. TCP Westwood+ significantly increases fairness wrt TCP Reno in
  392. wired networks and throughput over wireless links.
  393. config TCP_CONG_HTCP
  394. tristate "H-TCP"
  395. default m
  396. ---help---
  397. H-TCP is a send-side only modifications of the TCP Reno
  398. protocol stack that optimizes the performance of TCP
  399. congestion control for high speed network links. It uses a
  400. modeswitch to change the alpha and beta parameters of TCP Reno
  401. based on network conditions and in a way so as to be fair with
  402. other Reno and H-TCP flows.
  403. config TCP_CONG_HSTCP
  404. tristate "High Speed TCP"
  405. default n
  406. ---help---
  407. Sally Floyd's High Speed TCP (RFC 3649) congestion control.
  408. A modification to TCP's congestion control mechanism for use
  409. with large congestion windows. A table indicates how much to
  410. increase the congestion window by when an ACK is received.
  411. For more detail see http://www.icir.org/floyd/hstcp.html
  412. config TCP_CONG_HYBLA
  413. tristate "TCP-Hybla congestion control algorithm"
  414. default n
  415. ---help---
  416. TCP-Hybla is a sender-side only change that eliminates penalization of
  417. long-RTT, large-bandwidth connections, like when satellite legs are
  418. involved, especially when sharing a common bottleneck with normal
  419. terrestrial connections.
  420. config TCP_CONG_VEGAS
  421. tristate "TCP Vegas"
  422. default n
  423. ---help---
  424. TCP Vegas is a sender-side only change to TCP that anticipates
  425. the onset of congestion by estimating the bandwidth. TCP Vegas
  426. adjusts the sending rate by modifying the congestion
  427. window. TCP Vegas should provide less packet loss, but it is
  428. not as aggressive as TCP Reno.
  429. config TCP_CONG_SCALABLE
  430. tristate "Scalable TCP"
  431. default n
  432. ---help---
  433. Scalable TCP is a sender-side only change to TCP which uses a
  434. MIMD congestion control algorithm which has some nice scaling
  435. properties, though is known to have fairness issues.
  436. See http://www.deneholme.net/tom/scalable/
  437. config TCP_CONG_LP
  438. tristate "TCP Low Priority"
  439. default n
  440. ---help---
  441. TCP Low Priority (TCP-LP), a distributed algorithm whose goal is
  442. to utilize only the excess network bandwidth as compared to the
  443. ``fair share`` of bandwidth as targeted by TCP.
  444. See http://www-ece.rice.edu/networks/TCP-LP/
  445. config TCP_CONG_VENO
  446. tristate "TCP Veno"
  447. default n
  448. ---help---
  449. TCP Veno is a sender-side only enhancement of TCP to obtain better
  450. throughput over wireless networks. TCP Veno makes use of state
  451. distinguishing to circumvent the difficult judgment of the packet loss
  452. type. TCP Veno cuts down less congestion window in response to random
  453. loss packets.
  454. See <http://ieeexplore.ieee.org/xpl/freeabs_all.jsp?arnumber=1177186>
  455. config TCP_CONG_YEAH
  456. tristate "YeAH TCP"
  457. select TCP_CONG_VEGAS
  458. default n
  459. ---help---
  460. YeAH-TCP is a sender-side high-speed enabled TCP congestion control
  461. algorithm, which uses a mixed loss/delay approach to compute the
  462. congestion window. It's design goals target high efficiency,
  463. internal, RTT and Reno fairness, resilience to link loss while
  464. keeping network elements load as low as possible.
  465. For further details look here:
  466. http://wil.cs.caltech.edu/pfldnet2007/paper/YeAH_TCP.pdf
  467. config TCP_CONG_ILLINOIS
  468. tristate "TCP Illinois"
  469. default n
  470. ---help---
  471. TCP-Illinois is a sender-side modification of TCP Reno for
  472. high speed long delay links. It uses round-trip-time to
  473. adjust the alpha and beta parameters to achieve a higher average
  474. throughput and maintain fairness.
  475. For further details see:
  476. http://www.ews.uiuc.edu/~shaoliu/tcpillinois/index.html
  477. choice
  478. prompt "Default TCP congestion control"
  479. default DEFAULT_CUBIC
  480. help
  481. Select the TCP congestion control that will be used by default
  482. for all connections.
  483. config DEFAULT_BIC
  484. bool "Bic" if TCP_CONG_BIC=y
  485. config DEFAULT_CUBIC
  486. bool "Cubic" if TCP_CONG_CUBIC=y
  487. config DEFAULT_HTCP
  488. bool "Htcp" if TCP_CONG_HTCP=y
  489. config DEFAULT_HYBLA
  490. bool "Hybla" if TCP_CONG_HYBLA=y
  491. config DEFAULT_VEGAS
  492. bool "Vegas" if TCP_CONG_VEGAS=y
  493. config DEFAULT_VENO
  494. bool "Veno" if TCP_CONG_VENO=y
  495. config DEFAULT_WESTWOOD
  496. bool "Westwood" if TCP_CONG_WESTWOOD=y
  497. config DEFAULT_RENO
  498. bool "Reno"
  499. endchoice
  500. endif
  501. config TCP_CONG_CUBIC
  502. tristate
  503. depends on !TCP_CONG_ADVANCED
  504. default y
  505. config DEFAULT_TCP_CONG
  506. string
  507. default "bic" if DEFAULT_BIC
  508. default "cubic" if DEFAULT_CUBIC
  509. default "htcp" if DEFAULT_HTCP
  510. default "hybla" if DEFAULT_HYBLA
  511. default "vegas" if DEFAULT_VEGAS
  512. default "westwood" if DEFAULT_WESTWOOD
  513. default "veno" if DEFAULT_VENO
  514. default "reno" if DEFAULT_RENO
  515. default "cubic"
  516. config TCP_MD5SIG
  517. bool "TCP: MD5 Signature Option support (RFC2385)"
  518. select CRYPTO
  519. select CRYPTO_MD5
  520. ---help---
  521. RFC2385 specifies a method of giving MD5 protection to TCP sessions.
  522. Its main (only?) use is to protect BGP sessions between core routers
  523. on the Internet.
  524. If unsure, say N.