Yo uso netstat
para verificar el estado de mi puerto.
Me preguntaba cuál es la diferencia entre el estado del puerto LISTENING
, TIME_WAIT
, CLOSE_WAIT
, FIN_WAIT1
y ESTABLISHED
?
Yo uso netstat
para verificar el estado de mi puerto.
Me preguntaba cuál es la diferencia entre el estado del puerto LISTENING
, TIME_WAIT
, CLOSE_WAIT
, FIN_WAIT1
y ESTABLISHED
?
Respuestas:
La página de manual de netstat
tiene una breve descripción de cada estado:
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
--listening (-l) or --all (-a) option.
CLOSING
Both sockets are shut down but we still don't have all our data
sent.
UNKNOWN
The state of the socket is unknown.
Puede usar los diagramas de transición de estado (ejemplos aquí , aquí y aquí ) para tener un mejor sentido de los estados.
Considere dos programas que intentan una conexión de socket (llámelos a
y b
). Ambos configuran enchufes y hacen la transición al LISTEN
estado. Entonces un programa (por ejemplo a
) intenta conectarse con el otro ( b
). a
envía una solicitud y entra en el SYN_SENT
estado, y b
recibe la solicitud y entra en el SYN_RECV
estado. Cuando b
reconoce la solicitud, ingresan al ESTABLISHED
estado y hacen sus negocios. Ahora pueden pasar un par de cosas:
a
desea cerrar la conexión y entra FIN_WAIT1
. b
recibe la FIN
solicitud, envía un ACK
(luego a
ingresa FIN_WAIT2
), ingresa CLOSE_WAIT
, le dice que a
se está cerrando y luego ingresa LAST_ACK
. Una vez que a
reconoce esto (y entra TIME_WAIT
), b
entra CLOSE
. a
espera un poco para ver si queda algo, luego entra CLOSE
.a
y b
han terminado sus negocios y deciden cerrar la conexión (cierre simultáneo). Cuando a
está adentro FIN_WAIT
, y en lugar de recibir un ACK
de b
, recibe un FIN
(como b
desea cerrarlo también), a
entra CLOSING
. Pero todavía hay algunos mensajes para enviar (el ACK
que a
se supone que debe recibir por su original FIN
), y una vez que ACK
llega, a
ingresa TIME_WAIT
como de costumbre.