With OpenSSH_8.9p1 for Windows, I'm trying to connect to a NuCom router NC-WR764TGV:
ssh user@192.168.1.1
Output:
Unable to negotiate with 192.168.1.1 port 22: no matching key exchange method found.
Their offer: diffie-hellman-group14-sha1,diffie-hellman-group1-sha1,kexguess2@matt.ucc.asn.au
Thus I tried:
ssh user@192.168.1.1 -oKexAlgorithms=+diffie-hellman-group1-sha1
Output:
Unable to negotiate with 192.168.1.1 port 22: no matching host key type found.
Their offer: ssh-rsa
Then:
ssh user@192.168.1.1 -oKexAlgorithms=+diffie-hellman-group1-sha1,+ssh-rsa
Output:
Unsupported KEX algorithm "ssh-rsa" command-line line 0: Bad SSH2 KexAlgorithms '+ssh-rsa'.
With ssh on my linux clients I had identical results. How can I talk to this router?