About 2,620,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. Command line for looking at specific port - Stack Overflow

    Aug 18, 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 …

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

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

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

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

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

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

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