summaryrefslogtreecommitdiffstats
path: root/drivers/net/Kconfig
diff options
context:
space:
mode:
authorSainath Grandhi <sainath.grandhi@intel.com>2017-02-10 19:03:52 -0500
committerDavid S. Miller <davem@davemloft.net>2017-02-11 20:59:41 -0500
commit235a9d89da976e2975b3de9afc0bed7b72557983 (patch)
treeb7d5175e7c84f0a806b52064b34f1ef0fd780111 /drivers/net/Kconfig
parent9a393b5d5988ea4eaa3e0da138321abe0dc03a68 (diff)
ipvtap: IP-VLAN based tap driver
This patch adds a tap character device driver that is based on the IP-VLAN network interface, called ipvtap. An ipvtap device can be created in the same way as an ipvlan device, using 'type ipvtap', and then accessed using the tap user space interface. Signed-off-by: Sainath Grandhi <sainath.grandhi@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/Kconfig')
-rw-r--r--drivers/net/Kconfig13
1 files changed, 13 insertions, 0 deletions
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig
index 5763503fe4e6..823bc2fd201f 100644
--- a/drivers/net/Kconfig
+++ b/drivers/net/Kconfig
@@ -166,6 +166,19 @@ config IPVLAN
166 To compile this driver as a module, choose M here: the module 166 To compile this driver as a module, choose M here: the module
167 will be called ipvlan. 167 will be called ipvlan.
168 168
169config IPVTAP
170 tristate "IP-VLAN based tap driver"
171 depends on IPVLAN
172 depends on INET
173 select TAP
174 ---help---
175 This adds a specialized tap character device driver that is based
176 on the IP-VLAN network interface, called ipvtap. An ipvtap device
177 can be added in the same way as a ipvlan device, using 'type
178 ipvtap', and then be accessed through the tap user space interface.
179
180 To compile this driver as a module, choose M here: the module
181 will be called ipvtap.
169 182
170config VXLAN 183config VXLAN
171 tristate "Virtual eXtensible Local Area Network (VXLAN)" 184 tristate "Virtual eXtensible Local Area Network (VXLAN)"