netstat 输出含义

netstat 输出含义

我运行的netstat -a | grep ftp结果是

tcp        0      0 *:ftp                   *:*                     LISTEN

这些零和星号是什么意思?

答案1

命令的输出netstat如下,

Proto Recv-Q Send-Q Local Address           Foreign Address         State

上述格式的解释如下所示。

man netstat

   Proto
       The protocol (tcp, udp, raw) used by the socket.

   Recv-Q
       The  count  of  bytes  not copied by the user program connected to this
       socket.

   Send-Q
       The count of bytes not acknowledged by the remote host.

   Local Address
       Address and port number of the local end of  the  socket.   Unless  the
       --numeric  (-n)  option is specified, the socket address is resolved to
       its canonical host name (FQDN), and the port number is translated  into
       the corresponding service name.

   Foreign Address
       Address  and port number of the remote end of the socket.  Analogous to
       "Local Address."

   State
       The state of the socket. Since there are no states in raw mode and usu‐
       ally  no  states  used  in UDP, this column may be left blank.Normally
   this can be one of several values:

   ESTABLISHED
          The socket has an established connection.

   SYN_SENT
          The socket is actively attempting to establish a connection.

   SYN_RECV
          A connection request has been received from the network.

   FIN_WAIT1
          The socket is closed, and the connection is shutting down.

   FIN_WAIT2
          Connection is closed, and the socket is waiting for  a  shutdown
          from the remote end.

   TIME_WAIT
          The socket is waiting after close to handle packets still in the
          network.

   CLOSE  The socket is not being used.

   CLOSE_WAIT
          The remote end has shut down, waiting for the socket to close.

   LAST_ACK
          The remote end has shut down, and the socket is closed.  Waiting
          for acknowledgement.

   LISTEN The  socket is listening for incoming connections.  Such sockets
          are not included in the output unless you specify the  --listen‐
          ing (-l) or --all (-a) option.

你的例子:

tcp        0      0 *:ftp                   *:*                     LISTEN
  • 0- 零字节数

  • *:*- 国外地址可以是以下格式(任何东西:任何东西)。没有提到任何特定的地址。

相关内容