xref: /linux/net/ipv4/Kconfig (revision 71c87e0cedca843162206c698cfa02e5fea9e2e3)
11da177e4SLinus Torvalds#
21da177e4SLinus Torvalds# IP configuration
31da177e4SLinus Torvalds#
41da177e4SLinus Torvaldsconfig IP_MULTICAST
51da177e4SLinus Torvalds	bool "IP: multicasting"
61da177e4SLinus Torvalds	help
71da177e4SLinus Torvalds	  This is code for addressing several networked computers at once,
81da177e4SLinus Torvalds	  enlarging your kernel by about 2 KB. You need multicasting if you
91da177e4SLinus Torvalds	  intend to participate in the MBONE, a high bandwidth network on top
101da177e4SLinus Torvalds	  of the Internet which carries audio and video broadcasts. More
111da177e4SLinus Torvalds	  information about the MBONE is on the WWW at
12936bb14cSAdrian Bunk	  <http://www.savetz.com/mbone/>. Information about the multicast
131da177e4SLinus Torvalds	  capabilities of the various network cards is contained in
141da177e4SLinus Torvalds	  <file:Documentation/networking/multicast.txt>. For most people, it's
151da177e4SLinus Torvalds	  safe to say N.
161da177e4SLinus Torvalds
171da177e4SLinus Torvaldsconfig IP_ADVANCED_ROUTER
181da177e4SLinus Torvalds	bool "IP: advanced router"
191da177e4SLinus Torvalds	---help---
201da177e4SLinus Torvalds	  If you intend to run your Linux box mostly as a router, i.e. as a
211da177e4SLinus Torvalds	  computer that forwards and redistributes network packets, say Y; you
221da177e4SLinus Torvalds	  will then be presented with several options that allow more precise
231da177e4SLinus Torvalds	  control about the routing process.
241da177e4SLinus Torvalds
251da177e4SLinus Torvalds	  The answer to this question won't directly affect the kernel:
261da177e4SLinus Torvalds	  answering N will just cause the configurator to skip all the
271da177e4SLinus Torvalds	  questions about advanced routing.
281da177e4SLinus Torvalds
291da177e4SLinus Torvalds	  Note that your box can only act as a router if you enable IP
301da177e4SLinus Torvalds	  forwarding in your kernel; you can do that by saying Y to "/proc
311da177e4SLinus Torvalds	  file system support" and "Sysctl support" below and executing the
321da177e4SLinus Torvalds	  line
331da177e4SLinus Torvalds
341da177e4SLinus Torvalds	  echo "1" > /proc/sys/net/ipv4/ip_forward
351da177e4SLinus Torvalds
361da177e4SLinus Torvalds	  at boot time after the /proc file system has been mounted.
371da177e4SLinus Torvalds
381da177e4SLinus Torvalds	  If you turn on IP forwarding, you will also get the rp_filter, which
391da177e4SLinus Torvalds	  automatically rejects incoming packets if the routing table entry
401da177e4SLinus Torvalds	  for their source address doesn't match the network interface they're
411da177e4SLinus Torvalds	  arriving on. This has security advantages because it prevents the
421da177e4SLinus Torvalds	  so-called IP spoofing, however it can pose problems if you use
431da177e4SLinus Torvalds	  asymmetric routing (packets from you to a host take a different path
441da177e4SLinus Torvalds	  than packets from that host to you) or if you operate a non-routing
451da177e4SLinus Torvalds	  host which has several IP addresses on different interfaces. To turn
46d7394372SDave Jones	  rp_filter on use:
471da177e4SLinus Torvalds
48d7394372SDave Jones	  echo 1 > /proc/sys/net/ipv4/conf/<device>/rp_filter
491da177e4SLinus Torvalds	  or
50d7394372SDave Jones	  echo 1 > /proc/sys/net/ipv4/conf/all/rp_filter
511da177e4SLinus Torvalds
521da177e4SLinus Torvalds	  If unsure, say N here.
531da177e4SLinus Torvalds
54bb298ca3SDavid S. Millerchoice
55bb298ca3SDavid S. Miller	prompt "Choose IP: FIB lookup algorithm (choose FIB_HASH if unsure)"
56bb298ca3SDavid S. Miller	depends on IP_ADVANCED_ROUTER
576876f95fSAdrian Bunk	default ASK_IP_FIB_HASH
58bb298ca3SDavid S. Miller
596876f95fSAdrian Bunkconfig ASK_IP_FIB_HASH
60bb298ca3SDavid S. Miller	bool "FIB_HASH"
61bb298ca3SDavid S. Miller	---help---
62bb298ca3SDavid S. Miller	Current FIB is very proven and good enough for most users.
63bb298ca3SDavid S. Miller
64bb298ca3SDavid S. Millerconfig IP_FIB_TRIE
65bb298ca3SDavid S. Miller	bool "FIB_TRIE"
66bb298ca3SDavid S. Miller	---help---
6744c09201SMatt LaPlante	Use new experimental LC-trie as FIB lookup algorithm.
68bb298ca3SDavid S. Miller        This improves lookup performance if you have a large
69bb298ca3SDavid S. Miller	number of routes.
70bb298ca3SDavid S. Miller
71bb298ca3SDavid S. Miller	LC-trie is a longest matching prefix lookup algorithm which
72bb298ca3SDavid S. Miller	performs better than FIB_HASH for large routing tables.
73bb298ca3SDavid S. Miller	But, it consumes more memory and is more complex.
74bb298ca3SDavid S. Miller
75bb298ca3SDavid S. Miller	LC-trie is described in:
76bb298ca3SDavid S. Miller
77bb298ca3SDavid S. Miller 	IP-address lookup using LC-tries. Stefan Nilsson and Gunnar Karlsson
78bb298ca3SDavid S. Miller 	IEEE Journal on Selected Areas in Communications, 17(6):1083-1092, June 1999
79bb298ca3SDavid S. Miller	An experimental study of compression methods for dynamic tries
80bb298ca3SDavid S. Miller 	Stefan Nilsson and Matti Tikkanen. Algorithmica, 33(1):19-33, 2002.
81bb298ca3SDavid S. Miller 	http://www.nada.kth.se/~snilsson/public/papers/dyntrie2/
82bb298ca3SDavid S. Miller
83bb298ca3SDavid S. Millerendchoice
84bb298ca3SDavid S. Miller
85bb298ca3SDavid S. Millerconfig IP_FIB_HASH
866876f95fSAdrian Bunk	def_bool ASK_IP_FIB_HASH || !IP_ADVANCED_ROUTER
87bb298ca3SDavid S. Miller
881da177e4SLinus Torvaldsconfig IP_MULTIPLE_TABLES
891da177e4SLinus Torvalds	bool "IP: policy routing"
901da177e4SLinus Torvalds	depends on IP_ADVANCED_ROUTER
91e1ef4bf2SThomas Graf	select FIB_RULES
921da177e4SLinus Torvalds	---help---
931da177e4SLinus Torvalds	  Normally, a router decides what to do with a received packet based
941da177e4SLinus Torvalds	  solely on the packet's final destination address. If you say Y here,
951da177e4SLinus Torvalds	  the Linux router will also be able to take the packet's source
961da177e4SLinus Torvalds	  address into account. Furthermore, the TOS (Type-Of-Service) field
971da177e4SLinus Torvalds	  of the packet can be used for routing decisions as well.
981da177e4SLinus Torvalds
991da177e4SLinus Torvalds	  If you are interested in this, please see the preliminary
1001da177e4SLinus Torvalds	  documentation at <http://www.compendium.com.ar/policy-routing.txt>
1011da177e4SLinus Torvalds	  and <ftp://post.tepkom.ru/pub/vol2/Linux/docs/advanced-routing.tex>.
1021da177e4SLinus Torvalds	  You will need supporting software from
1031da177e4SLinus Torvalds	  <ftp://ftp.tux.org/pub/net/ip-routing/>.
1041da177e4SLinus Torvalds
1051da177e4SLinus Torvalds	  If unsure, say N.
1061da177e4SLinus Torvalds
1071da177e4SLinus Torvaldsconfig IP_ROUTE_MULTIPATH
1081da177e4SLinus Torvalds	bool "IP: equal cost multipath"
1091da177e4SLinus Torvalds	depends on IP_ADVANCED_ROUTER
1101da177e4SLinus Torvalds	help
1111da177e4SLinus Torvalds	  Normally, the routing tables specify a single action to be taken in
1121da177e4SLinus Torvalds	  a deterministic manner for a given packet. If you say Y here
1131da177e4SLinus Torvalds	  however, it becomes possible to attach several actions to a packet
1141da177e4SLinus Torvalds	  pattern, in effect specifying several alternative paths to travel
1151da177e4SLinus Torvalds	  for those packets. The router considers all these paths to be of
1161da177e4SLinus Torvalds	  equal "cost" and chooses one of them in a non-deterministic fashion
1171da177e4SLinus Torvalds	  if a matching packet arrives.
1181da177e4SLinus Torvalds
1191da177e4SLinus Torvaldsconfig IP_ROUTE_VERBOSE
1201da177e4SLinus Torvalds	bool "IP: verbose route monitoring"
1211da177e4SLinus Torvalds	depends on IP_ADVANCED_ROUTER
1221da177e4SLinus Torvalds	help
1231da177e4SLinus Torvalds	  If you say Y here, which is recommended, then the kernel will print
1241da177e4SLinus Torvalds	  verbose messages regarding the routing, for example warnings about
1251da177e4SLinus Torvalds	  received packets which look strange and could be evidence of an
1261da177e4SLinus Torvalds	  attack or a misconfigured system somewhere. The information is
1271da177e4SLinus Torvalds	  handled by the klogd daemon which is responsible for kernel messages
1281da177e4SLinus Torvalds	  ("man klogd").
1291da177e4SLinus Torvalds
1301da177e4SLinus Torvaldsconfig IP_PNP
1311da177e4SLinus Torvalds	bool "IP: kernel level autoconfiguration"
1321da177e4SLinus Torvalds	help
1331da177e4SLinus Torvalds	  This enables automatic configuration of IP addresses of devices and
1341da177e4SLinus Torvalds	  of the routing table during kernel boot, based on either information
1351da177e4SLinus Torvalds	  supplied on the kernel command line or by BOOTP or RARP protocols.
1361da177e4SLinus Torvalds	  You need to say Y only for diskless machines requiring network
1371da177e4SLinus Torvalds	  access to boot (in which case you want to say Y to "Root file system
1381da177e4SLinus Torvalds	  on NFS" as well), because all other machines configure the network
1391da177e4SLinus Torvalds	  in their startup scripts.
1401da177e4SLinus Torvalds
1411da177e4SLinus Torvaldsconfig IP_PNP_DHCP
1421da177e4SLinus Torvalds	bool "IP: DHCP support"
1431da177e4SLinus Torvalds	depends on IP_PNP
1441da177e4SLinus Torvalds	---help---
1451da177e4SLinus Torvalds	  If you want your Linux box to mount its whole root file system (the
1461da177e4SLinus Torvalds	  one containing the directory /) from some other computer over the
1471da177e4SLinus Torvalds	  net via NFS and you want the IP address of your computer to be
1481da177e4SLinus Torvalds	  discovered automatically at boot time using the DHCP protocol (a
1491da177e4SLinus Torvalds	  special protocol designed for doing this job), say Y here. In case
1501da177e4SLinus Torvalds	  the boot ROM of your network card was designed for booting Linux and
1511da177e4SLinus Torvalds	  does DHCP itself, providing all necessary information on the kernel
1521da177e4SLinus Torvalds	  command line, you can say N here.
1531da177e4SLinus Torvalds
1541da177e4SLinus Torvalds	  If unsure, say Y. Note that if you want to use DHCP, a DHCP server
1551da177e4SLinus Torvalds	  must be operating on your network.  Read
1561da177e4SLinus Torvalds	  <file:Documentation/nfsroot.txt> for details.
1571da177e4SLinus Torvalds
1581da177e4SLinus Torvaldsconfig IP_PNP_BOOTP
1591da177e4SLinus Torvalds	bool "IP: BOOTP support"
1601da177e4SLinus Torvalds	depends on IP_PNP
1611da177e4SLinus Torvalds	---help---
1621da177e4SLinus Torvalds	  If you want your Linux box to mount its whole root file system (the
1631da177e4SLinus Torvalds	  one containing the directory /) from some other computer over the
1641da177e4SLinus Torvalds	  net via NFS and you want the IP address of your computer to be
1651da177e4SLinus Torvalds	  discovered automatically at boot time using the BOOTP protocol (a
1661da177e4SLinus Torvalds	  special protocol designed for doing this job), say Y here. In case
1671da177e4SLinus Torvalds	  the boot ROM of your network card was designed for booting Linux and
1681da177e4SLinus Torvalds	  does BOOTP itself, providing all necessary information on the kernel
1691da177e4SLinus Torvalds	  command line, you can say N here. If unsure, say Y. Note that if you
1701da177e4SLinus Torvalds	  want to use BOOTP, a BOOTP server must be operating on your network.
1711da177e4SLinus Torvalds	  Read <file:Documentation/nfsroot.txt> for details.
1721da177e4SLinus Torvalds
1731da177e4SLinus Torvaldsconfig IP_PNP_RARP
1741da177e4SLinus Torvalds	bool "IP: RARP support"
1751da177e4SLinus Torvalds	depends on IP_PNP
1761da177e4SLinus Torvalds	help
1771da177e4SLinus Torvalds	  If you want your Linux box to mount its whole root file system (the
1781da177e4SLinus Torvalds	  one containing the directory /) from some other computer over the
1791da177e4SLinus Torvalds	  net via NFS and you want the IP address of your computer to be
1801da177e4SLinus Torvalds	  discovered automatically at boot time using the RARP protocol (an
1811da177e4SLinus Torvalds	  older protocol which is being obsoleted by BOOTP and DHCP), say Y
1821da177e4SLinus Torvalds	  here. Note that if you want to use RARP, a RARP server must be
1831da177e4SLinus Torvalds	  operating on your network. Read <file:Documentation/nfsroot.txt> for
1841da177e4SLinus Torvalds	  details.
1851da177e4SLinus Torvalds
1861da177e4SLinus Torvalds# not yet ready..
1871da177e4SLinus Torvalds#   bool '    IP: ARP support' CONFIG_IP_PNP_ARP
1881da177e4SLinus Torvaldsconfig NET_IPIP
1891da177e4SLinus Torvalds	tristate "IP: tunneling"
190d2acc347SHerbert Xu	select INET_TUNNEL
1911da177e4SLinus Torvalds	---help---
1921da177e4SLinus Torvalds	  Tunneling means encapsulating data of one protocol type within
1931da177e4SLinus Torvalds	  another protocol and sending it over a channel that understands the
1941da177e4SLinus Torvalds	  encapsulating protocol. This particular tunneling driver implements
1951da177e4SLinus Torvalds	  encapsulation of IP within IP, which sounds kind of pointless, but
1961da177e4SLinus Torvalds	  can be useful if you want to make your (or some other) machine
1971da177e4SLinus Torvalds	  appear on a different network than it physically is, or to use
1981da177e4SLinus Torvalds	  mobile-IP facilities (allowing laptops to seamlessly move between
1991da177e4SLinus Torvalds	  networks without changing their IP addresses).
2001da177e4SLinus Torvalds
2011da177e4SLinus Torvalds	  Saying Y to this option will produce two modules ( = code which can
2021da177e4SLinus Torvalds	  be inserted in and removed from the running kernel whenever you
2031da177e4SLinus Torvalds	  want). Most people won't need this and can say N.
2041da177e4SLinus Torvalds
2051da177e4SLinus Torvaldsconfig NET_IPGRE
2061da177e4SLinus Torvalds	tristate "IP: GRE tunnels over IP"
2071da177e4SLinus Torvalds	help
2081da177e4SLinus Torvalds	  Tunneling means encapsulating data of one protocol type within
2091da177e4SLinus Torvalds	  another protocol and sending it over a channel that understands the
2101da177e4SLinus Torvalds	  encapsulating protocol. This particular tunneling driver implements
2111da177e4SLinus Torvalds	  GRE (Generic Routing Encapsulation) and at this time allows
2121da177e4SLinus Torvalds	  encapsulating of IPv4 or IPv6 over existing IPv4 infrastructure.
2131da177e4SLinus Torvalds	  This driver is useful if the other endpoint is a Cisco router: Cisco
2141da177e4SLinus Torvalds	  likes GRE much better than the other Linux tunneling driver ("IP
2151da177e4SLinus Torvalds	  tunneling" above). In addition, GRE allows multicast redistribution
2161da177e4SLinus Torvalds	  through the tunnel.
2171da177e4SLinus Torvalds
2181da177e4SLinus Torvaldsconfig NET_IPGRE_BROADCAST
2191da177e4SLinus Torvalds	bool "IP: broadcast GRE over IP"
2201da177e4SLinus Torvalds	depends on IP_MULTICAST && NET_IPGRE
2211da177e4SLinus Torvalds	help
2221da177e4SLinus Torvalds	  One application of GRE/IP is to construct a broadcast WAN (Wide Area
2231da177e4SLinus Torvalds	  Network), which looks like a normal Ethernet LAN (Local Area
2241da177e4SLinus Torvalds	  Network), but can be distributed all over the Internet. If you want
2251da177e4SLinus Torvalds	  to do that, say Y here and to "IP multicast routing" below.
2261da177e4SLinus Torvalds
2271da177e4SLinus Torvaldsconfig IP_MROUTE
2281da177e4SLinus Torvalds	bool "IP: multicast routing"
2291da177e4SLinus Torvalds	depends on IP_MULTICAST
2301da177e4SLinus Torvalds	help
2311da177e4SLinus Torvalds	  This is used if you want your machine to act as a router for IP
2321da177e4SLinus Torvalds	  packets that have several destination addresses. It is needed on the
2331da177e4SLinus Torvalds	  MBONE, a high bandwidth network on top of the Internet which carries
2341da177e4SLinus Torvalds	  audio and video broadcasts. In order to do that, you would most
2351da177e4SLinus Torvalds	  likely run the program mrouted. Information about the multicast
2361da177e4SLinus Torvalds	  capabilities of the various network cards is contained in
2371da177e4SLinus Torvalds	  <file:Documentation/networking/multicast.txt>. If you haven't heard
2381da177e4SLinus Torvalds	  about it, you don't need it.
2391da177e4SLinus Torvalds
2401da177e4SLinus Torvaldsconfig IP_PIMSM_V1
2411da177e4SLinus Torvalds	bool "IP: PIM-SM version 1 support"
2421da177e4SLinus Torvalds	depends on IP_MROUTE
2431da177e4SLinus Torvalds	help
2441da177e4SLinus Torvalds	  Kernel side support for Sparse Mode PIM (Protocol Independent
2451da177e4SLinus Torvalds	  Multicast) version 1. This multicast routing protocol is used widely
2461da177e4SLinus Torvalds	  because Cisco supports it. You need special software to use it
2471da177e4SLinus Torvalds	  (pimd-v1). Please see <http://netweb.usc.edu/pim/> for more
2481da177e4SLinus Torvalds	  information about PIM.
2491da177e4SLinus Torvalds
2501da177e4SLinus Torvalds	  Say Y if you want to use PIM-SM v1. Note that you can say N here if
2511da177e4SLinus Torvalds	  you just want to use Dense Mode PIM.
2521da177e4SLinus Torvalds
2531da177e4SLinus Torvaldsconfig IP_PIMSM_V2
2541da177e4SLinus Torvalds	bool "IP: PIM-SM version 2 support"
2551da177e4SLinus Torvalds	depends on IP_MROUTE
2561da177e4SLinus Torvalds	help
2571da177e4SLinus Torvalds	  Kernel side support for Sparse Mode PIM version 2. In order to use
2581da177e4SLinus Torvalds	  this, you need an experimental routing daemon supporting it (pimd or
2591da177e4SLinus Torvalds	  gated-5). This routing protocol is not used widely, so say N unless
2601da177e4SLinus Torvalds	  you want to play with it.
2611da177e4SLinus Torvalds
2621da177e4SLinus Torvaldsconfig ARPD
2631da177e4SLinus Torvalds	bool "IP: ARP daemon support (EXPERIMENTAL)"
2646a2e9b73SSam Ravnborg	depends on EXPERIMENTAL
2651da177e4SLinus Torvalds	---help---
2661da177e4SLinus Torvalds	  Normally, the kernel maintains an internal cache which maps IP
2671da177e4SLinus Torvalds	  addresses to hardware addresses on the local network, so that
2681da177e4SLinus Torvalds	  Ethernet/Token Ring/ etc. frames are sent to the proper address on
2691da177e4SLinus Torvalds	  the physical networking layer. For small networks having a few
2701da177e4SLinus Torvalds	  hundred directly connected hosts or less, keeping this address
2711da177e4SLinus Torvalds	  resolution (ARP) cache inside the kernel works well. However,
2721da177e4SLinus Torvalds	  maintaining an internal ARP cache does not work well for very large
2731da177e4SLinus Torvalds	  switched networks, and will use a lot of kernel memory if TCP/IP
2741da177e4SLinus Torvalds	  connections are made to many machines on the network.
2751da177e4SLinus Torvalds
2761da177e4SLinus Torvalds	  If you say Y here, the kernel's internal ARP cache will never grow
2771da177e4SLinus Torvalds	  to more than 256 entries (the oldest entries are expired in a LIFO
2781da177e4SLinus Torvalds	  manner) and communication will be attempted with the user space ARP
2791da177e4SLinus Torvalds	  daemon arpd. Arpd then answers the address resolution request either
2801da177e4SLinus Torvalds	  from its own cache or by asking the net.
2811da177e4SLinus Torvalds
2821da177e4SLinus Torvalds	  This code is experimental and also obsolete. If you want to use it,
2831da177e4SLinus Torvalds	  you need to find a version of the daemon arpd on the net somewhere,
2841da177e4SLinus Torvalds	  and you should also say Y to "Kernel/User network link driver",
2851da177e4SLinus Torvalds	  below. If unsure, say N.
2861da177e4SLinus Torvalds
2871da177e4SLinus Torvaldsconfig SYN_COOKIES
2881da177e4SLinus Torvalds	bool "IP: TCP syncookie support (disabled per default)"
2891da177e4SLinus Torvalds	---help---
2901da177e4SLinus Torvalds	  Normal TCP/IP networking is open to an attack known as "SYN
2911da177e4SLinus Torvalds	  flooding". This denial-of-service attack prevents legitimate remote
2921da177e4SLinus Torvalds	  users from being able to connect to your computer during an ongoing
2931da177e4SLinus Torvalds	  attack and requires very little work from the attacker, who can
2941da177e4SLinus Torvalds	  operate from anywhere on the Internet.
2951da177e4SLinus Torvalds
2961da177e4SLinus Torvalds	  SYN cookies provide protection against this type of attack. If you
2971da177e4SLinus Torvalds	  say Y here, the TCP/IP stack will use a cryptographic challenge
2981da177e4SLinus Torvalds	  protocol known as "SYN cookies" to enable legitimate users to
2991da177e4SLinus Torvalds	  continue to connect, even when your machine is under attack. There
3001da177e4SLinus Torvalds	  is no need for the legitimate users to change their TCP/IP software;
3011da177e4SLinus Torvalds	  SYN cookies work transparently to them. For technical information
3021da177e4SLinus Torvalds	  about SYN cookies, check out <http://cr.yp.to/syncookies.html>.
3031da177e4SLinus Torvalds
3041da177e4SLinus Torvalds	  If you are SYN flooded, the source address reported by the kernel is
3051da177e4SLinus Torvalds	  likely to have been forged by the attacker; it is only reported as
3061da177e4SLinus Torvalds	  an aid in tracing the packets to their actual source and should not
3071da177e4SLinus Torvalds	  be taken as absolute truth.
3081da177e4SLinus Torvalds
3091da177e4SLinus Torvalds	  SYN cookies may prevent correct error reporting on clients when the
3101da177e4SLinus Torvalds	  server is really overloaded. If this happens frequently better turn
3111da177e4SLinus Torvalds	  them off.
3121da177e4SLinus Torvalds
3131da177e4SLinus Torvalds	  If you say Y here, note that SYN cookies aren't enabled by default;
3141da177e4SLinus Torvalds	  you can enable them by saying Y to "/proc file system support" and
3151da177e4SLinus Torvalds	  "Sysctl support" below and executing the command
3161da177e4SLinus Torvalds
3171da177e4SLinus Torvalds	  echo 1 >/proc/sys/net/ipv4/tcp_syncookies
3181da177e4SLinus Torvalds
3191da177e4SLinus Torvalds	  at boot time after the /proc file system has been mounted.
3201da177e4SLinus Torvalds
3211da177e4SLinus Torvalds	  If unsure, say N.
3221da177e4SLinus Torvalds
3231da177e4SLinus Torvaldsconfig INET_AH
3241da177e4SLinus Torvalds	tristate "IP: AH transformation"
3251da177e4SLinus Torvalds	select XFRM
3261da177e4SLinus Torvalds	select CRYPTO
3271da177e4SLinus Torvalds	select CRYPTO_HMAC
3281da177e4SLinus Torvalds	select CRYPTO_MD5
3291da177e4SLinus Torvalds	select CRYPTO_SHA1
3301da177e4SLinus Torvalds	---help---
3311da177e4SLinus Torvalds	  Support for IPsec AH.
3321da177e4SLinus Torvalds
3331da177e4SLinus Torvalds	  If unsure, say Y.
3341da177e4SLinus Torvalds
3351da177e4SLinus Torvaldsconfig INET_ESP
3361da177e4SLinus Torvalds	tristate "IP: ESP transformation"
3371da177e4SLinus Torvalds	select XFRM
3381da177e4SLinus Torvalds	select CRYPTO
3391da177e4SLinus Torvalds	select CRYPTO_HMAC
3401da177e4SLinus Torvalds	select CRYPTO_MD5
3416b7326c8SHerbert Xu	select CRYPTO_CBC
3421da177e4SLinus Torvalds	select CRYPTO_SHA1
3431da177e4SLinus Torvalds	select CRYPTO_DES
3441da177e4SLinus Torvalds	---help---
3451da177e4SLinus Torvalds	  Support for IPsec ESP.
3461da177e4SLinus Torvalds
3471da177e4SLinus Torvalds	  If unsure, say Y.
3481da177e4SLinus Torvalds
3491da177e4SLinus Torvaldsconfig INET_IPCOMP
3501da177e4SLinus Torvalds	tristate "IP: IPComp transformation"
3511da177e4SLinus Torvalds	select XFRM
352d2acc347SHerbert Xu	select INET_XFRM_TUNNEL
3531da177e4SLinus Torvalds	select CRYPTO
3541da177e4SLinus Torvalds	select CRYPTO_DEFLATE
3551da177e4SLinus Torvalds	---help---
3561da177e4SLinus Torvalds	  Support for IP Payload Compression Protocol (IPComp) (RFC3173),
3571da177e4SLinus Torvalds	  typically needed for IPsec.
3581da177e4SLinus Torvalds
3591da177e4SLinus Torvalds	  If unsure, say Y.
3601da177e4SLinus Torvalds
361d2acc347SHerbert Xuconfig INET_XFRM_TUNNEL
362d2acc347SHerbert Xu	tristate
363d2acc347SHerbert Xu	select INET_TUNNEL
364d2acc347SHerbert Xu	default n
3651da177e4SLinus Torvalds
366d2acc347SHerbert Xuconfig INET_TUNNEL
367d2acc347SHerbert Xu	tristate
368d2acc347SHerbert Xu	default n
3691da177e4SLinus Torvalds
370b59f45d0SHerbert Xuconfig INET_XFRM_MODE_TRANSPORT
371b59f45d0SHerbert Xu	tristate "IP: IPsec transport mode"
372b59f45d0SHerbert Xu	default y
373b59f45d0SHerbert Xu	select XFRM
374b59f45d0SHerbert Xu	---help---
375b59f45d0SHerbert Xu	  Support for IPsec transport mode.
376b59f45d0SHerbert Xu
377b59f45d0SHerbert Xu	  If unsure, say Y.
378b59f45d0SHerbert Xu
379b59f45d0SHerbert Xuconfig INET_XFRM_MODE_TUNNEL
380b59f45d0SHerbert Xu	tristate "IP: IPsec tunnel mode"
381b59f45d0SHerbert Xu	default y
382b59f45d0SHerbert Xu	select XFRM
383b59f45d0SHerbert Xu	---help---
384b59f45d0SHerbert Xu	  Support for IPsec tunnel mode.
385b59f45d0SHerbert Xu
386b59f45d0SHerbert Xu	  If unsure, say Y.
387b59f45d0SHerbert Xu
3880a69452cSDiego Beltramiconfig INET_XFRM_MODE_BEET
3890a69452cSDiego Beltrami	tristate "IP: IPsec BEET mode"
3900a69452cSDiego Beltrami	default y
3910a69452cSDiego Beltrami	select XFRM
3920a69452cSDiego Beltrami	---help---
3930a69452cSDiego Beltrami	  Support for IPsec BEET mode.
3940a69452cSDiego Beltrami
3950a69452cSDiego Beltrami	  If unsure, say Y.
3960a69452cSDiego Beltrami
397*71c87e0cSJan-Bernd Themannconfig INET_LRO
398*71c87e0cSJan-Bernd Themann	tristate "Large Receive Offload (ipv4/tcp)"
399*71c87e0cSJan-Bernd Themann
400*71c87e0cSJan-Bernd Themann	---help---
401*71c87e0cSJan-Bernd Themann	  Support for Large Receive Offload (ipv4/tcp).
402*71c87e0cSJan-Bernd Themann
403*71c87e0cSJan-Bernd Themann	  If unsure, say Y.
404*71c87e0cSJan-Bernd Themann
40517b085eaSArnaldo Carvalho de Meloconfig INET_DIAG
40617b085eaSArnaldo Carvalho de Melo	tristate "INET: socket monitoring interface"
4071da177e4SLinus Torvalds	default y
4081da177e4SLinus Torvalds	---help---
40973c1f4a0SArnaldo Carvalho de Melo	  Support for INET (TCP, DCCP, etc) socket monitoring interface used by
41073c1f4a0SArnaldo Carvalho de Melo	  native Linux tools such as ss. ss is included in iproute2, currently
411f4b9479dSBaruch Even	  downloadable at <http://linux-net.osdl.org/index.php/Iproute2>.
4121da177e4SLinus Torvalds
4131da177e4SLinus Torvalds	  If unsure, say Y.
4141da177e4SLinus Torvalds
41517b085eaSArnaldo Carvalho de Meloconfig INET_TCP_DIAG
41617b085eaSArnaldo Carvalho de Melo	depends on INET_DIAG
41717b085eaSArnaldo Carvalho de Melo	def_tristate INET_DIAG
41817b085eaSArnaldo Carvalho de Melo
4193d2573f7SStephen Hemmingermenuconfig TCP_CONG_ADVANCED
420a6484045SDavid S. Miller	bool "TCP: advanced congestion control"
421a6484045SDavid S. Miller	---help---
422a6484045SDavid S. Miller	  Support for selection of various TCP congestion control
423a6484045SDavid S. Miller	  modules.
424a6484045SDavid S. Miller
425a6484045SDavid S. Miller	  Nearly all users can safely say no here, and a safe default
426597811ecSStephen Hemminger	  selection will be made (CUBIC with new Reno as a fallback).
427a6484045SDavid S. Miller
428a6484045SDavid S. Miller	  If unsure, say N.
429a6484045SDavid S. Miller
4303d2573f7SStephen Hemmingerif TCP_CONG_ADVANCED
43183803034SStephen Hemminger
43283803034SStephen Hemmingerconfig TCP_CONG_BIC
43383803034SStephen Hemminger	tristate "Binary Increase Congestion (BIC) control"
434597811ecSStephen Hemminger	default m
43583803034SStephen Hemminger	---help---
43683803034SStephen Hemminger	BIC-TCP is a sender-side only change that ensures a linear RTT
43783803034SStephen Hemminger	fairness under large windows while offering both scalability and
43883803034SStephen Hemminger	bounded TCP-friendliness. The protocol combines two schemes
43983803034SStephen Hemminger	called additive increase and binary search increase. When the
44083803034SStephen Hemminger	congestion window is large, additive increase with a large
44183803034SStephen Hemminger	increment ensures linear RTT fairness as well as good
44283803034SStephen Hemminger	scalability. Under small congestion windows, binary search
44383803034SStephen Hemminger	increase provides TCP friendliness.
44483803034SStephen Hemminger	See http://www.csc.ncsu.edu/faculty/rhee/export/bitcp/
44583803034SStephen Hemminger
446df3271f3SStephen Hemmingerconfig TCP_CONG_CUBIC
447df3271f3SStephen Hemminger	tristate "CUBIC TCP"
448597811ecSStephen Hemminger	default y
449df3271f3SStephen Hemminger	---help---
450df3271f3SStephen Hemminger	This is version 2.0 of BIC-TCP which uses a cubic growth function
451df3271f3SStephen Hemminger	among other techniques.
452df3271f3SStephen Hemminger	See http://www.csc.ncsu.edu/faculty/rhee/export/bitcp/cubic-paper.pdf
453df3271f3SStephen Hemminger
45487270762SStephen Hemmingerconfig TCP_CONG_WESTWOOD
45587270762SStephen Hemminger	tristate "TCP Westwood+"
45687270762SStephen Hemminger	default m
45787270762SStephen Hemminger	---help---
45887270762SStephen Hemminger	TCP Westwood+ is a sender-side only modification of the TCP Reno
45987270762SStephen Hemminger	protocol stack that optimizes the performance of TCP congestion
46087270762SStephen Hemminger	control. It is based on end-to-end bandwidth estimation to set
46187270762SStephen Hemminger	congestion window and slow start threshold after a congestion
46287270762SStephen Hemminger	episode. Using this estimation, TCP Westwood+ adaptively sets a
46387270762SStephen Hemminger	slow start threshold and a congestion window which takes into
46487270762SStephen Hemminger	account the bandwidth used  at the time congestion is experienced.
46587270762SStephen Hemminger	TCP Westwood+ significantly increases fairness wrt TCP Reno in
46687270762SStephen Hemminger	wired networks and throughput over wireless links.
46787270762SStephen Hemminger
468a7868ea6SBaruch Evenconfig TCP_CONG_HTCP
469a7868ea6SBaruch Even        tristate "H-TCP"
470a7868ea6SBaruch Even        default m
471a7868ea6SBaruch Even	---help---
472a7868ea6SBaruch Even	H-TCP is a send-side only modifications of the TCP Reno
473a7868ea6SBaruch Even	protocol stack that optimizes the performance of TCP
474a7868ea6SBaruch Even	congestion control for high speed network links. It uses a
475a7868ea6SBaruch Even	modeswitch to change the alpha and beta parameters of TCP Reno
476a7868ea6SBaruch Even	based on network conditions and in a way so as to be fair with
477a7868ea6SBaruch Even	other Reno and H-TCP flows.
478a7868ea6SBaruch Even
479a628d29bSJohn Heffnerconfig TCP_CONG_HSTCP
480a628d29bSJohn Heffner	tristate "High Speed TCP"
4816a2e9b73SSam Ravnborg	depends on EXPERIMENTAL
482a628d29bSJohn Heffner	default n
483a628d29bSJohn Heffner	---help---
484a628d29bSJohn Heffner	Sally Floyd's High Speed TCP (RFC 3649) congestion control.
485a628d29bSJohn Heffner	A modification to TCP's congestion control mechanism for use
486a628d29bSJohn Heffner	with large congestion windows. A table indicates how much to
487a628d29bSJohn Heffner	increase the congestion window by when an ACK is received.
488a628d29bSJohn Heffner 	For more detail	see http://www.icir.org/floyd/hstcp.html
489a628d29bSJohn Heffner
490835b3f0cSDaniele Lacameraconfig TCP_CONG_HYBLA
491835b3f0cSDaniele Lacamera	tristate "TCP-Hybla congestion control algorithm"
4926a2e9b73SSam Ravnborg	depends on EXPERIMENTAL
493835b3f0cSDaniele Lacamera	default n
494835b3f0cSDaniele Lacamera	---help---
495835b3f0cSDaniele Lacamera	TCP-Hybla is a sender-side only change that eliminates penalization of
496835b3f0cSDaniele Lacamera	long-RTT, large-bandwidth connections, like when satellite legs are
49744c09201SMatt LaPlante	involved, especially when sharing a common bottleneck with normal
498835b3f0cSDaniele Lacamera	terrestrial connections.
499835b3f0cSDaniele Lacamera
500b87d8561SStephen Hemmingerconfig TCP_CONG_VEGAS
501b87d8561SStephen Hemminger	tristate "TCP Vegas"
5026a2e9b73SSam Ravnborg	depends on EXPERIMENTAL
503b87d8561SStephen Hemminger	default n
504b87d8561SStephen Hemminger	---help---
505b87d8561SStephen Hemminger	TCP Vegas is a sender-side only change to TCP that anticipates
506b87d8561SStephen Hemminger	the onset of congestion by estimating the bandwidth. TCP Vegas
507b87d8561SStephen Hemminger	adjusts the sending rate by modifying the congestion
508b87d8561SStephen Hemminger	window. TCP Vegas should provide less packet loss, but it is
509b87d8561SStephen Hemminger	not as aggressive as TCP Reno.
510b87d8561SStephen Hemminger
5110e57976bSJohn Heffnerconfig TCP_CONG_SCALABLE
5120e57976bSJohn Heffner	tristate "Scalable TCP"
5136a2e9b73SSam Ravnborg	depends on EXPERIMENTAL
5140e57976bSJohn Heffner	default n
5150e57976bSJohn Heffner	---help---
5160e57976bSJohn Heffner	Scalable TCP is a sender-side only change to TCP which uses a
5170e57976bSJohn Heffner	MIMD congestion control algorithm which has some nice scaling
5180e57976bSJohn Heffner	properties, though is known to have fairness issues.
519f4b9479dSBaruch Even	See http://www.deneholme.net/tom/scalable/
520a7868ea6SBaruch Even
5217c106d7eSWong Hoi Sing Edisonconfig TCP_CONG_LP
5227c106d7eSWong Hoi Sing Edison	tristate "TCP Low Priority"
5237c106d7eSWong Hoi Sing Edison	depends on EXPERIMENTAL
5247c106d7eSWong Hoi Sing Edison	default n
5257c106d7eSWong Hoi Sing Edison	---help---
5267c106d7eSWong Hoi Sing Edison	TCP Low Priority (TCP-LP), a distributed algorithm whose goal is
527cab00891SMatt LaPlante	to utilize only the excess network bandwidth as compared to the
5287c106d7eSWong Hoi Sing Edison	``fair share`` of bandwidth as targeted by TCP.
5297c106d7eSWong Hoi Sing Edison	See http://www-ece.rice.edu/networks/TCP-LP/
5307c106d7eSWong Hoi Sing Edison
53176f10177SBin Zhouconfig TCP_CONG_VENO
53276f10177SBin Zhou	tristate "TCP Veno"
53376f10177SBin Zhou	depends on EXPERIMENTAL
53476f10177SBin Zhou	default n
53576f10177SBin Zhou	---help---
53676f10177SBin Zhou	TCP Veno is a sender-side only enhancement of TCP to obtain better
53776f10177SBin Zhou	throughput over wireless networks. TCP Veno makes use of state
53876f10177SBin Zhou	distinguishing to circumvent the difficult judgment of the packet loss
53976f10177SBin Zhou	type. TCP Veno cuts down less congestion window in response to random
54076f10177SBin Zhou	loss packets.
54176f10177SBin Zhou	See http://www.ntu.edu.sg/home5/ZHOU0022/papers/CPFu03a.pdf
54276f10177SBin Zhou
5435ef81475SAngelo P. Castellaniconfig TCP_CONG_YEAH
5445ef81475SAngelo P. Castellani	tristate "YeAH TCP"
5455ef81475SAngelo P. Castellani	depends on EXPERIMENTAL
5462ff011efSDavid S. Miller	select TCP_CONG_VEGAS
5475ef81475SAngelo P. Castellani	default n
5485ef81475SAngelo P. Castellani	---help---
5495ef81475SAngelo P. Castellani	YeAH-TCP is a sender-side high-speed enabled TCP congestion control
5505ef81475SAngelo P. Castellani	algorithm, which uses a mixed loss/delay approach to compute the
5515ef81475SAngelo P. Castellani	congestion window. It's design goals target high efficiency,
5525ef81475SAngelo P. Castellani	internal, RTT and Reno fairness, resilience to link loss while
5535ef81475SAngelo P. Castellani	keeping network elements load as low as possible.
5545ef81475SAngelo P. Castellani
5555ef81475SAngelo P. Castellani	For further details look here:
5565ef81475SAngelo P. Castellani	  http://wil.cs.caltech.edu/pfldnet2007/paper/YeAH_TCP.pdf
5575ef81475SAngelo P. Castellani
558c462238dSStephen Hemmingerconfig TCP_CONG_ILLINOIS
559c462238dSStephen Hemminger	tristate "TCP Illinois"
560c462238dSStephen Hemminger	depends on EXPERIMENTAL
561c462238dSStephen Hemminger	default n
562c462238dSStephen Hemminger	---help---
563c462238dSStephen Hemminger	TCP-Illinois is a sender-side modificatio of TCP Reno for
564c462238dSStephen Hemminger	high speed long delay links. It uses round-trip-time to
565c462238dSStephen Hemminger	adjust the alpha and beta parameters to achieve a higher average
566c462238dSStephen Hemminger	throughput and maintain fairness.
567c462238dSStephen Hemminger
568c462238dSStephen Hemminger	For further details see:
569c462238dSStephen Hemminger	  http://www.ews.uiuc.edu/~shaoliu/tcpillinois/index.html
570c462238dSStephen Hemminger
5713d2573f7SStephen Hemmingerchoice
5723d2573f7SStephen Hemminger	prompt "Default TCP congestion control"
573597811ecSStephen Hemminger	default DEFAULT_CUBIC
5743d2573f7SStephen Hemminger	help
5753d2573f7SStephen Hemminger	  Select the TCP congestion control that will be used by default
5763d2573f7SStephen Hemminger	  for all connections.
5773d2573f7SStephen Hemminger
5783d2573f7SStephen Hemminger	config DEFAULT_BIC
5793d2573f7SStephen Hemminger		bool "Bic" if TCP_CONG_BIC=y
5803d2573f7SStephen Hemminger
5813d2573f7SStephen Hemminger	config DEFAULT_CUBIC
5823d2573f7SStephen Hemminger		bool "Cubic" if TCP_CONG_CUBIC=y
5833d2573f7SStephen Hemminger
5843d2573f7SStephen Hemminger	config DEFAULT_HTCP
5853d2573f7SStephen Hemminger		bool "Htcp" if TCP_CONG_HTCP=y
5863d2573f7SStephen Hemminger
5873d2573f7SStephen Hemminger	config DEFAULT_VEGAS
5883d2573f7SStephen Hemminger		bool "Vegas" if TCP_CONG_VEGAS=y
5893d2573f7SStephen Hemminger
5903d2573f7SStephen Hemminger	config DEFAULT_WESTWOOD
5913d2573f7SStephen Hemminger		bool "Westwood" if TCP_CONG_WESTWOOD=y
5923d2573f7SStephen Hemminger
5933d2573f7SStephen Hemminger	config DEFAULT_RENO
5943d2573f7SStephen Hemminger		bool "Reno"
5953d2573f7SStephen Hemminger
5963d2573f7SStephen Hemmingerendchoice
5973d2573f7SStephen Hemminger
5983d2573f7SStephen Hemmingerendif
59983803034SStephen Hemminger
600597811ecSStephen Hemmingerconfig TCP_CONG_CUBIC
6016c360767SDavid S. Miller	tristate
602a6484045SDavid S. Miller	depends on !TCP_CONG_ADVANCED
603a6484045SDavid S. Miller	default y
604a6484045SDavid S. Miller
6053d2573f7SStephen Hemmingerconfig DEFAULT_TCP_CONG
6063d2573f7SStephen Hemminger	string
6073d2573f7SStephen Hemminger	default "bic" if DEFAULT_BIC
6083d2573f7SStephen Hemminger	default "cubic" if DEFAULT_CUBIC
6093d2573f7SStephen Hemminger	default "htcp" if DEFAULT_HTCP
6103d2573f7SStephen Hemminger	default "vegas" if DEFAULT_VEGAS
6113d2573f7SStephen Hemminger	default "westwood" if DEFAULT_WESTWOOD
6123d2573f7SStephen Hemminger	default "reno" if DEFAULT_RENO
613597811ecSStephen Hemminger	default "cubic"
6143d2573f7SStephen Hemminger
615cfb6eeb4SYOSHIFUJI Hideakiconfig TCP_MD5SIG
616cfb6eeb4SYOSHIFUJI Hideaki	bool "TCP: MD5 Signature Option support (RFC2385) (EXPERIMENTAL)"
617cfb6eeb4SYOSHIFUJI Hideaki	depends on EXPERIMENTAL
618cfb6eeb4SYOSHIFUJI Hideaki	select CRYPTO
619cfb6eeb4SYOSHIFUJI Hideaki	select CRYPTO_MD5
620cfb6eeb4SYOSHIFUJI Hideaki	---help---
6213dde6ad8SDavid Sterba	  RFC2385 specifies a method of giving MD5 protection to TCP sessions.
622cfb6eeb4SYOSHIFUJI Hideaki	  Its main (only?) use is to protect BGP sessions between core routers
623cfb6eeb4SYOSHIFUJI Hideaki	  on the Internet.
624cfb6eeb4SYOSHIFUJI Hideaki
625cfb6eeb4SYOSHIFUJI Hideaki	  If unsure, say N.
626cfb6eeb4SYOSHIFUJI Hideaki
6271da177e4SLinus Torvaldssource "net/ipv4/ipvs/Kconfig"
6281da177e4SLinus Torvalds
629