netstat na nova instalação do Solaris 10 update 9

1

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

  • %código%
    • %código%
      • Portas abertas UDP , IPv4
      • Pergunta 1: O que é sunrpc ?
  • %código%
    • %código%
      • Portas abertas 32771 , *.* Unbound
      • 10 portas abrem apenas para TCP
      • A conexão IPv4 aberta do meu PC
      • Pergunta 2: O que é sunrpc ?
      • Pergunta 3: O que é ssh ? (aparece duas vezes)
    • %código%
      • Abrir porta localhost
      • Pergunta 3: O que é ssh ?
  • Pergunta 4: O que é *.32785 *.* 0 0 49152 0 BOUND ?
  • Pergunta 5: O que é *.* *.* 0 0 49152 0 IDLE
por George Bailey 28.12.2010 / 22:31

1 resposta

1

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.

link

    
por 01.01.2011 / 23:25