About 51 results
Open links in new tab
  1. How do I interpret 'netstat -a' output - Stack Overflow

    3 This link has helped me a lot to interpret netstat -a A copy from there - TCP Connection States Following is a brief explanation of this handshake. In this context the "client" is the peer requesting a …

  2. Command line for looking at specific port - Stack Overflow

    Aug 17, 2012 · Is there a way to examine the status of a specific port from the Windows command line? I know I can use netstat to examine all ports but netstat is slow and looking at a specific port …

  3. What is ::: in the Local Address of netstat output? - Super User

    The command line parameters shown, and the example output shown, might have come from Linux, and different operating systems might display things slightly different. However, about the topic of :: and …

  4. How to use netstat to show what process is listening on a port

    Mar 19, 2018 · 8 This is what I like to use when looking for a listening port's PID. For Linux use: netstat -tunlp n network l listening ports p process t tcp u udp Additional information can be found in the man …

  5. Como usar o comando netstat? - Stack Overflow em Português

    Nov 14, 2017 · Podes usar este comando: netstat -nabo Você também pode filtrar por algum texto adicionando | find "texto". Exemplo: netstat -nabo | find "8080" Ou dependendo do prompt de …

  6. How do I find out which process is listening on a TCP or UDP port on ...

    Netstat: -a displays all connection and listening ports -b displays executables -n stop resolve hostnames (numerical form) -o owning process netstat -bano | findstr "7002" netstat -ano > ano.txt The Currports …

  7. windows - Strange entries in Netstat output - Super User

    You can get more useful information from the Netstat command by adding the -f and -b parameters, like this: netstat -f -b According to the help (netstat -?) the -f switch: Displays Fully Qualified Domain …

  8. windows 7 - netstat with process name? - Super User

    Here is an example for windows using FOR to parse netstat output then DO tasklist with /fi filter on pid to show process name. The last find is to remove tasklist headers.

  9. How do I find which program is using port 80 in Windows?

    Type in the command: netstat -aon | findstr :80 It will show you all processes that use port 80. Notice the pid (process id) in the right column. If you would like to free the port, go to Task Manager, sort by pid …

  10. windows - How can I see all active connections? - Super User

    0 I am not a computer scientist but I find that netstat is a bit slow and many connections pass through unrecorded, wireshark is fast but has too many packets to filter through and windows resource …