nix-da/hosts/raptus/fail2ban.nix
2025-01-10 09:31:18 +01:00

25 lines
561 B
Nix

{ pkgs, ... }:
{
config = {
services.fail2ban = {
enable = false;
extraPackages = with pkgs; [ nftables ];
maxretry = 5;
bantime = "10m";
ignoreIP = [
"100.64.0.0/16" # Tailscale
];
banaction = "nftables-multiport";
banaction-allports = "nftables-allports";
bantime-increment = {
enable = true;
multipliers = "2 8 32 128 512 2048";
maxtime = "2400h"; # 100 days
overalljails = true; # Calculate the bantime based on all the violations
};
};
};
}