kernel: add ip_vti tunnel module
IP VTI (Virtual Tunnel Interface) is used to create a virtual device for IPsec VPN (similar to OpenVPN). Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com> SVN-Revision: 44606
This commit is contained in:
parent
b48b7a7689
commit
700a53f8e2
1 changed files with 16 additions and 0 deletions
|
@ -405,6 +405,22 @@ endef
|
||||||
$(eval $(call KernelPackage,iptunnel))
|
$(eval $(call KernelPackage,iptunnel))
|
||||||
|
|
||||||
|
|
||||||
|
define KernelPackage/ipvti
|
||||||
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
||||||
|
TITLE:=IP VTI (Virtual Tunnel Interface)
|
||||||
|
DEPENDS:=+kmod-iptunnel +kmod-iptunnel4 +kmod-ipsec4
|
||||||
|
KCONFIG:=CONFIG_NET_IPVTI
|
||||||
|
FILES:=$(LINUX_DIR)/net/ipv4/ip_vti.ko
|
||||||
|
AUTOLOAD:=$(call AutoLoad,33,ip_vti)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/ipvti/description
|
||||||
|
Kernel modules for IP VTI (Virtual Tunnel Interface)
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,ipvti))
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/iptunnel4
|
define KernelPackage/iptunnel4
|
||||||
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
SUBMENU:=$(NETWORK_SUPPORT_MENU)
|
||||||
TITLE:=IPv4 tunneling
|
TITLE:=IPv4 tunneling
|
||||||
|
|
Loading…
Reference in a new issue