Linux防火墙常用命令 1.开启、关闭、禁用防火墙1234567891011121314# 1.启动防火墙systemctl start firewalld# 2.关闭防火墙systemctl stop firewalld# 3.检查防火墙状态systemctl status firewalld# 4.设置开机启用防火墙systemctl enable firewalld.service# 5.设置开机禁用防火墙systemctl disable firewalld.service 2.使用firewall-cmd配置端口1234567891011121314# 1.查看防火墙状态firewall-cmd --state# 2.查看开放的端口firewall-cmd --list-ports# 3.开启防火墙端口(命令含义:–zone #作用域;–add-port=9200/tcp #添加端口,格式为:端口/通讯协议;–permanent #永久生效,没有此参数重启后失效)firewall-cmd --zone=public --add-port=9200/tcp --permanent# 4.关闭防火墙端口firewall-cmd --zone=public --remove-port=9200/tcp --permanent# 5.重新加载配置(修改端口后必须重新加载配置才会生效)firewall-cmd --reload 学习记录 #服务器 #Linux Linux防火墙常用命令 https://blog.kevinchu.top/2023/02/08/linux-firewall-common-commands/ 作者 Kevin Chu 发布于 2023年2月8日 许可协议 使用shell脚本定时清理运行超时的进程 上一篇 Linux离线升级gcc至5.4.0版本(链接已更新) 下一篇 Please enable JavaScript to view the comments