16 lines
342 B
Nix
16 lines
342 B
Nix
{ config, depot, ... }:
|
|
{
|
|
services.fail2ban = {
|
|
enable = true;
|
|
banaction = "iptables-multiport[blocktype=DROP]";
|
|
jails.sshd.settings.mode = "aggressive";
|
|
ignoreIP = [
|
|
"10.0.0.0/8"
|
|
depot.reflection.interfaces.primary.addr
|
|
];
|
|
bantime-increment = {
|
|
enable = true;
|
|
maxtime = "48h";
|
|
};
|
|
};
|
|
}
|