Centos7.5 防火墙设置

Centos7.5默认使用firewalld作为防火墙

1.查看firewalld服务状态 

systemctl status firewalld

2.查看firewalld的状态

firewall-cmd --state

3.开启、重启、关闭firewalld服务

# 开启
service firewalld start
# 重启
service firewalld restart
# 关闭
service firewalld stop

4.查看防火墙规则

firewall-cmd --list-all 

5.查询、开放、移除端口

复制代码
# 查询端口是否开放
firewall-cmd --query-port=8080/tcp
# 开放80端口
firewall-cmd --permanent --add-port=80/tcp
# 移除端口
firewall-cmd --permanent --remove-port=8080/tcp

#重启防火墙(修改配置后要重启防火墙)
firewall-cmd --reload

# 参数解释
1、firwall-cmd:是Linux提供的操作firewall的一个工具;
2、--permanent:表示设置为持久;
3、--add-port:标识添加的端口;
复制代码

 ⒍一些补充

复制代码
# 关闭防火墙
systemctl stop firewalld

#禁用防火墙自启
systemctl disable firewalld

#安装iptables-service管理工具
yum -y install iptables-services

#启动iptables
systemctl start iptables

#设置为开机自启
systemctl enable iptables

#清空iptables规则
iptables -F

#保存到iptables默认规则
service iptables save
复制代码

 

作者:奇

出处:https://www.cnblogs.com/fanqisoft/p/10437955.html

版权:本作品采用「本文版权归作者和博客园共有,欢迎转载,但必须给出原文链接,并保留此段声明,否则保留追究法律责任的权利。」许可协议进行许可。

posted @   SpringCore  阅读(6384)  评论(0编辑  收藏  举报
编辑推荐:
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 单线程的Redis速度为什么快?
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 展开说说关于C#中ORM框架的用法!
more_horiz
keyboard_arrow_up light_mode palette
选择主题
点击右上角即可分享
微信分享提示