Created
May 2, 2018 08:51
-
-
Save sven-bock/8d00721feef030860f1cbe4be77d322f to your computer and use it in GitHub Desktop.
openssh does not accept dss key type
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Error from /var/log/auth.log upon ssh login when ssh key is not accepted: | |
userauth_pubkey: key type ssh-dss not in PubkeyAcceptedKeyTypes [preauth] | |
sudo nano /etc/ssh/sshd_config | |
#add this line | |
PubkeyAcceptedKeyTypes=+ssh-dss | |
#save and close | |
#reload service | |
sudo service sshd reload |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment