How to configure SSL cipher for Brocade OLD ICX Switch?

Since the ssh algorithms of Brocade ICX64XX keys are outdated, connection cannot be made from a linux computer. Adding the following lines to the ssh config file fixes the problem.

radius$:/home/myuser# cat /home/myuser/.ssh/config

Host *
    Kexalgorithms +diffie-hellman-group1-sha1
    HostKeyAlgorithms +ssh-dss
    Ciphers aes256-cbc,aes192-cbc,aes128-cbc,3des-cbc

———- OR ———

radius$:/home/myuser# cat /etc/ssh/ssh_config

Host *

    Kexalgorithms +diffie-hellman-group1-sha1
    HostKeyAlgorithms +ssh-dss
    Ciphers aes256-cbc,aes192-cbc,aes128-cbc,3des-cbc

By:

Posted in:


Leave a comment