G
G
grade242019-09-01 13:44:28
Windows Server
grade24, 2019-09-01 13:44:28

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

4 answer(s)
A
Anton Matushkin, 2019-09-01
@Nanto

Command line > netstat
Really nowhere, system utility.

D
Dimonchik, 2019-09-01
@dimonchik2013

https://docs.microsoft.com/en-us/sysinternals/down...

G
grade24, 2019-09-01
@grade24

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.

A
Alexey Dmitriev, 2019-09-01
@SignFinder

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 question

Ask a Question

731 491 924 answers to any question