Search : in
By :

Find port no

Last answer on Aug 1, 2009 4:11:49 pm BST navi, on Jul 10, 2009 4:17:17 pm BST 
 Report this message to moderators

Hello,
how to find a port number of the system, when the system is connect in a LAN network...

Configuration: Windows XP
Firefox 3.0.11

Best answers for « find port no » in :
Command to detect your IP address! Show Command to detect your IP address! Command for Windows 2000 / XP / Vista Command for Windows 95/98 Command for Linux IP address (Internet Protocol) is a numerical identification to detect your computer on a network. It is used to...
What are the open ports on my machine? Show What are the open ports on my machine? Everyone should be concerned about the security of their computer when connected to the Internet and it is therefore necessary, to activate the firewall of your ADSL router or installing one on your...
Windows is not find the file with.exe extension ShowWindows is not find the file with.exe extension What to do? What if your computer is infected? It can happen sometimes that while running a program/application/particular software, Windows does not find the particular extension that...
Find which package a file belongs ShowFind which package a file belongs Third option Below is a tip of how to locate a file needed when compiling. dpkg is the "low level" under debian allowing you to manage a package (installation, removal, purge ...) underwhich other...
Find a song with midomi ShowFind a song with midomi If there is song you like and you do not know the title of the song the tone, but you remember the tone, here is a site that can help you. Link: http://www.midomi.com/ -Click on 'Click and sing or...
Download Find Desktop Standard ShowDescription Find desktop is a well known tool worldwide, so far the application has won many awards in some places. It is an application that will allows you to search files types placed on local computers or LAN. It supports most of the popular...
EFQM - European Foundation for Quality Management ShowIntroduction to EFQM The EFQM (European Foundation for Quality Management) is a European foundation based in Brussels that was founded in 1988 by 14 European companies (Bosch, BT, Bull, Ciba-Geigy, Dassault, Electrolux, Fiat, KLM, Nestlé, Olivetti,...
NAT- Network address translation, port forwarding and port trigg ShowThe principle of NAT Network address translation or NAT was developed in order to respond to the shortage of IP addresses with IPv4 protocol (in time the IPv6 protocol will respond to this problem). In fact, in IPv4 addressing the number of...
Wi-Fi wireless network security (802.11 or WiFi) ShowAdapted infrastructure The first thing to do when a wireless network is installed is to place the access points in reasonable locations depending on the desired area of coverage. However, it is not uncommon to find that the covered area ends up...

1

 sadgurl, on Aug 1, 2009 4:11:49 pm BST

Hi there,

its port 80


To find open ports on a computer, you can use netstat command line.

1. To display all open ports, open DOS command, type netstat and press Enter.

2. To list all listening ports, use netstat -an |find /i "listening" command.

3. To see what ports your computer actually communicates with, use netstat -an |find /i "established"

4. To find specified open port, use find switch. For example, to find if the port 3389 is open or not, do netstat -an |find /i "3389".

5. You can use PULIST from the Windows Resource Kit to find which process is using a specified port. For example, pulist |find /i "4125" may display


Thanks

Reply to sadgurl