CentOS 7 防火墙指令

本文涉及的产品
云防火墙,500元 1000GB
简介: 本文介绍了CentOS 7中管理防火墙`firewalld`的指令。

CentOS 7防火墙指令

1.查看防火墙状态

简易信息

firewall-cmd --state

详细信息

systemctl status firewalld

2.打开防火墙

systemctl start firewalld

3.关闭防火墙

systemctl stop firewalld

4.重启防火墙

firewall-cmd --reload

可能需要root权限

systemctl reload firewalld

5.防火墙配置查看

查看防火墙的详细配置

firewall-cmd --list-all

查看已打开的端口

firewall-cmd --list-ports

查看特定端口是否打开

firewall-cmd --query-port=8080/tcp

6.端口管理

开放端口

firewall-cmd --permanent --zone=public --add-port=端口号/tcp

开放多个端口

firewall-cmd --permanent --zone=public --add-port=端口号1/tcp --add-port=端口号2/tcp

注:public表示作用域,8080/tcp表示端口和类型,--permanent表示永久生效,

关闭端口

firewall-cmd --permanent --zone=public --remove-port=端口号/tcp

关闭多个端口

firewall-cmd --permanent --zone=public --remove-port=端口号1/tcp --add-port=端口号2/tcp

💡 开放或关闭端口后,一定要执行重新加载防火墙配置的命令 ,否则端口不会生效

firewall-cmd --reload
目录
相关文章
|
15天前
|
安全 Linux 网络安全
centos7中firewall防火墙的常用命令总结
以上命令集覆盖了 `firewalld`的基本操作,是维护CentOS 7系统安全不可或缺的工具。对于更高级的配置需求或遇到特定问题
13 3
|
6月前
|
XML 安全 Linux
【Linux】深入探究CentOS防火墙(Firewalld):基础概念、常用命令及实例操作
【Linux】深入探究CentOS防火墙(Firewalld):基础概念、常用命令及实例操作
|
6月前
|
监控 安全 Linux
|
6月前
|
网络协议 Linux 网络安全
Linux(17)Centos5、6、7、8版本的防火墙常用命令
Linux(17)Centos5、6、7、8版本的防火墙常用命令
136 0
|
3月前
|
安全 Linux 应用服务中间件
在Linux中,包过滤防火墙与代理应用防火墙有什么区别?有哪些相应的产品?
在Linux中,包过滤防火墙与代理应用防火墙有什么区别?有哪些相应的产品?
|
2月前
|
机器学习/深度学习 安全 网络协议
Linux防火墙iptables命令管理入门
本文介绍了关于Linux防火墙iptables命令管理入门的教程,涵盖了iptables的基本概念、语法格式、常用参数、基础查询操作以及链和规则管理等内容。
222 73
|
3月前
|
Linux 网络安全
linux关闭方防火墙的命令
linux关闭方防火墙的命令
77 2
|
4月前
|
网络协议 Linux 网络安全
入职必会-开发环境搭建39-Linux常用操作-Linux防火墙操作
在CentOS 7中,新引入了firewalld服务(防火墙),取代了CentOS 6之前的iptables服务(防火墙)。
入职必会-开发环境搭建39-Linux常用操作-Linux防火墙操作
|
3月前
|
Linux 网络安全
在Linux中,如何设置防火墙规则?
在Linux中,如何设置防火墙规则?
|
3月前
|
Linux 网络安全
在Linux中,iptables和firewalld两种防火墙如何使用?
在Linux中,iptables和firewalld两种防火墙如何使用?
下一篇
无影云桌面