TCP View 的远程地址中的星号是什么意思?

发布于 2024-10-20 21:16:08 字数 224 浏览 1 评论 0原文

(1) 这是否意味着无法检测到远程地址或连接当前处于非活动状态,在这种情况下,为什么它会出现在窗口中?

(2) 还有一个问题,诸如“ESTABLISHED”、“LISTENING”、“CLOSE WAIT”和“LAST ACK”等“状态”术语是什么意思?

多谢!

在此处输入图像描述

(1) Does it mean the remote address can not be detected or the connection is currently inactive,in which case why it appears in the window after all?

(2) And one more question, what does the "state" term such as,"ESTABLISHED","LISTENING","CLOSE WAIT" and "LAST ACK" mean?

Thanks a lot!

enter image description here

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

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

发布评论

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

评论(1

迎风吟唱 2024-10-27 21:16:08

在状态上:

LISTENING 表示您正在等待特定应用程序在特定端口上的连接。

CLOSE_WAIT表示您已收到TCP连接的终止请求,您即将关闭它。

CLOSED 表示您已收到客户端的 ACK 信号,连接已关闭。

ESTABLISHED 表示套接字两端正在进行通信

您可以有一个很好的描述此处,我建议您查看 TCP/IP 协议以获取更多说明。

* 标记上,我猜这是因为 UDP 协议不是连接协议,因此您不会像 TCP 那样绑定到特定的远程地址。

On the states :

LISTENING means you are waiting for connection on a specific port for a specific application.

CLOSE_WAIT means that you have received the termination request of the TCP connection and you are about to close it.

CLOSED means you have received the ACK signal from the client and the connection has been closed.

ESTABLISHED means a communication is on going on the two end of the sockets

You can have a good description here and I advise you to look on the TCP/IP protocol for more explanations.

On the * mark, I guess this is because UDP protocol is not a connected protocol, so you are not bound to a specific remote address like with TCP.

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