CentOS 7.X 防火墙简单配置

Posted 奶牛的没有

tags:

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

CentOS7使用的是Linux Kernel 3.10.0的内核版本,新版的Kernel内核已经有了防火墙netfilter,并且使用效能更高,稳定性更好

        配置防火墙的两种方法:

    一、使用xml配置

方法一
cp /usr/lib/firewalld/services/http.xml /etc/firewalld/services/
firewall-cmd --reload

    二、使用命令的方式

  方法二

##Add
firewall-cmd --permanent --zone=public --add-port=80/tcp

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

##Reload
firewall-cmd --reload

 

命令含义:
 
    --zone #作用域
 
    --add-port=80/tcp  #添加端口,格式为:端口/通讯协议
 
   --permanent   #永久生效,没有此参数重启后失效

   

    其中,方法二的firewalld/zones/public.xml文件,

    方案一也需要在public.xml里面新增<service name="http"/>,否则http的防火墙规则不会生效,

    而且两种配置方式都需要重新载入防火墙。

附:

查看防火墙状态

systemctl status firewalld.service

 

启动防火墙

systemctl start firewalld.service

 

关闭防火墙

systemctl stop firewalld.service

 

重新启动防火墙

systemctl restart firewalld.service

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

CentOS 7.x编译安装Nginx1.10.3+MySQL5.7.16+PHP5.2 5.3 5.4 5.5 5.6 7.0 7.1多版本全能环境

为CentOS系统配置防火墙设置

CentOS 7.x 防火墙开放端口相关用法记录

K8SCentOS7.x通过kubeadm安装Kubernetes1.15.2

Centos 7.x 源码搭建Nginx

centos 7.x 安装开源堡垒机Jumpserver