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

  3. What does the -tulpn option mean for netstat? - Ask Ubuntu

    Mar 16, 2020 · For finding out which ports of the machine are being opening by which services, I used: netstat -tulpn I checked the man page for netstat command, but I found nothing about …

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

  5. How to check what port a pod is listening on with kubectl and not ...

    Dec 19, 2019 · 5 One answer suggested to run netstat inside the container. This only works if netstat is part of the container's image. As an alternative, you can run netstat on the host …

  6. How do I determine if a port is open on a Windows server?

    Aug 3, 2019 · On the server itself, use netstat -an to check to see which ports are listening. From outside, just use telnet host port (or telnet host:port on Unix systems) to see if the connection …

  7. has netstat been replaced with a new tool? - Ask Ubuntu

    Apr 16, 2018 · Has netstat been replaced by a newer program? I noticed netstat is part of the nettools package which was replaced by ip command. What program should i be using to …

  8. Who is listening on a given TCP port on Mac OS X?

    On macOS, here's an easy way to get the process ID that's listening on a specific port with netstat. This example looks for a process serving content on port 80:

  9. How to test which port MySQL is running on and whether it can be ...

    May 3, 2011 · I agree with @bortunac's solution. my.conf is mysql specific while netstat will provide you with all the listening ports. Perhaps use both, one to confirm which is port set for …

  10. What could cause so many TIME_WAIT connections to be open?

    The connections are not keep-alive; they are closed. After a few minutes, application A reports that it can't open new connections to application B. I am running netstat continuously on both …