Connecting to A Cisco ROUTER via SSH on WIndows 11

Written by James McDonald

March 18, 2023

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

Submit a Comment

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

The reCAPTCHA verification period has expired. Please reload the page.

You May Also Like…

Robocopy exclude Directories

Just trying to copy everything except a couple of directories from a drive to my NAS This is the secret incantation of...