Answers for "how to check which ports in use"

7

see what ports are in use

Get-Process -Id (Get-NetTCPConnection -LocalPort portNumber).OwningProcess
Posted by: Guest on April-02-2020
0

how to check listening ports on a server

sudo ss -tulwn | grep LISTEN
Posted by: Guest on June-25-2020

Code answers related to "how to check which ports in use"

Browse Popular Code Answers by Language