将 TCP 流量从我的开发服务器重定向到我的计算机以进行调试

发布于 2024-12-09 07:45:06 字数 321 浏览 0 评论 0原文

我必须编写一个 .NET 应用程序,该应用程序将侦听 TCP 端口并处理传入的数据。

为了测试和开发其他依赖应用程序(即大多数时间),我希望 TCP 流量发送到服务器在我的工作中。

但是为了编写和调试这个应用程序,我希望数据到达我的机器。

但切换数据发送到的计算机和端口并不是一个顺利的过程。

有没有一种方法可以让数据传输到服务器,但打开某种设置,将 tcp 流量重定向到我的机器(用于调试)。是否有第三方应用程序支持此行为? (不是太贵的一台。)

注意:服务器运行 Windows Server 2008 R2,我的机器运行 Windows 7。

I have to write a .NET application that will listen on a TCP port and process the data that comes in.

For testing and development of other dependent apps (ie most of the time), I would like the TCP traffic to go to a server at my work.

But to write and debug this application, I would like the data to come to my machine.

But switching the computer and port that this data is sent to is not a frictionless process.

Is there a way I can have the data go the server, but turn on a setting of some kind that will redirect the tcp traffic to my machine (for debugging). Is there a third party app that will support this behavior? (One that is not too expensive.)

Note: The server runs Windows Server 2008 R2 and my machine runs Windows 7.

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

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

发布评论

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

评论(1

骄兵必败 2024-12-16 07:45:06

这个网址有我正在寻找的命令:

http://www.rickwargo.com/2011/01/08/port-forwarding-port-mapping-on-windows-server-2008-r2/

该命令如下所示:

<块引用>

netsh 接口 portproxy 添加 v4tov4listenport=12345listenaddress=192.168.1.1connectport=443connectaddress=192.168.1.1

This url had the command I am looking for:

http://www.rickwargo.com/2011/01/08/port-forwarding-port-mapping-on-windows-server-2008-r2/

The command looks like this:

netsh interface portproxy add v4tov4 listenport=12345 listenaddress=192.168.1.1 connectport=443 connectaddress=192.168.1.1

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