Created
June 3, 2020 11:30
-
-
Save elcascarudo-dev/e15b7c7ae07080f9476f13c8161d97b5 to your computer and use it in GitHub Desktop.
Error al conectarse por ssh (+diffie-hellman-group1-sha1)
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
-> Conexión: | |
ssh [email protected] | |
-> Error: | |
Unable to negotiate with 10.10.10.10 port 22: no matching key exchange method found. | |
Their offer: diffie-hellman-group-exchange-sha1,diffie-hellman-group14-sha1,diffie-hellman-group1-sha1 | |
------------------------------------------------------------------------------------------------------------- | |
#Solución. | |
-> Evidar el siguiente archivo: | |
vim ~/.ssh/config | |
-> Pegar el siguiente texto: | |
Host 10.10.10.10 | |
KexAlgorithms +diffie-hellman-group1-sha1 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment