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 +```