From cc0f964095947705e3dab71d079aa5254fc6115e Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Wed, 2 Jan 2019 00:26:50 -0700 Subject: [PATCH] fixed host key configuration mistake --- config/etc/ssh/sshd_config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/etc/ssh/sshd_config b/config/etc/ssh/sshd_config index e16ff59..20d53c3 100644 --- a/config/etc/ssh/sshd_config +++ b/config/etc/ssh/sshd_config @@ -12,8 +12,8 @@ ClientAliveCountMax 30 Protocol 2 ### Authentication settings -HostKey /etc/ssh/ed25519.key.pub -HostKey /etc/ssh/RSA4096.key.pub +HostKey /etc/ssh/ed25519.key +HostKey /etc/ssh/RSA4096.key #PasswordAuthentication no PasswordAuthentication yes PermitEmptyPasswords no