dot_testing/boxes/netbox/ssh.nix

51 lines
1.3 KiB
Nix
Raw Normal View History

2024-12-26 14:21:56 -06:00
{ lib, config, pkgs, machines, ... }:
2024-06-20 20:00:55 -05:00
{
services.openssh = {
enable = true;
ports = [55555];
settings = {
X11Forwarding = false;
PermitRootLogin = "no";
PasswordAuthentication = false;
};
};
2024-12-26 14:21:56 -06:00
users.users.ryan.openssh.authorizedKeys.keys = [
machines.copernicus.pubkey
machines.aristotle.pubkey
machines.phone.pubkey
];
environment.etc."ssh/sshrc".text = ''
login_ip="''${SSH_CLIENT%% *}"
is_in_ignored=$(grep "$login_ip" /etc/ssh/ignored_ips -c)
if [ "$is_in_ignored" -gt 0 ]; then
echo "Your login has been ignored based on your IP address."
exit
fi
time=$(date "+%T%:z")
geodata=$(
curl -s ipinfo.io/$login_ip |
sed '1d;$d;/readme/d;s/^ //g'
)
${pkgs.mailutils}/bin/mail \
ryan@beepboop.systems -r "ssh" \
-s "ssh login from $login_ip at $time" \
<<EOF
Hi there,
\`netbox\` was just logged into from $login_ip at $time (America/Chicago).
It was not in /etc/ssh/ignored_ips.
If this is you, that's great! If not, there is most certainly
an unauthorized user connected to the machine -- in which case, the
prudent course of action is to shut the machine down.
For your information, here is geolocation data from $login_ip.
$geodata
EOF
'';
2024-06-20 20:00:55 -05:00
}