- Find all open ports -> netstat
- All listening ports -> netstat -an | find /i "listening"
- see what ports your computer actually communicates with -> netstat -an |find /i "established"
- find specified open port -> netstat -an | find /i "8989"
- find open ports and their process ID -> netstat -ao | find /i "listening"
No comments:
Post a Comment