mirror of
https://github.com/openwrt/packages.git
synced 2025-12-10 12:41:22 +00:00
* split block/logging rules (fixed #27990) * adapt reload functions to support the new split logic * the banIP status now includes the backend- and the frontend version information * fixed a config parsing error with non existing dirs (reported in the forum) * fixed a small reporting issue (reported in the forum) * added a new public dns feed (by default restricted to outbound, ports 53 and 853) * added a new gawk dependency due to significant performance gains * LuCI: no longer call the logread binary, use rpc / the ubus log object instead * LuCI: various code cleanups * LuCI: various small usability improvements * readme update Signed-off-by: Dirk Brenken <dev@brenken.org>
75 lines
2.0 KiB
Makefile
75 lines
2.0 KiB
Makefile
# banIP - ban incoming and outgoing IPs via named nftables Sets
|
|
# Copyright (c) 2018-2025 Dirk Brenken (dev@brenken.org)
|
|
# This is free software, licensed under the GNU General Public License v3.
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=banip
|
|
PKG_VERSION:=1.6.0
|
|
PKG_RELEASE:=1
|
|
PKG_LICENSE:=GPL-3.0-or-later
|
|
PKG_MAINTAINER:=Dirk Brenken <dev@brenken.org>
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/banip
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=banIP blocks IPs via named nftables Sets
|
|
DEPENDS:=+jshn +jsonfilter +firewall4 +gawk +ca-bundle +rpcd +rpcd-mod-rpcsys
|
|
PKGARCH:=all
|
|
endef
|
|
|
|
define Package/banip/description
|
|
banIP blocks IPs via named nftables Sets.
|
|
banIP supports many IP blocklist feeds and provides a log service to block suspicious IPs in realtime.
|
|
Please see https://github.com/openwrt/packages/blob/master/net/banip/files/README.md for further information.
|
|
|
|
endef
|
|
|
|
define Package/banip/conffiles
|
|
/etc/config/banip
|
|
/etc/banip/banip.allowlist
|
|
/etc/banip/banip.blocklist
|
|
/etc/banip/banip.custom.feeds
|
|
endef
|
|
|
|
define Build/Prepare
|
|
endef
|
|
|
|
define Build/Configure
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/banip/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) ./files/banip-service.sh $(1)/usr/bin
|
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/banip.init $(1)/etc/init.d/banip
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(INSTALL_CONF) ./files/banip-functions.sh $(1)/usr/lib
|
|
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_CONF) ./files/banip.conf $(1)/etc/config/banip
|
|
|
|
$(INSTALL_DIR) $(1)/etc/banip
|
|
$(INSTALL_CONF) ./files/banip.tpl $(1)/etc/banip
|
|
$(INSTALL_CONF) ./files/banip.allowlist $(1)/etc/banip
|
|
$(INSTALL_CONF) ./files/banip.blocklist $(1)/etc/banip
|
|
$(INSTALL_CONF) ./files/banip.countries $(1)/etc/banip
|
|
$(INSTALL_CONF) ./files/banip.feeds $(1)/etc/banip
|
|
$(INSTALL_CONF) ./files/banip.custom.feeds $(1)/etc/banip
|
|
|
|
$(INSTALL_DIR) $(1)/www/cgi-bin
|
|
$(INSTALL_BIN) ./files/banip.cgi $(1)/www/cgi-bin/banip
|
|
|
|
$(INSTALL_DIR) $(1)/etc/uci-defaults
|
|
$(INSTALL_BIN) ./files/95-banip-housekeeping $(1)/etc/uci-defaults
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,banip))
|