Public SSH Keys
Go to file
2024-11-29 21:32:52 +01:00
authorized_keys authorized_keys aktualisiert 2024-11-21 17:55:59 +01:00
HowTo.md HowTo.md aktualisiert 2024-11-21 17:22:29 +01:00
README.md README.md aktualisiert 2024-11-29 21:32:52 +01:00

Meine Public Keys

Hardware Keys

Swiss Token2
Solokey USB C
Solokey USB A
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.

KeyAuthentication

cd
mkdir -p ~/.ssh  
chmod 700 ~/.ssh  
cd .ssh 
wget https://git.rwolff.homelinux.net/rpwolff/public-keys/raw/branch/master/authorized_keys  
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

effektive sshd Konfiguration

sshd -T