Linux 上的 netstat 格式问题

发布于 2024-08-14 05:16:27 字数 348 浏览 1 评论 0原文

看到 netstat 的以下输出,(1)*:*、(2)*:8102、(3)*:ibm-db2 分别表示什么?

Proto Recv-Q Send-Q Local Address               Foreign Address             State
tcp        0      0 *:8102                      *:*                         LISTEN 
tcp        0      0 *:ibm-db2                   *:*                         LISTEN

多谢。

Seeing following output to netstat, what do (1)*:*, (2)*:8102, (3)*:ibm-db2 indicate respectively?

Proto Recv-Q Send-Q Local Address               Foreign Address             State
tcp        0      0 *:8102                      *:*                         LISTEN 
tcp        0      0 *:ibm-db2                   *:*                         LISTEN

Thanks a lot.

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

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

发布评论

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

评论(1

我一向站在原地 2024-08-21 05:16:27

这意味着您计算机上的应用程序正在侦听 TCP 端口 8102 和(我认为)446 或 523,这是 IBM DB2 服务器的默认端口。侦听端口允许应用程序通过网络接收来自其他计算机的连接。

外部地址列表示您所连接的 IP 地址。现在,您似乎没有连接到任何人,这就是出现 *.* 的原因。

This means that an application on your computer is listening on TCP ports 8102 and (I think) 446 or 523, which is the default port for IBM DB2 servers. Listening on a port allows the application to receive connections from other computers over the network.

The Foreign Address column indicates the IP address of who you're connected to. Right now, it appears that you are not connected to anyone which is why *.* appears.

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