About 11,800,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 requesting a …

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

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

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

  5. windows - How can i know who is using a port? - Stack Overflow

    Oct 26, 2019 · When I browse "localhost:8080" it ask me to authenticate, but I do not know which program on Windows is using that port. How can I determine which program is using that port?

  6. Kill a Process by Looking up the Port being used by it from a .BAT

    Oct 29, 2015 · In Windows what can look for port 8080 and try to kill the process it is using through a .BAT file?

  7. difference between netstat and ss in linux? - Stack Overflow

    In linux, netstat command tells us information of active sockets in system. I understand that netstat uses /proc/net/tcp to acquire the system network information. Since netstat man page says that

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

    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 and close those …

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

  10. 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 process ID to …