- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我正在尝试使用 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 并且 aes256-cbc 由于您的 Java 策略文件而被禁用。您可以尝试的两件事是...
要增加服务器上可用的加密库,请在您的客户端上安装不受限制的策略文件,启用 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
或尝试禁用加密。
如果您可以访问服务器,第一个是理想的(相信我,aes128-cbc 是大量加密),但第二个很容易快速测试理论。
关于java - JSchException : Algorithm negotiation fail,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6263630/
好吧,我已经阅读了我能找到的与此错误有关的每个线程和问题,但令人惊讶的是没有找到解决方案。我试图在 IIS 托管的 WCF 服务 (.NET 4.0) 上要求 Windows 身份验证,到目前为止,该
我想对浏览器发送到网站的 Accept_Language 使用react。 有人知道我在哪里可以获得浏览器可能发送到网站的所有可用 Accept_Languages 的可靠列表吗? 非常感谢! 最佳答
我的应用程序中有套接字通知,当我在本地运行时效果很好,但是当我部署到我的 VM 时,它提示给出以下消息。 Error: Error during negotiation request. at
我正在尝试访问受密码保护的站点。它没有使用基本身份验证(即使在 Firefox 中弹出相同的用户/密码框),因为响应 header 是 WWW-Authenticate: Negotiate . 我想
我正在尝试使用 JSch (0.1.44-1) 通过 ssh 连接到远程 sftp 服务器,但在 session.connect(); 期间,我收到此异常: com.jcraft.jsch.JSchE
我正在尝试使用 Loopback为我现有的数据库创建一个 api。当我尝试“发现”模型时,出现此错误: Message: Cannot find module 'negotiator' Request
我正在尝试使用 JSch (0.1.44-1) 通过 ssh 连接到远程 sftp 服务器,但在 session.connect(); 期间我收到此异常: com.jcraft.jsch.JSchEx
这是我使用paramiko的代码: #!/usr/bin/env python from paramiko.client import SSHClient from paramiko.client
我尝试上传应用程序,但在此屏幕上等待了 2 小时。我终于收到了应用商店连接错误。错误消息是“应用商店连接无法处理请求。请重试或使用不同的传输方式(1360)”。我该怎么办?? 最佳答案 这是网络问题。
我正在使用 pysftp 下载和上传一些文件。这个完全相同的代码我刚在一个小时前运行并且很好,但现在我得到了这个“EOF during negotiation”错误。我在这里缺少什么? >>> sft
我可以选择支持客户端证书。这就是我设置 Client certificates 的原因至 Accept在 IIS 上。这适用于大多数机器。但是,在某些机器上 IIS 返回 500。这可以通过设置 Cl
我正在尝试使用 Cordova 发布一个新应用程序。我已经确认了证书或配置了东西。我确实遵循“产品”->“存档”->“验证”过程,它成功了,没有错误消息。最后我点击了“Distribution”但是它
我已经使用 Indy 发送电子邮件很多年了,而且它一直运行良好。目前我使用的是 Delphi 10.4,以及它附带的 Indy 版本。 今天,当我尝试使用特定服务器时,即使一切设置都照常进行,我也遇到
我们有超过 100 个客户端站点调用的 WCF 服务。今天我们开始获取 Exception: Server 'http://[url]/services/[service].svc/ws' sent
首先是negotiate , ntlm和 kerberos windows身份验证的三种不同实现方式? IE 发送这个:Authorization: Negotiate YIIFswYGKwYB ..
我了解基本身份验证和摘要身份验证。但我已经搜索了很多,而且我正在为 NTLM、身份验证和协商而苦苦挣扎。 我认为,如果我错了,请纠正我,NTLM 和 Authenticate 是同一协议(protoc
我有Eclipse Juno,这是带有Git服务器的Synology Server DS213 +。我试图将项目从Git Server checkout 到工作区,并且在Eclipse中使用EGit时
我了解基本身份验证和摘要身份验证。但我已经搜索了很多,而且我正在为 NTLM、身份验证和协商而苦苦挣扎。 我认为,如果我错了,请纠正我,NTLM 和 Authenticate 是同一协议(protoc
SignalR 在本地主机上工作,但部署在 Azure 中时不起作用 Asp.net Core 1.0.0(.Net Framework 4.6.1) SignalR.Core 2.2.1 publi
我意识到有很多建议的解决方案可以解决“HTTP 请求未经客户端身份验证方案‘协商’授权。从服务器收到的身份验证 header 是‘协商,NTLM’”,但没有一个对我有用。我相信我继续收到的错误与 II
我是一名优秀的程序员,十分优秀!