[Bug 1085616] SSH connection failed
http://bugzilla.suse.com/show_bug.cgi?id=1085616 http://bugzilla.suse.com/show_bug.cgi?id=1085616#c6 Vítězslav Čížek <vcizek@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |vcizek@suse.com Resolution|--- |WORKSFORME --- Comment #6 from Vítězslav Čížek <vcizek@suse.com> --- (In reply to Antonio Crevillén from comment #3)
Can the user enable insecure encryption?
Yes, and Leap-15/Factory still does support some of the old ciphers. To see the list of all the supported ciphers run # ssh -Q cipher 3des-cbc aes128-cbc aes192-cbc aes256-cbc rijndael-cbc@lysator.liu.se aes128-ctr aes192-ctr aes256-ctr aes128-gcm@openssh.com aes256-gcm@openssh.com chacha20-poly1305@openssh.com Here you can see that some of the ciphers offered by your Oracle Linux are supported (aes256-cbc, aes192-cbc, aes128-cbc, 3des-cbc). They just aren't part of the default setup (see man ssh_config). The solution for you will be passing the cipher spec parameters to ssh: # ssh -c "aes256-cbc,aes192-cbc,aes128-cbc,3des-cbc" -l user 192.168.1.12 You can also add this host-specific setup to your ssh_config. -- You are receiving this mail because: You are on the CC list for the bug.
participants (1)
-
bugzilla_noreply@novell.com