2018-11-10 10:01:45 +00:00
# banIP - ban incoming and/or outgoing ip adresses via ipsets
## Description
IP address blocking is commonly used to protect against brute force attacks, prevent disruptive or unautherized address(es) from access or it can be used to restrict access to or from a particular geographic area — for example.
## Main Features
* support many IP blocklist sources (free for private usage, for commercial use please check their individual licenses):
* zero-conf like automatic installation & setup, usually no manual changes needed
2019-09-09 15:12:52 +00:00
* supports four different download utilities: uclient-fetch, wget, curl, aria2c
2018-11-10 10:01:45 +00:00
* Really fast downloads & list processing as they are handled in parallel as background jobs in a configurable 'Download Queue'
* full IPv4 and IPv6 support
* ipsets (one per source) are used to ban a large number of IP addresses
* supports blocking by ASN numbers
* supports blocking by iso country codes
* supports local white & blacklist (IPv4, IPv6 & CIDR notation), located by default in /etc/banip/banip.whitelist and /etc/banip/banip.blacklist
2019-09-09 15:12:52 +00:00
* auto-add unsuccessful ssh login attempts to 'dropbear' or 'sshd' to local blacklist (see 'ban_autoblacklist' option)
2019-08-06 13:53:46 +00:00
* auto-add the uplink subnet to local whitelist (see 'ban_autowhitelist' option)
2018-11-10 10:01:45 +00:00
* per source configuration of SRC (incoming) and DST (outgoing)
* integrated IPSet-Lookup
* integrated RIPE-Lookup
* blocklist source parsing by fast & flexible regex rulesets
* minimal status & error logging to syslog, enable debug logging to receive more output
2019-09-09 15:12:52 +00:00
* procd based init system support (start/stop/restart/reload/refresh/status)
2018-11-10 10:01:45 +00:00
* procd network interface trigger support
2019-09-09 15:12:52 +00:00
* automatic blocklist backup & restore, they will be used in case of download errors or during startup
2018-11-10 10:01:45 +00:00
* output comprehensive runtime information via LuCI or via 'status' init command
* strong LuCI support
* optional: add new banIP sources on your own
## Prerequisites
2019-09-09 15:12:52 +00:00
* [OpenWrt ](https://openwrt.org ), tested with the stable release series (19.07) and with the latest snapshot
2018-11-10 10:01:45 +00:00
* a download utility:
2019-09-09 15:12:52 +00:00
* to support all blocklist sources a full version with ssl support of 'wget', 'uclient-fetch' with one of the 'libustream-*' ssl libraries, 'aria2c' or 'curl' is required
2018-11-10 10:01:45 +00:00
## Installation & Usage
* install 'banip' (_opkg install banip_)
* at minimum configure the needed IP blocklist sources, the download utility and enable the banIP service in _/etc/config/banip_
2019-09-09 15:12:52 +00:00
* control the banip service manually with _/etc/init.d/banip_ start/stop/restart/reload/refresh/status or use the LuCI frontend
2018-11-10 10:01:45 +00:00
## LuCI banIP companion package
* it's recommended to use the provided LuCI frontend to control all aspects of banIP
* install 'luci-app-banip' (_opkg install luci-app-banip_)
* the application is located in LuCI under 'Services' menu
2019-01-05 15:28:44 +00:00
## banIP config options
* usually the pre-configured banIP setup works quite well and no manual overrides are needed
* the following options apply to the 'global' config section:
* ban\_enabled => main switch to enable/disable banIP service (bool/default: '0', disabled)
* ban\_automatic => determine the L2/L3 WAN network device automatically (bool/default: '1', enabled)
* ban\_fetchutil => name of the used download utility: 'uclient-fetch', 'wget', 'curl', 'aria2c', 'wget-nossl'. 'busybox' (default: 'uclient-fetch')
* ban\_iface => space separated list of WAN network interface(s)/device(s) used by banIP (default: automatically set by banIP ('ban_automatic'))
* the following options apply to the 'extra' config section:
2019-08-06 13:53:46 +00:00
* ban\_debug => enable/disable banIP debug output (bool/default: '0', disabled)
2019-01-05 15:28:44 +00:00
* ban\_nice => set the nice level of the banIP process and all sub-processes (int/default: '0', standard priority)
* ban\_triggerdelay => additional trigger delay in seconds before banIP processing begins (int/default: '2')
2019-09-09 15:12:52 +00:00
* ban\_backupdir => target directory for banIP backups (default: '/tmp')
* ban\_sshdaemon => select the SSH daemon for logfile parsing, 'dropbear' or 'sshd' (default: 'dropbear')
* ban\_starttype => select the used start type during boot, 'start' or 'reload' (default: 'start')
* ban\_maxqueue => size of the download queue to handle downloads & IPSet processing in parallel (int/default: '4')
2019-01-05 15:28:44 +00:00
* ban\_fetchparm => special config options for the download utility (default: not set)
2019-08-06 13:53:46 +00:00
* ban\_autoblacklist => store auto-addons temporary in ipset and permanently in local blacklist as well (bool/default: '1', enabled)
* ban\_autowhitelist => store auto-addons temporary in ipset and permanently in local whitelist as well (bool/default: '1', enabled)
2019-01-05 15:28:44 +00:00
2018-11-10 10:01:45 +00:00
## Examples
**receive banIP runtime information:**
< pre > < code >
/etc/init.d/banip status
::: banIP runtime information
+ status : enabled
2019-09-09 15:12:52 +00:00
+ version : 0.2.0
2018-11-10 10:01:45 +00:00
+ fetch_info : /bin/uclient-fetch (libustream-ssl)
2019-09-09 15:12:52 +00:00
+ ipset_info : 11 IPSets with overall 118359 IPs/Prefixes
+ backup_dir : /tmp
+ last_run : 09.09.2019 16:49:40
+ system : UBNT-ERX, OpenWrt SNAPSHOT r10962-c19b9f9a26
2018-11-10 10:01:45 +00:00
< / code > < / pre >
2019-09-09 15:12:52 +00:00
**cronjob for a regular IPSet blocklist update (/etc/crontabs/root):**
2018-11-10 10:01:45 +00:00
< pre > < code >
0 06 * * * /etc/init.d/banip reload
< / code > < / pre >
## Support
2019-01-05 15:28:44 +00:00
Please join the banIP discussion in this [forum thread ](https://forum.openwrt.org/t/banip-support-thread/16985 ) or contact me by mail < dev @ brenken . org >
2018-11-10 10:01:45 +00:00
## Removal
* stop all banIP related services with _/etc/init.d/banip stop_
* optional: remove the banip package (_opkg remove banip_)
Have fun!
Dirk