When attempting to SSH to my Router I received the following error:
'no matching cipher found. Their offer: aes128-cbc,3des-cbc,aes192-cbc,aes256-cbc'
I have got around it by using: 'ssh -c aes256-cbc example@IP'
How do I make it so that I do not have to do this and it works normally? I'm worried it will prevent any of my Python scripts from connecting. Currently using Netmiko and other libraries.
Thanks in advance!