netstat -aon | findstr<port_number>
Yukarıdaki komut ile sunucu üzerinde bulunan açık olan portları bulabiliriz. Ayrıca port numarası yerine PID numarasını yazarsak o prosesi kullanan tüm ip adreslerini gösterir.
-a Displays all connections and listening ports.
-o Displays owning process Id associated with each connection.
-n Displays addresses and port numbers in numerical forms
Kommentare