同一机器上端点之间的套接字连接
当套接字连接的两个端点位于同一台计算机(在本例中为 Wintel)时,彼此之间的消息会遍历 NIC 卡、网络介质,然后返回 NIC/计算机,最后到达另一台计算机终点?
我问的原因是,当端点都没有调用套接字关闭时(据我们所知),我们收到了一些由端点报告的无法解释的套接字断开连接。这是否也是由于一些间歇性网络问题造成的?
When two end points of a socket connection reside on the same machine (Wintel, in this case), do messages between each other traverse onto the NIC card, network medium, and then back to the NIC/machine, and finally to to the other end point?
The reason I am asking is that we've been getting some unexplained socket disconnections reported by the end-points when neither one is calling a socket close (as far as we can tell). Could this be also due to some intermittent network problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常,同一台计算机上的两个端点不会通过网络系统,除非您明确配置操作系统以通过外部网关路由本地数据包(在 Windows 上,您可以使用命令行 ROUTE 命令来实现这一点 - 常见的黑客攻击允许嗅探仅限本地的数据包)。
Typically, two endpoints on the same machine will not go through the network system, unless you explicitally configure your OS to route local packets through an external gateway (on Windows, you can use the command-line ROUTE command for that - a common hack to allow sniffing of local-only packets).