InterviewSolution
Saved Bookmarks
| 1. |
How To Find Which Ports Are Open? |
|
Answer» You can FIND the ports in your LINUX server with the nmap command: #netstat -ntlp and N -> display the host by numbers t ->shows tcp protocols l ->listening ports p -> displays which process controls the port You can find the ports in your linux server with the nmap command: #netstat -ntlp and n -> display the host by numbers t ->shows tcp protocols u ->to check udp protocols l ->listening ports p -> displays which process controls the port |
|