Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. ESTABLISHED
  2. The socket has an established connection.
  3.  
  4. SYN_SENT
  5. The socket is actively attempting to establish a connection.
  6.  
  7. SYN_RECV
  8. A connection request has been received from the network.
  9.  
  10. FIN_WAIT1
  11. The socket is closed, and the connection is shutting down.
  12.  
  13. FIN_WAIT2
  14. Connection is closed, and the socket is waiting for a shutdown from the remote end.
  15.  
  16. TIME_WAIT
  17. The socket is waiting after close to handle packets still in the network.
  18.  
  19. CLOSE The socket is not being used.
  20.  
  21. CLOSE_WAIT
  22. The remote end has shut down, waiting for the socket to close.
  23.  
  24. LAST_ACK
  25. The remote end has shut down, and the socket is closed. Waiting for acknowledgement.
  26.  
  27. LISTEN The socket is listening for incoming connections. Such sockets are not included in the output unless you specify the --listening (-l) or --all (-a) option.
  28.  
  29. CLOSING
  30. Both sockets are shut down but we still don't have all our data sent.
  31.  
  32. UNKNOWN
  33. The state of the socket is unknown.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement