我正在尝试使用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>
SSH客户端和服务器在几个地方尝试并同意一个通用实现。我知道的两个是加密和压缩。服务器和客户端生成可用选项的列表,然后在两个列表中选择最佳的可用选项。
如果列表中没有可接受的选项,则它将失败,并显示错误消息。我从这里的调试输出中猜测出来,但是看起来唯一的加密服务器选项是“ aes256-cbc hmac-
md5 none”。
JSch不执行hmac-md5,并且由于Java策略文件而禁用了aes256-cbc。您可以尝试的两件事是…
对于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
如果您可以访问服务器,则第一个是理想的选择(请相信aes128-cbc具有足够的加密功能),但是第二个非常容易,可以快速验证该理论。
问题内容: 我正在尝试从Jenkins SSH到本地服务器,但抛出以下错误: SSH服务器上Java的安装版本: 客户端上的Java安装版本: 还尝试了以下解决方案: JSchException:算法协商失败, 但是不起作用。从油灰看来,一切正常。建立了连接,但是当我触发Jenkins作业时,将引发错误。我应该尝试其他版本的ssh服务器。现在我正在使用copssh。 问题答案: TL; DR编辑您
Out FTP服务器进行了迁移,以获得更好的安全性(不知道关于它的很多细节)。 但升级后,我们无法从服务器下载/上传文件。在升级之前它工作得很好。错误日志显示: NS0:客户端无法连接到FTP服务器。http://schemas.cordys.com/ftpconnector/1.1cordys.ftpconnector.messages.ftpserverconnectionfailedcom.
我正在尝试使用SSL调用web服务。它给出了以下错误:
我安装了:“CPAN isntall crypt::ssleay”,因此“fs.cgi:错误500 SSL协商失败:”的错误更改为“请求fs.cgi时失败:SSL协商失败:在/usr/local/share/perl5/lwp/protocol/http.pm行25在/usr/local/share/perl5/lwp/protocol/http.pm行25” 怎么解决这个?我搜索了这个论坛,但问
我正在运行一个旧的Debian服务器,该服务器每天通过Perl脚本获取一个网页。从昨天开始,脚本失败,出现“500 SSL协商失败”错误。 就像我说的,它是一个运行所有东西的旧版本的旧服务器: Perl:5.8.8 OpenSSL:0.9.8C LWP:5.805 crypt::ssleay:0.57 测试1:我尝试的第一件事是将OpenSSL更新到1.0.2D。这没有帮助,我仍然得到了“SSL协
我正在尝试从Java脚本连接到我的SFTP服务器。我是为了我的目的而使用JSch lib。用户名、密码和主机名正确,但我得到一个:Auth fail错误。 我还尝试在session.connect()之前添加以下行,但问题仍然存在。 我必须在knownhosts.txt中放些什么?我服务器钥匙的指纹? 你有什么建议吗?提前道谢!