Não consigo ssh para um servidor que solicita um diffie-hellman-group1-sha1
método de troca de chaves:
ssh 123.123.123.123
Unable to negotiate with 123.123.123.123 port 22: no matching key exchange method found. Their offer: diffie-hellman-group1-sha1
Como habilitar o diffie-hellman-group1-sha1
método de troca de chaves no Debian 8.0?
Eu tentei (como proposto aqui )
adicione as seguintes linhas ao meu
/etc/ssh/ssh_config
KexAlgorithms diffie-hellman-group1-sha1,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha1 Ciphers 3des-cbc,blowfish-cbc,aes128-cbc,aes128-ctr,aes256-ctr
regenere chaves com
ssh-keygen -A
reinicie o ssh com
service ssh restart
mas ainda assim obtém o erro.