aboutsummaryrefslogtreecommitdiffstats
path: root/net/l2tp/Kconfig
diff options
context:
space:
mode:
authorJames Chapman <jchapman@katalix.com>2010-04-02 02:19:26 -0400
committerDavid S. Miller <davem@davemloft.net>2010-04-03 17:56:06 -0400
commitd9e31d17ceba5f0736f5a34bbc236239cd42b420 (patch)
treed31a8fb8365c85db07b649a5d5aa11069890de23 /net/l2tp/Kconfig
parente02d494d2c60746ee6583132904ac1791f5bc9a6 (diff)
l2tp: Add L2TP ethernet pseudowire support
This driver presents a regular net_device for each L2TP ethernet pseudowire instance. These interfaces are named l2tpethN by default, though userspace can specify an alternative name when the L2TP session is created, if preferred. When the pseudowire is established, regular Linux networking utilities may be used to configure the interface, i.e. give it IP address info or add it to a bridge. Any data passed over the interface is carried over an L2TP tunnel. Signed-off-by: James Chapman <jchapman@katalix.com> Reviewed-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/l2tp/Kconfig')
-rw-r--r--net/l2tp/Kconfig24
1 files changed, 24 insertions, 0 deletions
diff --git a/net/l2tp/Kconfig b/net/l2tp/Kconfig
index 0a11ccf2d95b..a292270c0abe 100644
--- a/net/l2tp/Kconfig
+++ b/net/l2tp/Kconfig
@@ -68,3 +68,27 @@ config L2TP_IP
68 68
69 To compile this driver as a module, choose M here. The module 69 To compile this driver as a module, choose M here. The module
70 will be called l2tp_ip. 70 will be called l2tp_ip.
71
72config L2TP_ETH
73 tristate "L2TP ethernet pseudowire support for L2TPv3"
74 depends on L2TP_V3
75 help
76 Support for carrying raw ethernet frames over L2TPv3.
77
78 From RFC 4719 <http://www.ietf.org/rfc/rfc4719.txt>.
79
80 The Layer 2 Tunneling Protocol, Version 3 (L2TPv3) can be
81 used as a control protocol and for data encapsulation to set
82 up Pseudowires for transporting layer 2 Packet Data Units
83 across an IP network [RFC3931].
84
85 This driver provides an ethernet virtual interface for each
86 L2TP ethernet pseudowire instance. Standard Linux tools may
87 be used to assign an IP address to the local virtual
88 interface, or add the interface to a bridge.
89
90 If you are using L2TPv3, you will almost certainly want to
91 enable this option.
92
93 To compile this driver as a module, choose M here. The module
94 will be called l2tp_eth.