Linux - How to find a port is open or not, Determine tcp port is open or close

How to find a port is open or not


nmap command can be used to find the tcp port 80 is open or closed. To find whether the port is open or close use the namp command with the following options.

   nmap -p 80 hostname

Example:
   nmap -p 80 localhost

For UDP
   nmap -sU -p 80 hostname

The above command will determine the port 80 is opened or closed.

The topic on Linux - How to find a port is open or not is posted by - Malu

Hope you have enjoyed, Linux - How to find a port is open or notThanks for your time

Tech Bluff