При подключения к бд через navicat по ssh вылазит такое сообщение:
80070007: SSH Tunnel: Server does not support diffie-hellman-group1-sha1 for keyexchange
Решение:
В консоле:
sudo nano /etc/ssh/sshd_config
После строчки # Ciphers and keying добавляем:
KexAlgorithms diffie-hellman-group1-sha1,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha1 Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,3des-cbc
В консоле:
ssh-keygen -A sudo service ssh restart