What is working here?

T

Tumurbaatar S.

C:\WINDOWS>netstat
Active Connections
Proto Local Address Foreign Address State
TCP MYPC:1027 localhost:1030 ESTABLISHED
TCP MYPC:1030 localhost:1027 ESTABLISHED


Anybody know what process uses above connection?
 
C

Chuck

C:\WINDOWS>netstat
Active Connections
Proto Local Address Foreign Address State
TCP MYPC:1027 localhost:1030 ESTABLISHED
TCP MYPC:1030 localhost:1027 ESTABLISHED


Anybody know what process uses above connection?

Those are dynamic ports. See:
<http://www.robertgraham.com/pubs/firewall-seen.html>

Use "netstat -o" to find out the process opening the ports.

Or get Port Explorer (free) from
<http://www.diamondcs.com.au/portexplorer/index.php?page=home>, a gui version of
netstat, that will show you what network connections your computer is actually
opening, and what processes are opening them.

And Process Explorer (free) from
<http://www.sysinternals.com/ntw2k/freeware/procexp.shtml>, to find out
everything about the process opening the ports. Provides way more information
than Task Manager.

Cheers,
Chuck
Paranoia comes from experience - and is not necessarily a bad thing.
 
T

Tumurbaatar S.

Thanks, all.
It seems the PostgreSQL server I've recently
installed, is using this connection. I thought
that this ports belong to DCOM.
 
C

Chuck

Thanks, all.
It seems the PostgreSQL server I've recently
installed, is using this connection. I thought
that this ports belong to DCOM.

Glad you got it sorted. Thanks for the update.

Cheers,
Chuck
Paranoia comes from experience - and is not necessarily a bad thing.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top