Config.in.network 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. menu "Network support"
  2. config ADK_KERNEL_CONFIG_INET
  3. bool "Enable TCP/IP support"
  4. select ADK_KERNEL_CRYPTO
  5. select ADK_KERNEL_CRYPTO_AES
  6. default y
  7. config ADK_KERNEL_IP_FIB_HASH
  8. bool
  9. default y
  10. config ADK_KERNEL_IPV6
  11. tristate "Enable IPv6 support"
  12. help
  13. This is complemental support for the IP version 6.
  14. You will still be able to do traditional IPv4 networking as well.
  15. For general information about IPv6, see
  16. <http://playground.sun.com/pub/ipng/html/ipng-main.html>.
  17. For Linux IPv6 development information, see <http://www.linux-ipv6.org>.
  18. For specific information about IPv6 under Linux, read the HOWTO at
  19. <http://www.bieringer.de/linux/IPv6/>.
  20. config ADK_KERNEL_IPV6_SIT
  21. tristate "IPv6-in-IPv4 tunnel (SIT driver)"
  22. select ADK_KERNEL_INET_TUNNEL
  23. help
  24. Tunneling means encapsulating data of one protocol type within
  25. another protocol and sending it over a channel that understands the
  26. encapsulating protocol. This driver implements encapsulation of IPv6
  27. into IPv4 packets. This is useful if you want to connect two IPv6
  28. networks over an IPv4-only path.
  29. config ADK_KERNEL_SYN_COOKIES
  30. bool "TCP syncookie support"
  31. config ADK_KERNEL_IP_PNP_BOOTP
  32. bool
  33. config ADK_KERNEL_IP_PNP_RARP
  34. bool
  35. config ADK_KERNEL_NET_IPGRE_BROADCAST
  36. bool
  37. config ADK_KERNEL_NET_IPGRE_DEMUX
  38. bool
  39. config ADK_KERNEL_PPP_ASYNC
  40. bool
  41. config ADK_KERNEL_SLHC
  42. bool
  43. config ADK_KERNEL_IMQ
  44. tristate
  45. config ADK_KERNEL_LLC
  46. tristate
  47. config ADK_KERNEL_IP_MULTICAST
  48. bool "Enable IP Multicasting"
  49. config ADK_KERNEL_IP_MROUTE
  50. bool "Enable IP Multicasting Routing"
  51. config ADK_KERNEL_ATM
  52. tristate "Asynchronous Transfer Mode (ATM)"
  53. help
  54. ATM is a high-speed networking technology for Local Area Networks
  55. and Wide Area Networks. It uses a fixed packet size and is
  56. connection oriented, allowing for the negotiation of minimum
  57. bandwidth requirements.
  58. In order to participate in an ATM network, your Linux box needs an
  59. ATM networking card. If you have that, say Y here and to the driver
  60. of your ATM card below.
  61. Note that you need a set of user-space programs to actually make use
  62. of ATM. See the file <file:Documentation/networking/atm.txt> for
  63. further details.
  64. config ADK_KERNEL_ATM_BR2684
  65. tristate "BR2684 ATM module"
  66. select ADK_KERNEL_ATM
  67. config ADK_KERNEL_BRIDGE
  68. tristate "802.1d Ethernet Bridging"
  69. select ADK_KERNEL_LLC
  70. help
  71. If you say Y here, then your Linux box will be able to act as an
  72. Ethernet bridge, which means that the different Ethernet segments it
  73. is connected to will appear as one Ethernet to the participants.
  74. Several such bridges can work together to create even larger
  75. networks of Ethernets using the IEEE 802.1 spanning tree algorithm.
  76. As this is a standard, Linux bridges will cooperate properly with
  77. other third party bridge products.
  78. In order to use the Ethernet bridge, you'll need the bridge
  79. configuration tools; see <file:Documentation/networking/bridge.txt>
  80. for location. Please read the Bridge mini-HOWTO for more
  81. information.
  82. If you enable iptables support along with the bridge support then you
  83. turn your bridge into a bridging IP firewall.
  84. iptables will then see the IP packets being bridged, so you need to
  85. take this into account when setting up your firewall rules.
  86. Enabling arptables support when bridging will let arptables see
  87. bridged ARP traffic in the arptables FORWARD chain.
  88. config ADK_KERNEL_VLAN_8021Q
  89. tristate "802.1q VLAN support"
  90. help
  91. Select this and you will be able to create 802.1Q VLAN interfaces
  92. on your ethernet interfaces. 802.1Q VLAN supports almost
  93. everything a regular ethernet interface does, including
  94. firewalling, bridging, and of course IP traffic. You will need
  95. the 'vconfig' tool from the VLAN project in order to effectively
  96. use VLANs. See the VLAN web page for more information:
  97. <http://www.candelatech.com/~greear/vlan.html>
  98. config ADK_KERNEL_INET_TUNNEL
  99. tristate
  100. config ADK_KERNEL_NET_IPIP
  101. tristate "IP in IP encapsulation support"
  102. select ADK_KERNEL_INET_TUNNEL
  103. help
  104. Tunneling means encapsulating data of one protocol type within
  105. another protocol and sending it over a channel that understands the
  106. encapsulating protocol. This particular tunneling driver implements
  107. encapsulation of IP within IP, which sounds kind of pointless, but
  108. can be useful if you want to make your (or some other) machine
  109. appear on a different network than it physically is, or to use
  110. mobile-IP facilities (allowing laptops to seamlessly move between
  111. networks without changing their IP addresses).
  112. config ADK_KERNEL_NET_IPGRE
  113. tristate "GRE tunnels over IP"
  114. select ADK_KERNEL_NET_IPGRE_BROADCAST
  115. select ADK_KERNEL_NET_IPGRE_DEMUX
  116. help
  117. Tunneling means encapsulating data of one protocol type within
  118. another protocol and sending it over a channel that understands the
  119. encapsulating protocol. This particular tunneling driver implements
  120. GRE (Generic Routing Encapsulation) and at this time allows
  121. encapsulating of IPv4 or IPv6 over existing IPv4 infrastructure.
  122. This driver is useful if the other endpoint is a Cisco router: Cisco
  123. likes GRE much better than the other Linux tunneling driver ("IP
  124. tunneling" above). In addition, GRE allows multicast redistribution
  125. through the tunnel.
  126. config ADK_KERNEL_PPP
  127. tristate "PPP support"
  128. select ADK_KERNEL_PPP_ASYNC
  129. select ADK_KERNEL_SLHC
  130. select ADK_KERNEL_CRC_CCITT
  131. help
  132. PPP (Point to Point Protocol) is a newer and better SLIP. It serves
  133. the same purpose: sending Internet traffic over telephone (and other
  134. serial) lines. Ask your access provider if they support it, because
  135. otherwise you can't use it; most Internet access providers these
  136. days support PPP rather than SLIP.
  137. To use PPP, you need an additional program called pppd as described
  138. in the PPP-HOWTO, available at
  139. <http://www.tldp.org/docs.html#howto>. Make sure that you have
  140. the version of pppd recommended in <file:Documentation/Changes>.
  141. The PPP option enlarges your kernel by about 16 KB.
  142. There are actually two versions of PPP: the traditional PPP for
  143. asynchronous lines, such as regular analog phone lines, and
  144. synchronous PPP which can be used over digital ISDN lines for
  145. example. If you want to use PPP over phone lines or other
  146. asynchronous serial lines, you need to say Y (or M) here and also to
  147. the next option, "PPP support for async serial ports". For PPP over
  148. synchronous lines, you should say Y (or M) here and to "Support
  149. synchronous PPP", below.
  150. config ADK_KERNEL_PPP_MPPE
  151. tristate "PPP MPPE/MPPC module"
  152. depends on ADK_KERNEL_PPP
  153. select ADK_KERNEL_CRYPTO
  154. select ADK_KERNEL_CRYPTO_ARC4
  155. select ADK_KERNEL_CRYPTO_SHA1
  156. select ADK_KERNEL_CRYPTO_ECB
  157. help
  158. Support for the MPPE Encryption protocol, as employed by the
  159. Microsoft Point-to-Point Tunneling Protocol.
  160. See http://pptpclient.sourceforge.net/ for information on
  161. configuring PPTP clients and servers to utilize this method.
  162. config ADK_KERNEL_PPPOATM
  163. tristate "PPPoA (PPP over ATM) kernel support"
  164. depends on ADK_KERNEL_PPP
  165. select ADK_KERNEL_ATM
  166. help
  167. Support for PPP over ATM
  168. config ADK_KERNEL_PPPOE
  169. tristate "PPPoE (PPP over Ethernet) kernel support"
  170. depends on ADK_KERNEL_PPP
  171. help
  172. Support for PPP over Ethernet
  173. config ADK_KERNEL_TUN
  174. tristate "Universal TUN/TAP driver"
  175. help
  176. Kernel support for the TUN/TAP tunneling device
  177. config ADK_KERNEL_BONDING
  178. tristate "Bonding driver support"
  179. help
  180. Say 'Y' or 'M' if you wish to be able to 'bond' multiple Ethernet
  181. Channels together. This is called 'Etherchannel' by Cisco,
  182. 'Trunking' by Sun, 802.3ad by the IEEE, and 'Bonding' in Linux.
  183. The driver supports multiple bonding modes to allow for both high
  184. performance and high availability operation.
  185. Refer to <file:Documentation/networking/bonding.txt> for more
  186. information.
  187. config ADK_KERNEL_MPTCP
  188. bool "Multipath TCP support"
  189. select ADK_KERNEL_IPV6
  190. depends on ADK_KERNEL_VERSION_3_14
  191. help
  192. http://www.multipath-tcp.org
  193. source target/linux/config/Config.in.sched
  194. source target/linux/config/Config.in.ipsec
  195. source target/linux/config/Config.in.ipvs
  196. endmenu