Computer and IT knowledge - things to know
when trying to connect to an old ssh server .. the message
comes: no matching cipher found. Their offer: des,3des-cbc
Solution:
ssh -oKexAlgorithms=+diffie-hellman-group1-sha1 -c 3des-cbc <ip>
------------------------
other options -> in user ssh config file
example:
cat /root/.ssh/config
Host 192.168.1.100
Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,3des-cbc
-----------------------
global in server ssh config file something like that:
#Legacy changes
KexAlgorithms +diffie-hellman-group1-sha1
Ciphers +aes128-cbc
computer2know :: thank you for your visit :: have a nice day :: © 2024