From 9b10795b4d1383aff08fa04d1e4962b8c86e0f14 Mon Sep 17 00:00:00 2001 From: Jakub Czajka Date: Sun, 25 Sep 2022 19:19:15 +0200 Subject: [PATCH] [sshd] Disable root login. `PermitRootLogin` is set by default to `yes`. --- sshd/sshd_config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sshd/sshd_config b/sshd/sshd_config index f08521d..4b5f40c 100644 --- a/sshd/sshd_config +++ b/sshd/sshd_config @@ -31,7 +31,7 @@ Port 72 # Authentication: #LoginGraceTime 2m -#PermitRootLogin prohibit-password +PermitRootLogin no #StrictModes yes #MaxAuthTries 6 #MaxSessions 10 -- 2.39.5