Re: SSH access to router
Posted: Mon Aug 21, 2017 9:59 pm
Thanks for the assistance here billion_fan!
I was able to work out from ssh debug (using -v) that it was the cipher that needed to be added/set to allow ssh to work from my mbp.
I configured the following in my file and it worked;
HTH,
Mick
I was able to work out from ssh debug (using -v) that it was the cipher that needed to be added/set to allow ssh to work from my mbp.
I configured the following in my
Code: Select all
~/.ssh/config
Code: Select all
Host 192.168.1.254
User admin
KexAlgorithms +diffie-hellman-group1-sha1
Ciphers 3des-cbc
Mick