C# 中的 HTTP 隧道通过防火墙 (TCP)
我的需要是使用 http 隧道在 NAT 后面的 2 个客户端之间进行通信。是否可以?需要什么设置才能实现这一点(例如http代理服务器等)?是否有任何库或示例代码可用于在 C# 中通过 TCP 实现 http 隧道?
My need is to communicate between 2 client behind NAT using http tunneling. Is it possible? What all setup is needed to achieve this (like http proxy server etc.)? Is there any library or sample code available for implementing http tunneling over TCP in C#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您也许可以使用这个库:
http://granados.sourceforge.net/
它支持端口转发(在本例中为隧道),
但我自己还没有尝试过。
这是一个 SSH 库...所以如果您可以在连接的任一端设置 SSH 服务器
您将能够建立 SSH 连接并创建隧道。
It might be possible for you to use this library:
http://granados.sourceforge.net/
It supports port forwarding (tunneling in this case),
but I haven't tried it myself.
It's an SSH library... so if you can set up an SSH server on either end of the connection
you'll be able to establish an SSH connection and create a tunnel.