Sshd : Enable key auth.

This commit is contained in:
Dmitry Voronin 2024-03-09 19:35:05 +03:00
parent 9e9dbc8591
commit 187b9ffe97

View file

@ -9,12 +9,12 @@
port = 22143;
}
];
settings = {
settings = { # TODO: Migrate from passwords.
AllowUsers = [ "root" ];
LoginGraceTime = "1m";
MaxAuthTries = 1;
MaxAuthTries = 4;
MaxSessions = 10;
PermitRootLogin = "yes";
PermitRootLogin = "yes"; # TODO: Make `prohibit-password`.
StrictModes = false;
UseDns = false;
@ -26,7 +26,7 @@
KerberosAuthentication = false;
PasswordAuthentication = true;
PermitEmptyPasswords = false;
PubkeyAuthentication = false;
PubkeyAuthentication = true;
};
};
}