centos 7如何使用firewalld 添加策略

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos 7如何使用firewalld 添加策略相关的知识,希望对你有一定的参考价值。

1、运行、停止、禁用firewalld

启动:# systemctl start  firewalld

查看状态:# systemctl status firewalld 或者 firewall-cmd --state

停止:# systemctl disable firewalld

禁用:# systemctl stop firewalld

2、vim /etc/firewalld/zones/public.xml

<?xml version="1.0" encoding="utf-8"?>

<zone>

  <short>Public</short>

  <description>For use in public areas. You do not trust the other computers on networks to not harm your computer. Only selected incoming connections are accepted.</description>

  <service name="dhcpv6-client"/>

  <service name="ssh"/>      ****添加服务

  <service name="https"/>

  <port protocol="tcp" port="8080" />       *****添加端口

</zone>


参考:http://www.jb51.net/article/97964.htm


以上是关于centos 7如何使用firewalld 添加策略的主要内容,如果未能解决你的问题,请参考以下文章

CentOS 7 firewalld详解,添加删除策略

如何在RHEL/CentOS 7以及Fedora中配置FirewallD

CentOS 7 开放端口

如何在 Centos 7 中使用 firewalld 启用 MPI mpirun

Centos 7防火墙firewalld开放80端口

Firewalld防火墙(CentOS 7)