How do I find out what this IP is?

TCP 0.0.0.0.3965

The meaning depends on the context of use, but IP address 0.0.0.0 is the
wildcard
address, and 3965 is the port assignment. If you are looking at the
value of a socket address being passed to bind() before a listen(),
this socket address means attach to the wildcard IP address on local port
3965.

The networking stack will bind the IP address to the IP address of
one of the configured active interfaces.

The meaning of the port assignment may be pre-established or
made up by convention between the service and clients.

To see the assigned port numbers for a particular machine to see what
service listens on that port, look at the /etc/services file. To know the
range of
pre-assigned port numbers for a wide variety of standard services and some
proprietary
ones, check the IANA assigned port number registry:

http://www.iana.org/assignments/port-numbers

“Mike Xu” <mxu@emscan.com> wrote in message
news:41A77837.6949FCC@emscan.com

TCP 0.0.0.0.3965