[ linux ] 工作中常用的防火墙操作

本文涉及的产品
云防火墙,500元 1000GB
简介: 之前写防火墙简介,有粉丝私信我:Linux的相关防火墙操作在这里我总结了一些Linux关于防火墙的常用操作总结的可能不是很全面,但在工作中是绝对够了

1. 防火墙的基本使用



systemctl status firewalld  #查看防火墙状态

firewall-cmd --state   #查看防护墙状态

systemctl stop firewalld #关闭防火墙

systemctl start firewalld  #开启防火墙

systemctl restart 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



/etc/firewalld/zones  #配置规则

/etc/firewalld/firewalld.conf  #主配置文件

firewall-cmd --list-all  #查看所有规则


添加服务firewall-cmd --add-service=http --permanent

移除服务firewall-cmd --remove-service=http --permanent

查看版本: 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=5000/tcp --permanent  #开放5000端口

firewall-cmd --reload   #重载服务

firewall-cmd --list-ports  #查看已经开放的端口

firewall-cmd --remove-port=5555/tcp   #移除端口

相关文章
|
12天前
|
监控 安全 Linux
启用Linux防火墙日志记录和分析功能
为iptables启用日志记录对于监控进出流量至关重要
|
5月前
|
安全 Linux 应用服务中间件
在Linux中,包过滤防火墙与代理应用防火墙有什么区别?有哪些相应的产品?
在Linux中,包过滤防火墙与代理应用防火墙有什么区别?有哪些相应的产品?
|
4月前
|
机器学习/深度学习 安全 网络协议
Linux防火墙iptables命令管理入门
本文介绍了关于Linux防火墙iptables命令管理入门的教程,涵盖了iptables的基本概念、语法格式、常用参数、基础查询操作以及链和规则管理等内容。
248 73
|
2月前
|
存储 运维 Linux
Linux防火墙firewall的使用
CentOS 7 中的 firewalld 是基于 Netfilter 的防火墙服务,支持动态配置,无需重启服务即可生效。它通过区域管理网络流量,每个区域可以设置不同的防火墙规则。默认区域为 public,可以通过命令行工具 firewall-cmd 进行管理和配置。firewalld 提供了丰富的预定义服务和区域,方便用户根据需求进行灵活配置。
47 0
|
5月前
|
Linux 网络安全
linux关闭方防火墙的命令
linux关闭方防火墙的命令
95 2
|
网络协议 安全 Linux
百度搜索:蓝易云【Linux系统下如何在防火墙开放指定端口】
在Linux系统中,防火墙是用于保护计算机安全的重要组成部分。默认情况下,大多数Linux发行版都会自带一个防火墙,如iptables、firewalld等。当我们需要运行特定的应用程序或服务时,需要在防火墙中开放相应的端口。下面就是Linux系统下如何在防火墙开放指定端口的详细步骤。
122 0
|
8月前
|
存储 安全 网络协议
使用 firewall-cmd 管理 Linux 防火墙端口
本文将介绍如何使用 firewall-cmd 工具在 Linux 系统中进行简单端口管理,包括开放、查询、关闭等操作。通过实例展示相关命令的用法,希望能对大家有所帮助。
767 0
|
8月前
|
网络协议 安全 Linux
linux配置防火墙 Centos7下 添加 端口白名单
linux配置防火墙 Centos7下 添加 端口白名单
1093 0
|
Linux 网络安全
Linux系统如何查看和设置防火墙规则(端口开放和禁用)
Linux系统如何查看和设置防火墙规则(端口开放和禁用)
3506 0
|
网络协议 Linux 网络安全
Linux:防火墙开启或停用,以及开放端口(包含Centos 7、Centos 6)
Linux:防火墙开启或停用,以及开放端口(包含Centos 7、Centos 6)
1283 0
Linux:防火墙开启或停用,以及开放端口(包含Centos 7、Centos 6)