Non riesco a inviare SSH a un server che richiede un diffie-hellman-group1-sha1
metodo di scambio di chiavi:
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
Come abilitare il diffie-hellman-group1-sha1
metodo di scambio delle chiavi su Debian 8.0?
Ho provato (come proposto qui ) a
aggiungi le seguenti righe al mio
/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
rigenerare i tasti con
ssh-keygen -A
riavvia ssh con
service ssh restart
ma ottiene ancora l'errore.