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

    How do I interpret 'netstat -a' output Asked 17 years, 8 months ago Modified 2 years, 11 months ago Viewed 84k times

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

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

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

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

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

  9. linux - How to parse netstat command in order to get process name …

    Dec 27, 2013 · 29 I'm trying to determine what application is using certain port and get netstat -tlnp | grep <port> for Linux. This command return the following output:

  10. How to list open ports and application using them in Windows?

    Jan 12, 2016 · I have trouble identifying the application using port 25 on my Windows 10 system. Any useful hints to list used ports and using applications without 3rd-party applications?