From 64d6aea854e3fd7f300f11c062dbf229273f3a34 Mon Sep 17 00:00:00 2001 From: Ralf-Peter Wolff Date: Fri, 29 Nov 2024 21:23:57 +0100 Subject: [PATCH] README.md aktualisiert --- README.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 46f4be8..7136cb2 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,8 @@ OnlyKey Die Schlüssel können mit ssh-keygen -K wieder hergestellt werden. Dabei entstehen der private und der öffentliche Schlüssel im aktuellen Verzeichnis neu. -Downloadlink - + +KeyAuthentication ``` cd mkdir -p ~/.ssh @@ -19,7 +19,16 @@ mv authorized_keys ~/.ssh chmod 600 ~/.ssh/authorized_keys ``` +Disable Passwortauthentication ``` sed -ri "s/^#? *PasswordAuthentication *yes.*/PasswordAuthentication no/" /etc/ssh/sshd_config +sed -i 's|UsePAM yes|UsePAM no|g' /etc/ssh/sshd_config systemctl restart ssh ``` + +Enable Passwortauthentication +``` +sed -i 's|[#]*PasswordAuthentication no|PasswordAuthentication yes|g' /etc/ssh/sshd_config +sed -i 's|UsePAM no|UsePAM yes|g' /etc/ssh/sshd_config +service ssh restart +```