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

U ->to check UDP 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



Discussion

No Comment Found