SharpSSH - 设置连接“信任”为真

发布于 2024-11-10 14:33:58 字数 250 浏览 3 评论 0原文

有很多关于使用 SharpSSH 组件的文章,但我仍然想问这个问题,因为我无法从网络和 stacko 上的无数文章和博客文章中找到答案。我收到如下错误:

“reject HostKey: localhost”

找到一篇文章说将信任设置为“true”(我相信这可能是帮助我连接到远程 SSH 服务器的最终线索,因为很多人都承认这一点解决方案解决了他们的问题)但是你如何在 SharpSSH 中做到这一点?

你们能帮我解决这个问题吗?谢谢。

There have been plenty of articles on using the SharpSSH component but i nonetheless want to ask this as i cannot find the answer from the gazillion articles and blog posts over the net and at stacko. I am getting an error as follows:

"reject HostKey: localhost"

Found an article saying to set trust to "true" (and i believe it might be the final clue to helping me connect to my remote SSH server as many people acknowledged that that solution solved their problem) but how do you do that in SharpSSH?

Can you guys help me out with this. Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迷爱 2024-11-17 14:33:58

找到了解决方案。以下是我添加的内容:

Hashtable config = new Hashtable();
config.Add("StrictHostKeyChecking", "no");
SFTPSession.setConfig(config);

Found a solution. The following is what i added:

Hashtable config = new Hashtable();
config.Add("StrictHostKeyChecking", "no");
SFTPSession.setConfig(config);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文