Ubuntu中的netstat表有什么区别?

时间:2019-05-28 23:53:15

标签: ubuntu netstat

我曾经运行过nginx,但是我有两个,只有一个node.js Web服务器。运行netstat -tnlp的结果如下:

0.0.0.0: *::: *有什么区别?

netstat -tnlp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      1108/sshd
tcp        0      0 127.0.0.1:27016         0.0.0.0:*               LISTEN      20389/mongod
tcp        0      0 0.0.0.0:3305            0.0.0.0:*               LISTEN      17224/mysqld
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      1139/nginx -g daemo
tcp6       0      0 :::22                   :::*                    LISTEN      1108/sshd
tcp6       0      0 :::3002                 :::*                    LISTEN      20567/node
tcp6       0      0 :::80                   :::*                    LISTEN      1139/nginx -g daemo

1 个答案:

答案 0 :(得分:0)

  

0.0.0.0是“全部捕获”侦听地址的IPv4地址。和

     

::: 是0:0:0:0:0:0:0:0的简写形式   IPv6中的地址。第三个冒号将此地址与端口分开   数字。