Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. LISTEN - represents waiting for a connection request from any remote
  2. TCP and port.
  3.  
  4. SYN-SENT - represents waiting for a matching connection request
  5. after having sent a connection request.
  6.  
  7. SYN-RECEIVED - represents waiting for a confirming connection
  8. request acknowledgment after having both received and sent a
  9. connection request.
  10.  
  11. ESTABLISHED - represents an open connection, data received can be
  12. delivered to the user. The normal state for the data transfer phase
  13. of the connection.
  14.  
  15. FIN-WAIT-1 - represents waiting for a connection termination request
  16. from the remote TCP, or an acknowledgment of the connection
  17. termination request previously sent.
  18.  
  19. FIN-WAIT-2 - represents waiting for a connection termination request
  20. from the remote TCP.
  21.  
  22. CLOSE-WAIT - represents waiting for a connection termination request
  23. from the local user.
  24.  
  25. CLOSING - represents waiting for a connection termination request
  26. acknowledgment from the remote TCP.
  27.  
  28. LAST-ACK - represents waiting for an acknowledgment of the
  29. connection termination request previously sent to the remote TCP
  30. (which includes an acknowledgment of its connection termination
  31. request).
  32.  
  33. TIME-WAIT - represents waiting for enough time to pass to be sure
  34. the remote TCP received the acknowledgment of its connection
  35. termination request.
  36.  
  37. CLOSED - represents no connection state at all.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement