Sunucu üzerinde açık olan portlar Find the Process id of the Process Using the Given Port number
- Berat Bey
- 2 May 2023
- 1 dakikada okunur
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
Comments