diff options
author | James Chapman <jchapman@katalix.com> | 2007-06-27 18:49:24 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-07-11 01:15:59 -0400 |
commit | 3557baabf28088f49bdf72a048fd33ab62e205b1 (patch) | |
tree | c0e2f8f03b037758a9fd790adf9bfa1580109910 /drivers/net/Kconfig | |
parent | cf14a4d06742d59ecb2d837a3f53bb24d1ff9acb (diff) |
[L2TP]: PPP over L2TP driver core
This driver handles only L2TP data frames; control frames are handled
by a userspace application. It implements L2TP using the PPPoX socket
family. There is a PPPoX socket for each L2TP session in an L2TP
tunnel. PPP data within each session is passed through the kernel's
PPP subsystem via this driver. Kernel parameters of each socket can be
read or modified using ioctl() or [gs]etsockopt() calls.
Signed-off-by: James Chapman <jchapman@katalix.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/Kconfig')
-rw-r--r-- | drivers/net/Kconfig | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index b941c74a06c4..c251cca295c1 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig | |||
@@ -2784,6 +2784,19 @@ config PPPOATM | |||
2784 | which can lead to bad results if the ATM peer loses state and | 2784 | which can lead to bad results if the ATM peer loses state and |
2785 | changes its encapsulation unilaterally. | 2785 | changes its encapsulation unilaterally. |
2786 | 2786 | ||
2787 | config PPPOL2TP | ||
2788 | tristate "PPP over L2TP (EXPERIMENTAL)" | ||
2789 | depends on EXPERIMENTAL && PPP | ||
2790 | help | ||
2791 | Support for PPP-over-L2TP socket family. L2TP is a protocol | ||
2792 | used by ISPs and enterprises to tunnel PPP traffic over UDP | ||
2793 | tunnels. L2TP is replacing PPTP for VPN uses. | ||
2794 | |||
2795 | This kernel component handles only L2TP data packets: a | ||
2796 | userland daemon handles L2TP the control protocol (tunnel | ||
2797 | and session setup). One such daemon is OpenL2TP | ||
2798 | (http://openl2tp.sourceforge.net/). | ||
2799 | |||
2787 | config SLIP | 2800 | config SLIP |
2788 | tristate "SLIP (serial line) support" | 2801 | tristate "SLIP (serial line) support" |
2789 | ---help--- | 2802 | ---help--- |