我使用SharpSSH .NET库进行SFTP http://www.tamirgal.com/blog/page/sharpssh.aspx
当我尝试连接服务器时出现错误
算法协商失败
但是当尝试通过FileZilla连接时,它没有任何问题。
我发现一些有相同的错误,但我找不到如何解决这个问题。
像这里:http://www.samhohce.net/questions/30190272/jsch-algorithm-negotiation-fail
答案 0 :(得分:1)
答案 1 :(得分:0)
如果有人必须支持这一点,我通过启用正确的加密来修复它。
检查SFTP服务器上的日志,并启用它尝试使用的加密标准。
答案 2 :(得分:0)
Linux已更新了openSSH,并且不再使用diffie-hellman-group1-sha1和diffie-hellman-group-exchange-sha1,您应该添加
“密码aes128-cbc,aes192-cbc,aes256-cbc,aes128-ctr,aes192-ctr,aes256-ctr,3des-cbc,arcfour128,arcfour256,arcfour,河豚cbc,cast128-cbc
MAC hmac-md5,hmac-sha1,umac-64 @ openssh.com,hmac-ripemd160,hmac-sha1-96,hmac-md5-96
Kex算法diffie-hellman-group1-sha1,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1,diffie-hellman-group-exchange-sha256,ecdh-sha2-nistp256,ecdh-sha2- nistp384,ecdh-sha2-nistp521,diffie-hellman-group1-sha1,curve25519-sha256 @ libssh.org在Linux / etc / ssh / sshd_config中