You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Introduction:

The article describes, an easy way to find out the port allocation of the Windows computer.


Tool netstat


Syntax:

netstat [-a] [-e] [-n] [-o] [-p <Protocol>] [-r] [-s] [<Interval>]


commandline parameters:

Parameters

Tabelle 1
ParameterDescription
-aDisplays all active TCP connections and the TCP and UDP ports on which the computer is listening.
-eDisplays Ethernet statistics, such as the number of bytes and packets sent and received. This parameter can be combined with -s.
-nDisplays active TCP connections, however, addresses and port numbers are expressed numerically and no attempt is made to determine names.
-oDisplays active TCP connections and includes the process ID (PID) for each connection. You can find the application based on the PID on the Processes tab in Windows Task Manager. This parameter can be combined with -a, -n, and -p.
-p Shows connections for the protocol specified by Protocol. In this case, the Protocol can be tcp, udp, tcpv6, or udpv6. If this parameter is used with -s to display statistics by protocol, Protocol can be tcp, udp, icmp, ip, tcpv6, udpv6, icmpv6, or ipv6.
-sDisplays statistics by protocol. By default, statistics are shown for the TCP, UDP, ICMP, and IP protocols. If the IPv6 protocol is installed, statistics are shown for the TCP over IPv6, UDP over IPv6, ICMPv6, and IPv6 protocols. The -p parameter can be used to specify a set of protocols.
-rDisplays the contents of the IP routing table. This is equivalent to the route print command.

Redisplays the selected information every Interval seconds. Press CTRL+C to stop the redisplay. If this parameter is omitted, netstat prints the selected information only once.
/?Displays help at the command prompt.


Examples

Start the cmd with administrator rights and commandline  "netstat -ano"

result:


How can I determine the assignment of the port?


search the Port here (1) "8080" for example and the PID here (2) "4260"

next Step, start the taskmanager and search to the PID "4260"


Result: we ca see, the tomcat8.exe (Tomcat Server) is using with port 8080

  • No labels