I got the following when trying to connect via SSH
Unable to negotiate with 10.19.53.1 port 22: no matching key exchange method found. Their offer: diffie-hellman-group-exchange-sha1,diffie-hellman-group14-sha1
# fix
ssh -oKexAlgorithms=+diffie-hellman-group14-sha1 10.19.53.1 -l james
So using my previos post to work-a-round the problem
0 Comments