14 lines
324 B
Nix
14 lines
324 B
Nix
{
|
|
services.fail2ban = {
|
|
enable = true;
|
|
maxretry = 5;
|
|
bantime = "6h";
|
|
bantime-increment = {
|
|
enable = true;
|
|
formula = "ban.Time * math.exp(float(ban.Count+1)*banFactor)/math.exp(1*banFactor)";
|
|
multipliers = "1 2 4 8 16 32 64";
|
|
rndtime = "6h";
|
|
overalljails = true;
|
|
};
|
|
};
|
|
}
|