Summary of methods to check whether the port is open in Linux

Summary of methods to check whether the port is open in Linux

Method 1: Use lsof command

We can use the lsof command to check whether a port is open. The basic syntax is as follows:

lsof -i:port number

If there is no output, it means that the port number is not open.

The following figure takes port 80 and port 53 as an example to check whether port 80 and port 53 are open

You can also use the lsof -i command to directly output the open ports to check whether certain ports are open.

Method 2: Use the netstat command

The netstat command can provide network-related information about a host.

We can check the open ports in linux using netstat -atu

Netstat Flags We Use: -a, -t and -u Introduction

-a: All sockets.

-t : TCP connection of the program

-u: UDP connection for the program

You can also add the -p flag to display the associated PID of the process or program name.

To display only UDP ports, you can use the following command:

To display only TCP ports, you can use the following command:

You may also be interested in:
  • Three ways to check whether a port is open in a remote Linux system
  • Summary of Linux methods for detecting whether a remote port is open
  • Detailed explanation of Linux to view the open port number of the server
  • How to allow remote access to open ports in Linux

<<:  MySQL 5.7.17 installation and configuration tutorial under CentOS6.9

>>:  jQuery plugin to implement search history

Recommend

Solution to Chinese garbled characters when operating MySQL database in CMD

I searched on Baidu. . Some people say to use the...

Three ways to draw a heart shape with CSS

Below, we introduce three ways to draw heart shap...

How to install Odoo12 development environment on Windows 10

Preface Since many friends say they don’t have Ma...

Analysis of the principle and usage of MySQL custom functions

This article uses examples to illustrate the prin...

Graphic tutorial on installing Mac system in virtual machine under win10

1. Download the virtual machine version 15.5.1 I ...

Ways to improve MongoDB performance

MongoDB is a high-performance database, but in th...

Record the whole process of MySQL master-slave configuration based on Linux

mysql master-slave configuration 1. Preparation H...

A brief talk about the diff algorithm in Vue

Table of contents Overview Virtual Dom principle ...

Unicode signature BOM (Byte Order Mark) issue for UTF-8 files

I recently encountered a strange thing when debug...

hr horizontal line style example code

Copy code The code is as follows: <hr style=&q...

Detailed process of building nfs server using Docker's NFS-Ganesha image

Table of contents 1. Introduction to NFS-Ganesha ...

How to use Linux to calculate the disk space occupied by timed files

Open the scheduled task editor. Cent uses vim to ...