Linux 上的 netstat 格式问题
看到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这意味着您计算机上的应用程序正在侦听 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.