vote up 2 vote down star

Some things look strange to me:

  • What is the distinction between 0.0.0.0, 127.0.0.1, and [::]?
  • How should each part of the foreign address be read (part1:part2)?
  • What does a state TimeWait, CloseWait mean?
  • etc.

Could someone give a quick overview of how to interpret these results?

flag

74% accept rate

6 Answers

vote up 5 vote down

0.0.0.0 usually refers to stuff listening on all interfaces. 127.0.0.1 = localhost (only your local interface) I'm not sure about [::]

TIME_WAIT means both sides have agreed to close and TCP must now wait a prescribed time before taking the connection down.

CLOSE_WAIT means the remote system has finished sending and your system has yet to say it's finished.

link|flag
vote up 1 vote down

Not answering your question but have you ever used a tool like TCPView from sysinternals. Much better than messing with a cmd window

link|flag
vote up 1 vote down

127.0.0.1 is your loopback address also known as 'localhost' if set in your HOSTS file. See here for more info: http://en.wikipedia.org/wiki/Localhost

0.0.0.0 means that an app has bound to all ip addresses using a specific port. MS info here: http://support.microsoft.com/default.aspx?scid=kb;en-us;175952

'::' is ipv6 shorthand for ipv4 0.0.0.0.

link|flag
vote up 1 vote down

Send-Q is the amount of data sent by the application, but not yet acknowledged by the other side of the socket.

Recv-Q is the amount of data received from the NIC, but not yet consumed by the application.

Both of these queues reside in kernel memory. There are guides to help you tweak these kernel buffers, if you are so inclined. Although, you may find the default params do quite well.

link|flag
vote up 0 vote down

  • What is the distinction between 0.0.0.0, 127.0.0.1, and [::]?

    • 0.0.0.0 indicates something that is listening on all interfaces on the machine.
    • 127.0.0.1 indicates your own machine.
    • [::] is something I don't have, but my machine does have *:* which shows that UDP ports don't really have a foreign address - they receive packets from any where. That is the nature of UDP.
  • How should each part of the foreign address be read (part1:part2)?

    • part1 is the hostname or IP address
    • part2 is the port
  • link|flag
    vote up 0 vote down

    For those seeing [::] in their netstat output, I'm betting your machine is running IPv6; that would be equivalent to 0.0.0.0, i.e. listen on any IPv6 address.

    link|flag
    This might also be OS-specific. On my Mac OS X system, by default, IPv6 is on, but the IPv6 ("tcp6") entries still say "*.*" – benc Jul 23 at 6:02

    Your Answer

    Get an OpenID
    or

    Not the answer you're looking for? Browse other questions tagged or ask your own question.