При подключении по SSH к Ubuntu 14.04 выдаёт ошибку алгоритмов шифрования.
$ ssh user@server
Unable to negotiate with server port 22: no matching cipher found. Their offer: arcfour,arcfour128,arcfour256,blowfish-cbc
Раскомменчиваю строчку Ciphers и добавляю недостающие:
$ nano /etc/ssh/ssh_config
Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,3des-cbc,arcfour,arcfour128,arcfour256,blowfish-cbc
Итог:
/etc/ssh/ssh_config line 40: Bad SSH2 cipher spec 'aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,3des-cbc,arcfour,arcfour128,arcfour256,blowfish-cbc'.
Что я делаю не так?