Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

I just want to understand the difference between :::: and 0.0.0.0. I believe both are same which let connection from outside if any processor is listening to that port.

udp        0      0 127.0.0.1:123               0.0.0.0:*
udp        0      0 0.0.0.0:123                 0.0.0.0:*
udp        0      0 :::32813                    :::*
tcp        0      0 :::5080                     :::*
share|improve this question

migrated from stackoverflow.com Dec 5 '12 at 23:59

1 Answer

As you have correctly identified, an IPv4 address of 0.0.0.0 is a "catch-all" listen address.

:: is the short-form of 0:0:0:0:0:0:0:0, which is the equivalent address in IPv6. The third colon separates this address from the port number.

This question has been asked on the web before1.


1. discovered via a Google search for netstat colons

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.