About 2,710,000 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 …

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

    15 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 > …

  3. 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 …

  4. Windows Kill Process By PORT Number - Stack Overflow

    Mar 23, 2019 · Option 2 PowerShell Get-Process -Id (Get-NetTCPConnection -LocalPort portNumber).OwningProcess cmd C:\> netstat -a -b (Add -n to stop it trying to resolve …

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

    3 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 …

  6. 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 …

  7. Investigating which Windows service is listening to which IP and port

    Nov 3, 2008 · A help page is available with netstat -? Examples are: netstat -a Lists all local TCP connections and listening ports together with remote TCP endpoint. netstat -o Adds the …

  8. 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 …

  9. What are CLOSE_WAIT and TIME_WAIT states? - Super User

    When I do netstat -a on my Windows machine, I get a listing of the ports with one of the four states: - LISTENING - CLOSE_WAIT - TIME_WAIT - ESTABLISHED What do CLOSE_WAIT …

  10. How do I find which application is using up my port?

    First, enter this command in cmd ..... netstat -ano | findstr :8080 this or similar you will see TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 4492 now you know the id of application which using port …