From 202ff8db1400fa17dbd4c525abaa8b1543b17bc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Sitarski?= Date: Tue, 3 Jan 2023 16:53:58 +0100 Subject: [PATCH] Remove duplicated 'actionstart = ' in fail2ban conf. In fail2ban example configuration for ipset option, there was a duplicated string which makes the ipset and fail2ban fail to create the set. Fail2ban will never ban any ip due to this error. --- docs/faq.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/faq.rst b/docs/faq.rst index bd0f4d17..df6fb664 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -665,7 +665,7 @@ Using iptables with ipset might reduce the system load in such attacks significa [Definition] - actionstart = actionstart = ipset --create f2b-bad-auth iphash + actionstart = ipset --create f2b-bad-auth iphash iptables -I DOCKER-USER -m set --match-set f2b-bad-auth src -j DROP actionstop = iptables -D DOCKER-USER -m set --match-set f2b-bad-auth src -j DROP