CentOS7 防火墙配置

Posted vincenshen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7 防火墙配置相关的知识,希望对你有一定的参考价值。

查看已开放的端口(默认不开放任何端口)

firewall-cmd --list-ports

 

开放80端口

firewall-cmd --zone=public(作用域) --add-port=80/tcp(开放端口) --permanent(永久生效)

 

停止防火墙

systemctl stop firewalld.service

 

查看防火墙状态

firewall-cmd --state

 

禁止防火墙

systemctl disable firewalld.service

 

重启防火墙

firewall-cmd --reload

 

删除规则

firewall-cmd --zone=public --remove-port=80/tcp --permanent

以上是关于CentOS7 防火墙配置的主要内容,如果未能解决你的问题,请参考以下文章

CentOS7下Firewall防火墙配置用法详解

CentOS7 防火墙 Firewalld 规则配置文件批量放行端口

CentOS7防火墙配置

Centos7.3防火墙配置

centos7 防火墙 配置

centOS7.2防火墙常用配置(转)