centos7.3 防火墙设置

Posted maohuidong

tags:

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

1、查看firewall服务状态

systemctl status firewalld

技术分享图片

2、查看firewall的状态

firewall-cmd --state

 技术分享图片

3、开启、重启、关闭、firewalld.service服务

# 开启
service firewalld start
# 重启
service firewalld restart
# 关闭
service firewalld stop

4、查看防火墙规则

firewall-cmd --list-all 

5、查询、开放、关闭端口

技术分享图片
# 查询端口是否开放
firewall-cmd --query-port=8080/tcp
# 开放80端口
firewall-cmd --permanent --add-port=80/tcp
# 移除端口
firewall-cmd --permanent --remove-port=8080/tcp

#重启防火墙(修改配置后要重启防火墙)
firewall-cmd --reload
# 参数解释 1、firwall-cmd:是Linux提供的操作firewall的一个工具; 2、--permanent:表示设置为持久; 3、--add-port:标识添加的端口;
技术分享图片







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

Centos7.3安装vsftp服务

CentOS7.3上部署安装Oracle12c

CentOS7.3 下开放防火墙的端口

Centos7.3防火墙配置

转载centos7.3 防火墙配置

Centos7.3防火墙配置