O soquete pode estar em vários estados (ligado a um endereço / porta, não acoplado, escutando em um endereço de broadcast, etc). O artigo a seguir fornece uma visão detalhada de como ele funciona no Solaris.
Estou tentando decifrar a saída abaixo
bash-3.00$ netstat -a
UDP: IPv4
Local Address Remote Address State
-------------------- -------------------- ----------
*.sunrpc Idle
*.* Unbound
*.32771 Idle
TCP: IPv4
Local Address Remote Address Swind Send-Q Rwind Recv-Q State
-------------------- -------------------- ----- ------ ----- ------ -----------
*.* *.* 0 0 49152 0 IDLE
*.sunrpc *.* 0 0 49152 0 LISTEN
*.* *.* 0 0 49152 0 IDLE
localhost.5987 *.* 0 0 49152 0 LISTEN
localhost.898 *.* 0 0 49152 0 LISTEN
localhost.32771 *.* 0 0 49152 0 LISTEN
localhost.5988 *.* 0 0 49152 0 LISTEN
localhost.32772 *.* 0 0 49152 0 LISTEN
*.ssh *.* 0 0 49152 0 LISTEN
*.32785 *.* 0 0 49152 0 BOUND
localhost.6788 *.* 0 0 49152 0 LISTEN
localhost.6789 *.* 0 0 49152 0 LISTEN
localhost.32782 *.* 0 0 49152 0 LISTEN
localhost.smtp *.* 0 0 49152 0 LISTEN
localhost.submission *.* 0 0 49152 0 LISTEN
server-host-name.ssh pc-host-name.51269 64868 51 49640 0 ESTABLISHED
TCP: IPv6
Local Address Remote Address Swind Send-Q Rwind Recv-Q State If
--------------------------------- --------------------------------- ----- ------ ----- ------ ----------- -----
*.* *.* 0 0 49152 0 IDLE
*.ssh *.* 0 0 49152 0 LISTEN
SCTP:
Local Address Remote Address Swind Send-Q Rwind Recv-Q StrsI/O State
------------------------------- ------------------------------- ------ ------ ------ ------ ------- -----------
0.0.0.0 0.0.0.0 0 0 102400 0 32/32 CLOSED
Active UNIX domain sockets
Address Type Vnode Conn Local Addr Remote Addr
ffffffff84e25ab8 stream-ord ffffffff8569c740 00000000 /var/run/.inetd.uds
bash-3.00$
Parece-me que temos os seguintes itens
UDP
, IPv4
sunrpc
? 32771
, *.* Unbound
TCP
IPv4
aberta do meu PC sunrpc
? ssh
? (aparece duas vezes) localhost
ssh
? *.32785 *.* 0 0 49152 0 BOUND
? *.* *.* 0 0 49152 0 IDLE
O soquete pode estar em vários estados (ligado a um endereço / porta, não acoplado, escutando em um endereço de broadcast, etc). O artigo a seguir fornece uma visão detalhada de como ele funciona no Solaris.
Tags networking netstat solaris unix