How To Check for established IP connections on Windows

THIS CMD

netstat -an | find "ESTABLISHED"

This command will display all active TCP connections that are in the "ESTABLISHED" state, including the local IP, remote IP, and the port numbers of both systems. The IP addresses will be in the form of IPv4 addresses such as 192.168.1.x or IPv6 addresses such as 2002:3e2f:f248::3e2f:f248

netstat -n | findstr "ESTABLISHED"


netstat -an | find "ESTABLISHED"
Previous
Next Post »