美文网首页
Centos7使用firewall打开关闭防火墙

Centos7使用firewall打开关闭防火墙

作者: 猿二胖 | 来源:发表于2019-03-14 10:15 被阅读0次

本文整理来自莫小安博客

1、firewalld的基本使用

启动: systemctl start firewalld

关闭: systemctl stop firewalld

查看状态: systemctl status firewalld 

开机禁用  : systemctl disable firewalld

开机启用  : systemctl enable firewalld

2、systemctl是CentOS7的服务管理工具中主要的工具,它融合之前service和chkconfig的功能于一体。

启动一个服务:systemctl start firewalld.service
关闭一个服务:systemctl stop firewalld.service
重启一个服务:systemctl restart firewalld.service
显示一个服务的状态:systemctl status firewalld.service
在开机时启用一个服务:systemctl enable firewalld.service
在开机时禁用一个服务:systemctl disable firewalld.service
查看服务是否开机启动:systemctl is-enabled firewalld.service
查看已启动的服务列表:systemctl list-unit-files|grep enabled
查看启动失败的服务列表:systemctl --failed

3、配置firewalld-cmd

查看版本: firewall-cmd --version

查看帮助: firewall-cmd --help

显示状态: firewall-cmd --state

查看所有打开的端口: firewall-cmd --zone=public --list-ports

更新防火墙规则: firewall-cmd --reload


查看区域信息:  firewall-cmd --get-active-zones

查看指定接口所属区域: firewall-cmd --get-zone-of-interface=eth0


拒绝所有包:firewall-cmd --panic-on

取消拒绝状态: firewall-cmd --panic-off

查看是否拒绝: firewall-cmd --query-panic

4、开启端口

添加

单个端口:firewall-cmd --zone=public --add-port=80/tcp --permanent    (--permanent永久生效,没有此参数重启后失效)
多个端口:firewall-cmd --permanent --zone=public --add-port=100-500/tcp

重新载入

firewall-cmd --reload

查看

firewall-cmd --zone= public --query-port=80/tcp

删除

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

相关文章

  • 【2019-10-11】【linux命令】关闭防火墙

    CentOS7使用firewalld打开关闭防火墙与端口 启动: systemctl start firewall...

  • centos firewalld

    非原创,记录。 Centos7 关闭防火墙 CentOS7.0默认使用的是firewall作为防火墙,使用ipta...

  • CentOS 中 iptables 和 firewall 防火墙

    CentOS7 默认使用的是 firewall 作为防火墙 firewall 防火墙 1、查看 firewall ...

  • CentOS7 firewall基础

    从Centos7开始,默认使用firewall来配置防火墙,不再使用iptables。 启动关闭 查看当前状态 或...

  • Centos7防火墙

    Centos7 firewall 命令: 查看已经开放的端口 开启端口 重启防火墙 关闭防火墙 iptables ...

  • centos7防火墙的设置

    centos7默认使用的是firewall作为防火墙,这里改为iptables防火墙步骤。 firewall-cm...

  • centos7防火墙

    默认防火墙firewall 由于centos7默认是使用firewall作为防火墙,下面介绍如何将系统的防火墙设置...

  • centos7关闭防火墙

    [centos7关闭防火墙] 有些人安装的linux的系统默认防火墙不是iptables,而是firewall,那...

  • centos7 iptables 设置

    CentOS 7.0默认使用的是firewall作为防火墙 关闭firewall:systemctl stop f...

  • Firewalld 用法解析

    1.防火墙firewall的基本概述 现在的RedHat/CentOS7版本默认都使用firewall防火墙了,f...

网友评论

      本文标题:Centos7使用firewall打开关闭防火墙

      本文链接:https://www.haomeiwen.com/subject/cvxtmqtx.html