frr: add support for BGP MD5 authentication
You have to enable the CONFIG_TCP_MD5SIG kernel config option to be able to use the BGP MD5 authentication. Signed-off-by: Martin Schiller <ms@dev.tdt.de>
This commit is contained in:
parent
ff7f26e379
commit
2a3a3575fe
|
@ -8,7 +8,7 @@
|
|||
include $(TOPDIR)/rules.mk
|
||||
PKG_NAME:=frr
|
||||
PKG_VERSION:=9.0.0
|
||||
PKG_RELEASE:=5
|
||||
PKG_RELEASE:=6
|
||||
PKG_SOURCE_DATE:=2023-08-12
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_SOURCE_DATE).tar.gz
|
||||
|
@ -128,6 +128,9 @@ define BuildDaemon
|
|||
define Package/frr-$(1)
|
||||
$$(call Package/frr/Default)
|
||||
TITLE:= $(1) routing engine
|
||||
ifeq ($(1),bgpd)
|
||||
KCONFIG:=CONFIG_TCP_MD5SIG=y
|
||||
endif
|
||||
DEPENDS+=$(2)
|
||||
endef
|
||||
# if [ "$(1)" == "bfdd" ]; then \
|
||||
|
|
Loading…
Reference in New Issue