Kconfig 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. #
  2. # Layer Two Tunneling Protocol (L2TP)
  3. #
  4. menuconfig L2TP
  5. tristate "Layer Two Tunneling Protocol (L2TP)"
  6. depends on INET
  7. ---help---
  8. Layer Two Tunneling Protocol
  9. From RFC 2661 <http://www.ietf.org/rfc/rfc2661.txt>.
  10. L2TP facilitates the tunneling of packets across an
  11. intervening network in a way that is as transparent as
  12. possible to both end-users and applications.
  13. L2TP is often used to tunnel PPP traffic over IP
  14. tunnels. One IP tunnel may carry thousands of individual PPP
  15. connections. L2TP is also used as a VPN protocol, popular
  16. with home workers to connect to their offices.
  17. L2TPv3 allows other protocols as well as PPP to be carried
  18. over L2TP tunnels. L2TPv3 is defined in RFC 3931
  19. <http://www.ietf.org/rfc/rfc3931.txt>.
  20. The kernel component handles only L2TP data packets: a
  21. userland daemon handles L2TP the control protocol (tunnel
  22. and session setup). One such daemon is OpenL2TP
  23. (http://openl2tp.org/).
  24. If you don't need L2TP, say N. To compile all L2TP code as
  25. modules, choose M here.
  26. config L2TP_V3
  27. bool "L2TPv3 support (EXPERIMENTAL)"
  28. depends on EXPERIMENTAL && L2TP
  29. help
  30. Layer Two Tunneling Protocol Version 3
  31. From RFC 3931 <http://www.ietf.org/rfc/rfc3931.txt>.
  32. The Layer Two Tunneling Protocol (L2TP) provides a dynamic
  33. mechanism for tunneling Layer 2 (L2) "circuits" across a
  34. packet-oriented data network (e.g., over IP). L2TP, as
  35. originally defined in RFC 2661, is a standard method for
  36. tunneling Point-to-Point Protocol (PPP) [RFC1661] sessions.
  37. L2TP has since been adopted for tunneling a number of other
  38. L2 protocols, including ATM, Frame Relay, HDLC and even raw
  39. ethernet frames.
  40. If you are connecting to L2TPv3 equipment, or you want to
  41. tunnel raw ethernet frames using L2TP, say Y here. If
  42. unsure, say N.