Abrir portas sem PIDs associados

0

Eu tenho algumas portas abertas no meu laptop, mas netstat não está relatando qual PID / Programa está associado a elas:

$ netstat -tulpn
(Not all processes could be identified, non-owned process info
 will not be shown, you would have to be root to see it all.)
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name    
tcp        0      0 127.0.0.1:8307          0.0.0.0:*               LISTEN      -                   
tcp        0      0 192.168.122.1:53        0.0.0.0:*               LISTEN      -                   
tcp        0      0 0.0.0.0:13819           0.0.0.0:*               LISTEN      32107/skype         
tcp        0      0 0.0.0.0:443             0.0.0.0:*               LISTEN      -                   
tcp        0      0 0.0.0.0:902             0.0.0.0:*               LISTEN      -                   
tcp6       0      0 :::443                  :::*                    LISTEN      -                   
tcp6       0      0 :::902                  :::*                    LISTEN      -                   

Como posso descobrir qual processo tem estes abertos? Em particular 443 .

    
por Juicy 01.08.2015 / 18:56

1 resposta

1

Dica:

(Not all processes could be identified, non-owned process info
 will not be shown, you would have to be root to see it all.)

Tente executar o netstat usando o sudo, ou seja, sudo netstat ...

    
por 01.08.2015 / 19:21