1. Basic use of firewalld start up: systemctl start firewalld Check the status: systemctl status firewalld stop: systemctl disable firewalld Disable: systemctl stop firewalld 2.systemctl is the main tool in CentOS7's service management tools, which integrates the functions of the previous service and chkconfig. Start the firewall: systemctl start firewalld.service Turn off the firewall: systemctl stop firewalld.service Restart the firewall: systemctl restart firewalld.service Display the status of the firewall: systemctl status firewalld.service Firewall at boot time: systemctl enable firewalld.service To disable the firewall at boot: systemctl disable firewalld.service Check whether the firewall is started: systemctl is-enabled firewalld.service View the list of started services: systemctl list-unit-files|grep enabled View the list of services that failed to start: systemctl --failed 3. Configure firewalld-cmd View version: firewall-cmd --version View Help: firewall-cmd --help Display status: firewall-cmd --state View all open ports: firewall-cmd --zone=public --list-ports Update firewall rules: firewall-cmd --reload View region information: firewall-cmd --get-active-zones Check the area to which the specified interface belongs: firewall-cmd --get-zone-of-interface=eth0 Deny all packets: firewall-cmd --panic-on To cancel the rejected status: firewall-cmd --panic-off Check if rejected: firewall-cmd --query-panic 4: Open the port Add to firewall-cmd --zone=public --add-port=80/tcp --permanent (--permanent is effective permanently, and will become invalid after restart without this parameter) #Open port 80 Reload firewall-cmd --reload Check firewall-cmd --zone=public --query-port=80/tcp #Check if port 80 is open delete firewall-cmd --zone= public --remove-port=80/tcp --permanent #Delete port 80 configuration The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Example code of vue + element ui to realize player function
>>: Install mysql offline using rpm under centos 6.4
Introduction MySQL 5.7 aims to be the most secure...
Overview There are many form requirements in the ...
background When I was using Docker these two days...
Dynamically implement a simple secondary menu Whe...
Table of contents 1. Concept of array flattening ...
When using XAML layout, sometimes in order to make...
Table of contents 1. Swap partition SWAP 1.1 Crea...
Hyperlinks enable people to jump instantly from pa...
1 Introduction to HTML 1.1 First experience with ...
eureka: 1. Build a JDK image Start the eureka con...
Table of contents background Solution New Questio...
Error occurs: When exporting the database from My...
Table of contents The difference between hash and...
1. Use version vite:2.0 ant-design-vue: 2.0.0-rc....
Recently, I found that after using the docker loa...