Answer the question
In order to leave comments, you need to log in
What program can display active tcp / ip connections in windows?
Friends, hello everyone. Please tell me a program that will display active connections.
I use CurrPorts, but the problem is that it displays several connections from one ip to different ports. And the actual number of connections is hard to track.
Answer the question
In order to leave comments, you need to log in
Guys, thanks a lot for the replies. But I tried all this, alas, all this is not. Hundreds of people connect to windows server 2016 on port 6878. You need to display how many users are currently connected on port 6878.
Powershell comandlet Get-NetTCPConnection
https://docs.microsoft.com/en-us/powershell/module...
In your case it's like this (will give the number of connections on the port):
(Get-NetTCPConnection -LocalAddress ip_address -LocalPort 6878) .count
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question