services/fail2ban: wip barebonesconfiguration

This commit is contained in:
Kevin Baensch 2025-03-21 23:21:40 +01:00
parent 80926102f4
commit 6d4b0750b6
Signed by: derped
GPG key ID: C0F1D326C7626543

View file

@ -11,94 +11,98 @@ in
mkIf (elem "fail2ban" cfg.services) {
services.fail2ban = {
enable = true;
# Ban IP after 5 failures
maxretry = 5;
ignoreIP = [
"127.0.0.1"
"152.53.131.220"
];
bantime = "24h"; # Ban IPs for one day on the first ban
bantime-increment = {
enable = true; # Enable increment of bantime after each violation
formula = "ban.Time * math.exp(float(ban.Count+1)*banFactor)/math.exp(1*banFactor)";
maxtime = "672h"; # Do not ban for more than 4 weeks
overalljails = true; # Calculate the bantime based on all the violations
};
jails = {
DEFAULT = ''
bantime = 3600
blocktype = DROP
logpath = /var/log/auth.log
'';
ssh = ''
enabled = ${boolToString (active "openssh")}
filter = sshd
maxretry = 4
action = iptables[name=SSH, port=ssh, protocol=tcp]
'';
sshd-ddos = ''
enabled = ${boolToString (active "openssh")}
filter = sshd-ddos
maxretry = 4
action = iptables[name=ssh, port=ssh, protocol=tcp]
'';
postfix = ''
enabled = ${boolToString (active "mailserver")}
filter = postfix
maxretry = 3
action = iptables[name=postfix, port=smtp, protocol=tcp]
'';
postfix-sasl = ''
enabled = ${boolToString (active "mailserver")}
filter = postfix-sasl
port = postfix,imap3,imaps,pop3,pop3s
maxretry = 3
action = iptables[name=postfix, port=smtp, protocol=tcp]
'';
postfix-ddos = ''
enabled = ${boolToString (active "mailserver")}
filter = postfix-ddos
maxretry = 3
action = iptables[name=postfix, port=submission, protocol=tcp]
bantime = 7200
'';
nginx-req-limit = ''
enabled = ${boolToString (active "nginx")}
filter = nginx-req-limit
maxretry = 10
action = iptables-multiport[name=ReqLimit, port="http,https", protocol=tcp]
findtime = 600
bantime = 7200
'';
sshd = {
settings = {
enabled = active "openssh";
filter = "sshd[mode=normal]";
};
};
dovecot = {
settings = {
enabled = active "mailserver";
filter = "dovecot[mode=normal]";
};
};
radicale = {
settings = {
enabled = active "radicale";
filter = "radicale";
banaction = "%(banaction_allports)s[name=radicale]";
backend = "systemd";
journalmatch = "_SYSTEMD_UNIT=radicale.service";
};
};
# ''
# enabled = ${boolToString (active "openssh")}
# filter = sshd
# maxretry = 4
# action = iptables[name=SSH, port=ssh, protocol=tcp]
# '';
};
};
environment.etc."fail2ban/filter.d/sshd-ddos.conf" = {
enable = active "openssh";
environment.etc."fail2ban/filter.d/radicale.conf" = {
enable = active "radicale";
text = ''
[Definition]
failregex = sshd(?:\[\d+\])?: Did not receive identification string from <HOST>$
ignoreregex =
'';
};
environment.etc."fail2ban/filter.d/postfix-sasl.conf" = {
enable = active "mailserver";
text = ''
# Fail2Ban filter for postfix authentication failures
[INCLUDES]
before = common.conf
[Definition]
daemon = postfix/smtpd
failregex = ^%(__prefix_line)swarning: [-._\w]+\[<HOST>\]: SASL (?:LOGIN|PLAIN|(?:CRAM|DIGEST)-MD5) authentication failed(: [ A-Za-z0-9+/]*={0,2})?\s*$
'';
};
environment.etc."fail2ban/filter.d/postfix-ddos.conf" = {
enable = active "mailserver";
text = ''
[Definition]
failregex = lost connection after EHLO from \S+\[<HOST>\]
'';
};
failregex = ^.*Failed\slogin\sattempt\sfrom\s.*\(forwarded for \'<HOST>\'.*\):\s.*
environment.etc."fail2ban/filter.d/nginx-req-limit.conf" = {
enable = active "nginx";
text = ''
[Definition]
failregex = limiting requests, excess:.* by zone.*client: <HOST>
[Init]
'';
};
# environment.etc."fail2ban/filter.d/sshd-ddos.conf" = {
# enable = active "openssh";
# text = ''
# [Definition]
# failregex = sshd(?:\[\d+\])?: Did not receive identification string from <HOST>$
# ignoreregex =
# '';
# };
#
# environment.etc."fail2ban/filter.d/postfix-sasl.conf" = {
# enable = active "mailserver";
# text = ''
# # Fail2Ban filter for postfix authentication failures
# [INCLUDES]
# before = common.conf
# [Definition]
# daemon = postfix/smtpd
# failregex = ^%(__prefix_line)swarning: [-._\w]+\[<HOST>\]: SASL (?:LOGIN|PLAIN|(?:CRAM|DIGEST)-MD5) authentication failed(: [ A-Za-z0-9+/]*={0,2})?\s*$
# '';
# };
#
# environment.etc."fail2ban/filter.d/postfix-ddos.conf" = {
# enable = active "mailserver";
# text = ''
# [Definition]
# failregex = lost connection after EHLO from \S+\[<HOST>\]
# '';
# };
#
# environment.etc."fail2ban/filter.d/nginx-req-limit.conf" = {
# enable = active "nginx";
# text = ''
# [Definition]
# failregex = limiting requests, excess:.* by zone.*client: <HOST>
# '';
# };
# Limit stack size to reduce memory usage
systemd.services.fail2ban.serviceConfig.LimitSTACK = 256 * 1024;