O que exatamente significa esta saída netstat?

1

Tendo executado netstat /b em minha máquina local, estou tendo problemas para interpretar essa saída. Até onde sei, tenho apenas uma máquina na minha rede e não é chamada fish .

Active Connections

  Proto  Local Address          Foreign Address        State
  TCP    127.0.0.1:1032         fish:1033              ESTABLISHED
 [Samsung Link.exe]
  TCP    127.0.0.1:1033         fish:1032              ESTABLISHED
 [Samsung Link.exe]
  TCP    127.0.0.1:1034         fish:1035              ESTABLISHED
 [Samsung Link.exe]
  TCP    127.0.0.1:1035         fish:activesync        ESTABLISHED
 [Samsung Link.exe]
  TCP    127.0.0.1:1036         fish:1037              ESTABLISHED
 [Samsung Link.exe]
  TCP    127.0.0.1:1037         fish:1036              ESTABLISHED
 [Samsung Link.exe]
  TCP    127.0.0.1:1038         fish:1039              ESTABLISHED
 [Samsung Link.exe]
  TCP    127.0.0.1:1039         fish:1038              ESTABLISHED
 [Samsung Link.exe]
  TCP    127.0.0.1:7439         fish:7440              ESTABLISHED
 [firefox.exe]
  TCP    127.0.0.1:7440         fish:7439              ESTABLISHED
 [firefox.exe]
    
por Tom 09.04.2015 / 00:48

1 resposta

3

Quando você executa netstat -b :

Displays the executable involved in creating each connection or listening port. In some cases well-known executables host multiple independent components, and in these cases the sequence of components involved in creating the connection or listening port is displayed. In this case the executable name is in [] at the bottom, on top is the component it called, and so forth until TCP/IP was reached. Note that this option can be time-consuming and will fail unless you have sufficient permissions.

Em "Endereço estrangeiro", fish é seu Nome do computador . Você pode verificar isto pressionando
+xeentãopressionandoy,queexibirá"System" no Windows. Aqui você pode verificar o nome do seu computador.

O executável envolvido na criação de cada uma das suas conexões é o Samsung Link.exe, que é um programa que permite compartilhar informações entre dispositivos em sua rede. Como você pode ver, todas as conexões estão vindo do seu computador; por que tantas conexões TCP, eu não sei (mas eu gostaria de saber!)

Para saber mais sobre o Samsung Link.exe, clique aqui .

Espero que isso ajude, e obrigado por ler minha resposta!

    
por 09.04.2015 / 04:44