SharpSSH jsch 算法协商失败
SharpSSH jsch Algorithm negotiation fail
我将 SharpSSH .NET 库用于 SFTP。
http://www.tamirgal.com/blog/page/sharpssh.aspx
当我尝试连接服务器时出现错误
Algorithm negotiation fail
但是当尝试通过 FileZilla 连接时它没有问题。
我发现一些有同样的错误,但我没有找到解决这个问题的方法。
点赞:http://www.samhohce.net/questions/30190272/jsch-algorithm-negotiation-fail
不要使用 SharpSSH。自 2007 年以来就不再维护了!
这可能是不安全的。并且不支持现代密码和 KEX 算法(因此出现错误)。
选择another C# SFTP library.
如果有人必须支持这个,我通过启用正确的加密来修复它。
检查您的 SFTP 服务器上的日志并启用它尝试使用的加密标准。
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,blowfish-cbc,cast128-cbc
MAC hmac-md5、hmac-sha1、umac-64@openssh.com、hmac-ripemd160、hmac-sha1-96、hmac-md5-96
KexAlgorithms 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
我将 SharpSSH .NET 库用于 SFTP。
http://www.tamirgal.com/blog/page/sharpssh.aspx
当我尝试连接服务器时出现错误
Algorithm negotiation fail
但是当尝试通过 FileZilla 连接时它没有问题。
我发现一些有同样的错误,但我没有找到解决这个问题的方法。
点赞:http://www.samhohce.net/questions/30190272/jsch-algorithm-negotiation-fail
不要使用 SharpSSH。自 2007 年以来就不再维护了!
这可能是不安全的。并且不支持现代密码和 KEX 算法(因此出现错误)。
选择another C# SFTP library.
如果有人必须支持这个,我通过启用正确的加密来修复它。
检查您的 SFTP 服务器上的日志并启用它尝试使用的加密标准。
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,blowfish-cbc,cast128-cbc
MAC hmac-md5、hmac-sha1、umac-64@openssh.com、hmac-ripemd160、hmac-sha1-96、hmac-md5-96
KexAlgorithms 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