Centos7 使用firewall管理防火墙
Posted y593216
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos7 使用firewall管理防火墙相关的知识,希望对你有一定的参考价值。
一、Centos7使用firewall的管理防火墙
1.firewalld基本使用
启动:systemctl start firewalld
关闭:systemctl stop firewalld
状态:systemctl status firewalld
开机禁用:systemctl disable firewalld
开机启用:systemctl enable firewalld
2.配置项目
例1:开放80端口
a.开启80端口
命令:firewall-cmd --zone=public --add-port=80/tcp --permanent #--permanent永久生效,没有此参数重启后失效
b.重新加载:
命令: firewall-cmd --reload #重新加载后生效
例2:关闭80端口
a.删除80端口:
命令:firewall-cmd --zone=public --remove-port=80/tcp --permanet
b.重新加载:
命令: firewall-cmd --reload #重新加载后生效
例3:查看已开放的端口
a.命令:firewall-cmd --zone=public --list-ports
以上是关于Centos7 使用firewall管理防火墙的主要内容,如果未能解决你的问题,请参考以下文章
RHEL7/CentOS7防火墙之firewall-cmd命令详解