IP ports

  • Thread starter Thread starter John
  • Start date Start date
J

John

I'm trying to test a network application that I developed
and I think some other process has the UDP port that I am
expecting to use. Is there a tool that will show me which
processes have IP ports open and which port they have?
 
John said:
I'm trying to test a network application that I developed
and I think some other process has the UDP port that I am
expecting to use. Is there a tool that will show me which
processes have IP ports open and which port they have?

www.kerio.com have a free firewall that shows what ports are open and
sending/listening
 
John said:
I'm trying to test a network application that I developed
and I think some other process has the UDP port that I am
expecting to use. Is there a tool that will show me which
processes have IP ports open and which port they have?

netstat -a -o

gives a list of ports, and the process ID, which you can then lookup in
taskmanager, but TCPView from SysInternals is probably better.


Arild
 
Back
Top