3

need to know how many connections i have on a specific port.

For example that i have 10 connection on port 80.

Is it possible to do on netstat or in any program ?

1 Answer 1

4

As answered here:

https://stackoverflow.com/questions/12010631/command-line-for-looking-at-specific-port

You can use the command:

netstat -np | find "port #"

Also, if you want only the number of connections, you can use this command:

netstat -np | find /C "port #"

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .