A brief analysis of Linux to check the firewall status and the status of the ports open to the outside world

A brief analysis of Linux to check the firewall status and the status of the ports open to the outside world

1. Check the firewall status

Check the firewall status systemctl status firewalld

Start the firewall systemctl start firewalld

Disable the firewall systemctl stop firewalld

Start the firewall service firewalld start

If you cannot open

First use: systemctl unmask firewalld.service

Then: systemctl start firewalld.service

2. Check the status of open ports

Query the open ports netstat -ntulp | grep port number: You can check a specific port number

Check whether the specified port is open firewall-cmd --query-port=666/tcp

If the prompt is yes, it means it is enabled; if the prompt is no, it means it is not enabled.

3. External development port

Check whether the port you want to open is open: firewall-cmd --query-port=6379/tcp

Add the specified port to be opened: firewall-cmd --add-port=123/tcp --permanent

Reload the added port: firewall-cmd --reload

Check whether the specified port is opened successfully: firewall-cmd --query-port=123/tcp

Remove the specified port: firewall-cmd --permanent --remove-port=123/tcp

Summarize

The above is my introduction to checking the firewall status and the status of open ports in Linux. I hope it will be helpful to you!

You may also be interested in:
  • Linux firewall status check method example
  • How to configure Linux firewall and open ports 80 and 3306
  • How to modify firewall configuration in Linux system
  • How to use firewall iptables strategy to forward ports on Linux servers
  • How to check if the firewall is turned off in Linux

<<:  Detailed explanation of MySQL cursor concepts and usage

>>:  Node.js uses express-fileupload middleware to upload files

Recommend

Detailed explanation of MySQL Explain

In daily work, we sometimes run slow queries to r...

js array entries() Get iteration method

Table of contents 1. Detailed syntax of entires()...

How to use vue-video-player to achieve live broadcast

Table of contents 1. Install vue-video-player 2. ...

A simple tutorial on how to use the mysql log system

Table of contents Preface 1. Error log 2. Binary ...

How to test network speed with JavaScript

Table of contents Preface Summary of the principl...

How to use Docker-compose to deploy Django applications offline

Table of contents Install Docker-ce for the devel...

MySQL database case sensitivity issue

In MySQL, databases correspond to directories wit...

Ansible automated operation and maintenance deployment method for Linux system

Ansible is a new automated operation and maintena...

Detailed explanation of this pointing in JS arrow function

Arrow function is a new feature in ES6. It does n...

JavaScript exquisite snake implementation process

Table of contents 1. Create HTML structure 2. Cre...

43 Web Design Mistakes Web Designers Should Watch Out For

This is an article about website usability. The a...

A brief discussion on HTML table tags

Mainly discuss its structure and some important pr...

The button has a gray border that is ugly. How to remove it?

I used the dialog in closure and drew a dialog wit...