`

firewalld的基本使用

 
阅读更多

1、firewalld的基本使用

启动: systemctl start firewalld

查看状态: systemctl status firewalld 

停止: systemctl disable firewalld

禁用: systemctl stop 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

 

那怎么开启一个端口呢

添加

firewall-cmd --zone=public --add-port=80/tcp --permanent    (--permanent永久生效,没有此参数重启后失效)

重新载入

firewall-cmd --reload

查看

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

删除

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

分享到:
评论

相关推荐

    firewalld防火墙实操

    在使用`firewalld`之前,我们需要了解几个基本的概念: - **区域(Zone)**:是`firewalld`中的一个安全级别设置,每个区域对应不同的网络信任级别,默认有多个预定义的区域,如`public`、`work`等。 - **服务...

    防火墙白名单设置方法_firewalld_centos7.pdf

    为firewall设置访问白名单,仅允许合法的ip访问特定端口,如下以9089端口以及5672端口为例

    Linux防火墙-firewalld

    1、基本使用 启动: systemctl start firewalld 查看状态: systemctl status firewalld 停止: systemctl disable firewalld 禁用: systemctl stop firewalld 2、Centos7操作 1、启动一个服务 systemctl start...

    详解CentOS7使用firewalld打开关闭防火墙与端口

    1、firewalld的基本使用 启动: systemctl start firewalld 查看状态: systemctl status firewalld 停止: systemctl disable firewalld 禁用: systemctl stop firewalld  2.systemctl是CentOS7的服务管理...

    linux端口开放方法

    firewalld的基本使用 启动: systemctl start firewalld 关闭: systemctl stop firewalld 查看状态: systemctl status firewalld 开机禁用 : systemctl disable firewalld 开机启用 : systemctl enable ...

    Linux系统firewall-cmd 命令详解.docx

    而是和 iptables 一样需要通过内核的 netfilter 来实现,也就是说 firewalld 和 iptables 一样,他们的作用都是用于维护规则,而真正使用规则干活的是内核的 netfilter,但 firewalld 和 iptables 的结构以及使用...

    linux之centos7防火墙基本使用详解

    下面我们将深入探讨 CentOS 7 中 firewalld 的基本使用方法。 1. **firewalld 的基本操作** - **启动**:使用 `systemctl start firewalld` 来启动 firewalld 服务。 - **查看状态**:`systemctl status ...

    firewall-cmd命令.txt

    也可以直接编辑XML文件(官方不建议使用些方法)。 4、frewall-cmd创建防火墙规则分基本规则与富规则(Rich Language)。 区别在于:基本规则不能指定源、目IP,不能指定IP协议版本。控制范围较宽,在某些需要精准...

    安装windchill.pdf

    3. 关闭防火墙:使用 `systemctl stop firewalld` 和 `systemctl disable firewalld` 命令关闭防火墙。 二、安装 Oracle 1. 下载 Oracle 安装包:从 Oracle 官网下载 Oracle 19C 安装包。 2. 安装 Oracle:使用 `...

    linux基本操作MD文档大全.7z

    同时,理解防火墙规则(iptables或firewalld),设置用户和组权限,以及了解基本的安全实践,有助于保护系统安全。 10-**故障排查和调试**:学会使用`dmesg`查看内核消息,`strace`跟踪系统调用,`gdb`调试程序,...

    CentOS 7.0启用iptables防火墙.docx

    首先,由于 CentOS 7.0 默认使用 firewallD,所以在启用 iptables 之前,我们需要关闭 firewallD 服务。这可以通过以下两条命令完成: 1. `systemctl stop firewalld.service` - 此命令会立即停止 firewallD 服务。...

    CentOS7打开关闭防火墙与端口

    CentOS7 打开关闭防火墙与端口 1、firewalld的基本使用 2.systemctl是CentOS7的服务管理工具中主要的工具,它融合之前service和chkconfig的功能于一体。

    Linux入门基本引导笔记

    Linux入门基本引导笔记是针对初学者的一份精华学习资料,主要涵盖了Linux系统的基本操作和配置。以下是这份笔记中涉及的一些核心知识点: 1. **网络配置**: - 使用`ifconfig -a`命令查看所有网络接口的状态。 - ...

    Linux系统安装和基本配置1

    6. **防火墙规则**:了解`iptables`或`firewalld`,设置端口开放策略。 7. **系统服务管理**:学习使用`systemd`命令,如`systemctl start/stop/restart/enable/disable <服务名>`来控制服务。 8. **文本编辑器**:...

    Linux common command

    例如,`sudo systemctl stop firewalld`使用`sudo`以管理员权限执行了上述命令。 7. 文件和目录路径 在文件内容中提到了`/usr/local/include/`和`/usr/local/lib/`目录。这些是标准的Unix目录结构中的路径,通常...

    Linux基础课件-iptables安装与启动.pptx

    在RHEL7/CentOS7系统中,由于默认使用的是firewalld服务,所以需要先停止firewalld服务,并禁止其开机启动。这可以通过`systemctl stop firewalld`和`systemctl disable firewalld`命令完成。 接下来,为了安装...

    Centos7防火墙配置手册

    - **Static Firewalls**(如 **system-config-firewall/lokkit**)与 **FirewallD** 不能同时使用。 - **选择器**:在 CentOS 7 中,当系统安装完成或首次联网时,会显示一个选择器让用户选择要使用的防火墙方案。 -...

    CentOS7基本命令总结

    * which:查看命令的路径,例如 which firewalld 查看 firewalld 命令的路径。 五、 网络管理 在 CentOS7 中,网络管理是非常重要的一部分。下面是一些常用的网络管理命令: * scp:远程复制文件,例如 scp index...

    mongodb安装图文讲解.pdf

    在开始安装 MongoDB 之前,我们需要了解一些基本概念和注意事项。在本文中,我们将使用 Centos7 Linux 内核,并且所有命令都是使用 root 用户登录执行的,否则需要在命令前面加上 sudo。 二、环境配置 在安装 ...

Global site tag (gtag.js) - Google Analytics