About 2,640,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. 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 …

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

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

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

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

  7. How to close TCP and UDP ports via windows command line

    Dec 31, 2011 · Does somebody knows how to close a TCP or UDP socket for a single connection via windows command line? Googling about this, I saw some people asking the same thing. …

  8. Windows 10 - How do I keep netstat constantly running?

    Oct 23, 2016 · I want to make it so the "netstat" command is constantly running. How do you do that?

  9. How to understand output of netstat ( below ) command?

    How to understand output of netstat ( below ) command? Asked 11 years, 10 months ago Modified 1 year, 5 months ago Viewed 16k times

  10. How to interpret the output of netstat -o / netstat --timers

    netstat -o includes some timer information in the output but I haven't found an explanation of the output in the Timer column anywhere. Can anybody explain this or point to an explanation? …