mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-23 07:22:33 +00:00
036221ce5a
Add config options: srcportmin/srcportmax : range of port numbers to use as UDP source ports to communicate to the remote VXLAN tunnel endpoint ageing : lifetime in seconds of FDB entries learnt by the kernel maxaddress : maximum number of FDB entries learning : enable/disable entering unknown source link layer addresses and IP addresses into the VXLAN device FDB. rsc : enable/disable route short circuit proxy : enable/disable ARP proxy l2miss : enable/disable netlink LLADDR miss notifications l3miss : enable/disable netlink IP ADDR miss notifications gbp : enable/disable the Group Policy extension Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
34 lines
663 B
Makefile
34 lines
663 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=vxlan
|
|
PKG_RELEASE:=5
|
|
PKG_LICENSE:=GPL-2.0
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/vxlan
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
MAINTAINER:=Matthias Schiffer <mschiffer@universe-factory.net>
|
|
TITLE:=Virtual eXtensible LAN config support
|
|
DEPENDS:=+kmod-vxlan
|
|
PKGARCH:=all
|
|
endef
|
|
|
|
define Package/vxlan/description
|
|
Virtual eXtensible LAN config support in /etc/config/network.
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Build/Configure
|
|
endef
|
|
|
|
define Package/vxlan/install
|
|
$(INSTALL_DIR) $(1)/lib/netifd/proto
|
|
$(INSTALL_BIN) ./files/vxlan.sh $(1)/lib/netifd/proto/vxlan.sh
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,vxlan))
|