A docker-fail2ban which includes armhf support
272
š³ Fail2banā Docker image based on Alpine Linux.
If you are interested, check outā my other š³ Docker images!
TZ : The timezone assigned to the container (default UTC)F2B_LOG_TARGET : Set the log target. This could be a file, SYSLOG, STDERR or STDOUT (default STDOUT)F2B_LOG_LEVEL : Log level output (default INFO)F2B_DB_PURGE_AGE : Age at which bans should be purged from the database (default 1d)F2B_MAX_RETRY : Number of failures before a host get banned (default 5)F2B_DEST_EMAIL : Destination email address used solely for the interpolations in configuration files (default root@localhost)F2B_SENDER : Sender email address used solely for some actions (default root@$(hostname -f))F2B_ACTION : Default action on ban (default %(action_)s)F2B_IPTABLES_CHAIN : Specifies the iptables chain to which the Fail2Ban rules should be added (default DOCKER-USER)SSMTP_HOST : SMTP server hostSSMTP_PORT : SMTP server port (default 25)SSMTP_HOSTNAME : Full hostname (default $(hostname -f))SSMTP_USER : SMTP usernameSSMTP_PASSWORD : SMTP passwordSSMTP_TLS : SSL/TLS (default NO):warning: If you want email to be sent after a ban, you have to configure SSMTP env vars and set F2B_ACTION to
%(action_mw)sor%(action_mwl)s
/data : Contains customs jails, actions and filters and Fail2ban persistent databaseDocker compose is the recommended way to run this image. Copy the content of folder examples/composeā in /var/fail2ban/ on your host for example. Edit the compose and env files with your preferences and run the following commands :
docker-compose up -d
docker-compose logs -f
You can also use the following minimal command :
docker run -d --name fail2ban --restart always \
--network host \
--cap-add NET_ADMIN \
--cap-add NET_RAW \
-v $(pwd)/data:/data \
-v /var/log:/var/log:ro \
crazymax/fail2ban:latest
DOCKER-USER chainIn Docker 17.06 and higher through docker/libnetwork#1675ā , you can add rules to a new table called DOCKER-USER, and these rules will be loaded before any rules Docker creates automatically. This is useful to make iptables rules created by Fail2Ban persistent.
If you have an older version of Docker, you may just change F2B_IPTABLES_CHAIN to FORWARD. This way, all Fail2Ban rules come before any Docker rules but these rules will now apply to ALL forwarded traffic.
More info : https://docs.docker.com/network/iptables/ā
DOCKER-USER and INPUT chainsIf your Fail2Ban container is attached to DOCKER-USER chain instead of INPUT, the rules will be applied only to containers. This means that any packets coming into the INPUT chain will bypass these rules that now reside under the FORWARD chain.
This implies that sshdā jail for example will not work as intended. You can create another Fail2Ban container. Take a look at this exampleā .
Fail2ban commandsā can be used through the container. Here is an example if you want to ban an IP manually :
docker exec -t <CONTAINER> fail2ban-client set <JAIL> banip <IP>
Custom actions and filters can be added in /data/action.d and /data/filter.d. If you add an action/filter that already exists, it will be overriden.
:warning: Container has to be restarted to propagate changes
Jail examples can be found in examples/jailsā to work with this image.
All kinds of contributions are welcome :raised_hands:!
The most basic way to show your support is to star :star2: the project, or to raise issues :speech_balloon:
But we're not gonna lie to each other, I'd rather you buy me a beer or two :beers:!
MIT. See LICENSE for more details.
Content type
Image
Digest
Size
57 MB
Last updated
about 7 years ago
docker pull ericsciberras/docker-fail2ban