El error al hacer clic en "Probar conexión" dentro del cuadro de diálogo de conexión del proyecto es este:
Error de conexión a 'XXXXXX-ssh.services.easyname.eu'. No se puede llegar a un acuerdo: [diffie-hellman-group1-sha1, diffie-hellman-group-exchange-sha1] y [curve25519-sha256, [correo electrónico protegido], ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, diffie-hellman-group-exchange-sha256, diffie-hellman-group16-sha512, diffie-hellman-group18-sha512, diffie-hellman-group14 -sha256, diffie-hellman-group14-sha1]
¿Sabe qué significa este error y si hay alguna configuración en IntelliJ para solucionarlo?
Respuesta1
Estoy teniendo el mismo problema.
en .IntelliJIdea2019.2/system/log/idea.log
yo veo
2019-09-22 13:43:58,474 [649136973] WARN - z.sshj.transport.TransportImpl - Dying because - Unable to reach a settlement: [ssh-dss] and [rsa-sha2-512, rsa-sha2-256, ssh-rsa, ssh-ed25519]
net.schmizz.sshj.transport.TransportException: Unable to reach a settlement: [ssh-dss] and [rsa-sha2-512, rsa-sha2-256, ssh-rsa, ssh-ed25519]
at net.schmizz.sshj.transport.Proposal.firstMatch(Proposal.java:145)
at net.schmizz.sshj.transport.Proposal.negotiate(Proposal.java:129)
at net.schmizz.sshj.transport.KeyExchanger.gotKexInit(KeyExchanger.java:224)
at net.schmizz.sshj.transport.KeyExchanger.handle(KeyExchanger.java:356)
at net.schmizz.sshj.transport.TransportImpl.handle(TransportImpl.java:503)
at net.schmizz.sshj.transport.Decoder.decodeMte(Decoder.java:159)
at net.schmizz.sshj.transport.Decoder.decode(Decoder.java:79)
at net.schmizz.sshj.transport.Decoder.received(Decoder.java:231)
at net.schmizz.sshj.transport.Reader.run(Reader.java:59)
Aparentemente, esto se debe a que la oferta del cliente de [ssh-dss] y la lista de servidores [rsa-sha2-512, rsa-sha2-256, ssh-rsa, ssh-ed25519] no se cruzan, por lo que el protocolo no puede ponerse de acuerdo. un algoritmo mutuamente compatible para ssh.
Seguí el consejo enhttps://intellij-support.jetbrains.com/hc/en-us/community/posts/360004370099-DataGrip-2019-2-RC-SSH-Tunnelling-no-longer-workspara resolver este problema.
Primero, descubrí que tengo lo siguiente en/etc/ssh/ssh_config
# Custom options from `extraConfig`, to override generated options
# Generated options from other settings
Host *
AddressFamily any
XAuthLocation /nix/store/mpa2k8as7sympa93rzvrvkmhrh6pnahi-xauth-1.0.10/bin/xauth
ForwardX11 no
PubkeyAcceptedKeyTypes +ssh-dss
HostKeyAlgorithms +ssh-dss
Luego agregué lo siguiente a~/.ssh/config
Host *
HostKeyAlgorithms rsa-sha2-512,rsa-sha2-256,ssh-rsa,ssh-ed25519
Esto solucionó mi problema.