43

我正在尝试使用 JSch (0.1.44-1) 通过 ssh 连接到远程 sftp 服务器,但在session.connect();我收到此异常期间:

com.jcraft.jsch.JSchException: Algorithm negotiation fail at 
com.jcraft.jsch.Session.receive_kexinit(Session.java:529) at 
com.jcraft.jsch.Session.connect(Session.java:291) at com.jcraft.jsch.Session.connect(Session.java:154)
... 

来自 JSch 的日志:

INFO: Connecting to xx.xx.xx.xxport 22 
INFO: Connection established 
INFO: Remote version string: SSH-2.0-WeOnlyDo 2.0.6 
INFO: Local version string: SSH-2.0-JSCH-0.1.44 
INFO: CheckCiphers: aes256-ctr,aes192-ctr,aes128-ctr,aes256-cbc,aes192-cbc,aes128-cbc,3des-ctr,arcfour,arcfour128,arcfour256
INFO: aes256-ctr is not available. 
INFO: aes192-ctr is not available.
INFO: aes256-cbc is not available. 
INFO: aes192-cbc is not available.
INFO: arcfour256 is not available. 
INFO: SSH_MSG_KEXINIT sent
INFO: SSH_MSG_KEXINIT received 
INFO: Disconnecting from xx.xx.xx.xx port 22 

我可以使用 linux sftp 命令登录到远程服务器。我试图在互联网上找到任何线索,但我失败了。

linux sftp 命令的调试输出:

OpenSSH_5.5p1-DAM_1.2, OpenSSL 0.9.8r 8 Feb 201

debug1: Reading configuration data /etc/DAM/ssh/ssh_config
debug1: Applying options for *
debug1: Applying options for *.*
debug1: Connecting to xx.xx.xx.xx [xx.xx.xx.xx] port 22.
debug1: Connection established.
debug1: identity file /**/spv_id_rsa.key type -1
debug1: identity file /**/spv_id_rsa.key-cert type -1
debug1: Remote protocol version 2.0, remote software version WeOnlyDo 2.0.6
debug1: no match: WeOnlyDo 2.0.6
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_5.5p1-DAM_1.2
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes256-cbc hmac-md5 none
debug1: kex: client->server aes256-cbc hmac-md5 none
debug1: sending SSH2_MSG_KEXDH_INIT
debug1: expecting SSH2_MSG_KEXDH_REPLY
debug1: Host 'xx.xx.xx.xx' is known and matches the RSA host key.
debug1: Found key in ~/.ssh/known_hosts:8
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: Roaming not allowed by server
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey
debug1: Next authentication method: publickey
debug1: Trying private key: /**/spv_id_rsa.key
debug1: read PEM private key done: type RSA
debug1: Authentication succeeded (publickey).
debug1: channel 0: new [client-session]
debug1: Entering interactive session.
debug1: Sending subsystem: sftp
Connected to xx.xx.xx.xx.
sftp>
4

11 回答 11

31

SSH 客户端和服务器在几个地方尝试并就通用实现达成一致。我知道的两个是加密和压缩。服务器和客户端生成可用选项列表,然后选择两个列表中的最佳可用选项。

如果列表中没有可接受的选项,则它会失败并显示您收到的错误。我从这里的调试输出中猜测,但看起来唯一用于加密的服务器选项是“aes256-cbc hmac-md5 none”。

由于您的 Java 策略文件,JSch 不执行 hmac-md5 并且 aes256-cbc 被禁用。您可以尝试的两件事是...

  1. 要增加服务器上可用的加密库,请在您的客户端上安装不受限制的策略文件,从站点启用 aes256-cbc(确保说它被禁用的消息消失,这些策略文件非常容易安装在错误的 JVM 上) :

    对于 JDK 1.6:http ://www.oracle.com/technetwork/java/javase/downloads/jce-6-download-429243.html

    对于 JDK 1.7:http ://www.oracle.com/technetwork/java/javase/downloads/jce-7-download-432124.html

    对于 JDK 1.8:http ://www.oracle.com/technetwork/java/javase/downloads/jce8-download-2133166.html

  2. 或尝试禁用加密。

如果您可以访问服务器,第一个是理想的(相信我,aes128-cbc 是大量加密),但第二个很容易快速测试理论。

于 2011-06-07T12:41:02.720 回答
24

最后一个无需对服务器进行任何更改即可工作的解决方案:

  1. 按照 Yvan 的建议下载最新的 jsch.jar:http: //sourceforge.net/projects/jsch/files/jsch.jar/ jsch-0.1.52.jar 工作正常

  2. 将下载的文件放在“...\JetBrains\PhpStorm 8.0.1\lib”中,然后删除现有的 jsch 文件(对于 PHPStorm 8,它是 jsch-0.1.50.jar)

  3. 重新启动 PHPStorm,它应该可以工作

对 Webstorm 使用相同的解决方案

于 2015-07-16T16:45:30.337 回答
11

将算法添加到 RECEIVING 服务器(您要连接的服务器)的完整步骤。我假设这是一个 Linux 服务器。

sudo /etc/ssh/sshd_config

将此添加到文件中(可以在末尾):

KexAlgorithms curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1,diffie-hellman-group1-sha1

然后重启SSH服务器:

sudo service sshd restart
于 2016-12-20T22:23:49.890 回答
9

FWIW,我在 JSch 0.1.50 下也有同样的错误消息。升级到 0.1.52 解决了这个问题。

于 2015-05-10T11:03:25.783 回答
4

确保您使用的是最新版本的 JSch。在使用 JSch 0.1.31 并尝试连接到 RedHat 5 服务器时,我遇到了同样的问题。更新到最新版本解决了这个问题。

于 2017-03-24T15:24:22.833 回答
3

问题在于您使用的 JSCH jar 版本。

将其更新为最新的 jar。

我也遇到了同样的错误,这个解决方案有效。

您可以从下载最新的 jar

http://www.jcraft.com/jsch/

于 2016-08-12T06:33:07.657 回答
2

我遇到了同样的问题,在 Windows 上运行 Netbeans 8.0 和 JRE 1.7。

我刚刚从https://www.java.com/fr/download/安装了 JRE 1.8 (请注意,它被称为Version 8但安装时它是 1.8 版),它修复了它。

于 2015-05-12T07:50:40.537 回答
1

KexAlgorithms diffie-hellman-group1-sha1,diffie-hellman-group-exchange-sha‌​1添加到服务器上的 sshd_config。

这可行,但请确保您重新启动 sshd: sudo service sshd restart

于 2016-08-20T01:19:14.773 回答
1

我的解决方案是安装 oracle 无限 JCE 并安装在 JRE_HOME/lib/security 中。然后重新启动 glassfish,我能够使用 jsch 连接到我的 sftp 服务器。

于 2018-08-30T16:26:51.880 回答
0

我更新了最新的 jsch lib (0.1.55)。对我来说工作得很好。无需重启服务器或无需更新java(当前使用java8)

于 2020-04-21T19:59:37.143 回答
0

将 Java 8 升级到 u162 或更高版本应该会有所帮助。从这个版本开始,无限强度策略默认启用。

于 2021-04-09T11:06:36.147 回答