feat(endlessh): add an ssh tarpit to raptus
This commit is contained in:
parent
3b5f91973c
commit
5716c2eee9
1 changed files with 12 additions and 3 deletions
|
@ -2,6 +2,7 @@
|
|||
modulesPath,
|
||||
lib,
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
let
|
||||
|
@ -39,11 +40,11 @@ in
|
|||
networking.firewall = lib.mkForce {
|
||||
enable = true;
|
||||
allowedTCPPorts = [
|
||||
22
|
||||
443
|
||||
5984 # couchdb
|
||||
3000 # forgejo
|
||||
];
|
||||
8000 # rustypaste
|
||||
] ++ config.services.openssh.ports ++ [ config.services.endlessh.port ];
|
||||
};
|
||||
|
||||
# User account to run remote builds
|
||||
|
@ -93,7 +94,15 @@ in
|
|||
];
|
||||
};
|
||||
|
||||
services.openssh.enable = true;
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
ports = [ 56528 ];
|
||||
};
|
||||
|
||||
services.endlessh = {
|
||||
enable = true;
|
||||
port = 22;
|
||||
};
|
||||
|
||||
environment.systemPackages = map lib.lowPrio [
|
||||
pkgs.curl
|
||||
|
|
Loading…
Add table
Reference in a new issue