Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

How to know which ports on my (windows) PC are open or closed?

Status
Not open for further replies.

kk2mkk

Member level 2
Joined
Apr 20, 2006
Messages
44
Helped
2
Reputation
4
Reaction score
2
Trophy points
1,288
Location
Hyderabad India
Activity points
1,622
any one please tell me how to know which ports on my (windows) PC are open or closed i have gone through the "netstat" but its showing the listening ports but i am not able to know which application is using which port

i have also googled for some port scanning tools i found different varities
can any one tell me which on is the best and freely available open source tool.

thanks in advance

kk
 

best udp scanner

I guess if you use the software called SYGATE firewall, it'll tell you what ports are scanned and what ports are open etc..
I use it on my pc.. It has prevented 8 trojan attacks till now!..
 

sysinternals port +scanner

no no i dont want any firewall tool
i just need a tool which shows what all ports on my pc are open at a particular instant and which program is using that particular port.
 

Re: TCP UDP port scanner

I don't know if you still looking... Anyway, use this comand from a cmd shell:

netstat

This show network active connections, like tcp and udp ports, the local IP address, the remote IP address and the state of the port.

To see all the ports use the -a swith, to see the number of the port and the atual IP address not the resolved names use the -n swith. So the command u are looking for looks like this:

netstat -an

The result should look like this:

Proto Dirección local Dirección remota Estado
TCP 0.0.0.0:135 0.0.0.0:0 LISTENING
TCP 0.0.0.0:445 0.0.0.0:0 LISTENING
TCP 10.10.10.164:139 0.0.0.0:0 LISTENING
TCP 127.0.0.1:1026 0.0.0.0:0 LISTENING
UDP 0.0.0.0:445 *:*
UDP 0.0.0.0:500 *:*
UDP 0.0.0.0:1032 *:*
UDP 0.0.0.0:1038 *:*
UDP 0.0.0.0:1055 *:*
UDP 0.0.0.0:1069 *:*
UDP 0.0.0.0:4500 *:*
UDP 10.10.10.164:123 *:*
UDP 10.10.10.164:137 *:*
UDP 10.10.10.164:138 *:*
UDP 10.10.10.164:1900 *:*
UDP 127.0.0.1:123 *:*
UDP 127.0.0.1:1025 *:*
UDP 127.0.0.1:1042 *:*
UDP 127.0.0.1:1590 *:*
UDP 127.0.0.1:1621 *:*
UDP 127.0.0.1:1900 *:*

As you can see it shown the protocol type (TPC or UDP), the local IP:port, the remote IP:port and the conection state (LISTENING, ESTABLISHED, TIME WAITING, etc...) The opened ports are the ones that show LISTENING state.

Hope this was helpfull.
 

Re: TCP UDP port scanner

I recently used a Microsoft tool called "port reporter." It will tell you what you need to know in excruciating detail. It is installed as a service. You start/stop the service whenever you want, and it reports on activity between start/stop.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top