如果可能的话——如何使用 irc 服务器(如 gmail 聊天或 facebook)在防火墙后面的两个主机之间建立 ssh 连接

发布于 2025-01-06 20:10:03 字数 212 浏览 1 评论 0原文

我一直在寻找实现此功能的解决方案,但 google 总是为我提供有关通过 ssh 隧道建立实时聊天的教程,而不是相反。 我怀疑这可以仅使用隧道来实现(如果可能的话),但我不确定如何实现。

如果有人问这个问题,我很抱歉,但在浏览了相关问题之后,我无法找到一个我可以确定能够满足我的特殊需求的问题(即我无法直接与 gmail.com 创建 ssh 会话)等)如果我错了,请发布指向适用问题的链接。

I have been looking around for a solution that implements this, but google always gives me tutorials on establishing a live chat over an ssh tunnel--not the other way around.
I suspect this can be implemented just using tunnels (if it is possible at all), but I am not sure how.

I am sorry if this has been asked, but after looking through the related questions, but I have not been able to find one that I can be sure will work for my particular needs (i.e. I cannot create an ssh session directly with gmail.com etc.) If I am wrong, please just post a link to the applicable question.

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

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

发布评论

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

评论(1

指尖凝香 2025-01-13 20:10:03

如果您可以通过 IRC 频道在对等点之间建立连接,那么就有一个解决方案。

  1. 不要试图摆弄 IRC 本身,而是在其之上构建一个解决方案。
  2. 自己在 IRC 上使用 ssh。
  3. 我的意思是创建一个到虚拟套接字的 SSH/SSL 连接,您可以使用它来拦截 SSH 发送的数据。转换此数据(如有必要)以使其可通过 IRC 传输。并通过 IRC 将其发送到远程对等点。
  4. 在远程对等点上,拦截您的数据,在将其提供给 ssh/ssl 连接侦听器之前取消转换。并以同样的方式发送响应。
  5. 如果连接成功,ssh 会告诉您,您可以开始通过这个安全“通道”传输数据。

您通过 IRC 传输的数据将是安全的,因为 ssh 是安全的。

If you can establish connections between peers via your IRC channel, then there is a solution.

  1. Don't try to fiddle with IRC itself, but build a solution on top of it.
  2. Use ssh yourself on top of IRC.
  3. I mean create a SSH/SSL connection to a dummy socket you can use to intercept the data sent by SSH. Transform this data (if necessary) to make it transportable via IRC. And send it to the remote peer via IRC.
  4. On the remote peer, intercept your data, un-transform it before giving it to your ssh/ssl connection listener. And proceed the same way to send response.
  5. If the connection is successful ssh will tell you and your can start pouring your data through this secure 'channel'.

Your data going via IRC will be safe, because ssh is.

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