Linux Centos firewalld 使用

一、 firewalld 基操

start: systemctl start firewalld

stop: systemctl stop firewalld

status: systemctl status firewalld

开机禁用 : systemctl disable firewalld

开机启用 : systemctl enable firewalld

二、systemctl介绍

启动服务: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

三、firewalld-cmd 命令

1、查看版本: firewall-cmd --version

2、查看帮助: firewall-cmd --help

3、显示状态: firewall-cmd --state

4、查看所有打开的端口: firewall-cmd --zone=public --list-ports

5、更新防火墙规则: firewall-cmd --reload

6、查看区域信息: firewall-cmd --get-active-zones

7、查看指定接口所属区域: firewall-cmd --get-zone-of-interface=eth0

8、拒绝所有包:firewall-cmd --panic-on

9、取消拒绝状态: firewall-cmd --panic-off

10、查看是否拒绝: firewall-cmd --query-panic

四、端口操作命令

1、添加:firewall-cmd --zone=public --add-port=1222/tcp --permanent

-permanent永久生效,没有此参数重启后失效

2、重载:firewall-cmd --reload

3、查看:firewall-cmd --zone= public --query-port=1222/tcp

4、删除:firewall-cmd --zone= public --remove-port=1222/tcp --permanent

五、 访问连接配置

1、ssh 连接允许指定ip访问

firewall-cmd --permanent --zone=public --add-rich-rule='rule family="ipv4" source address="192.168.0.1" port protocol="tcp" port="22" accept'

2、ssh 拒绝指定ip

firewall-cmd --permanent --zone=public --add-rich-rule='rule family="ipv4" source address="192.168.0.1" port protocol="tcp" port="22" reject'

3、ssh 连接 移除公共访问

firewall-cmd --permanent --zone=public --remove-service=ssh

4、ssh连接放开访问

firewall-cmd --permanent --zone=public --add-service=ssh

相关推荐
风123456789~16 小时前
【Linux专栏】显示或隐藏行号、批量注释
linux·运维·服务器
谢尔登16 小时前
简单聊聊webpack摇树的原理
运维·前端·webpack
只想安静的写会代码17 小时前
centos/ubuntu/redhat配置清华源/本地源
linux·运维·服务器
susu108301891117 小时前
ubuntu多块硬盘挂载到同一目录LVM方式
linux·运维·ubuntu
r***F26217 小时前
【漏洞复现】CVE-2019-11043(PHP远程代码执行漏洞)信息安全论文_含漏洞复现完整过程_含Linux环境go语言编译环境安装
linux·golang·php
smaller_maple19 小时前
linux问题记录1
linux·运维·服务器
v***85720 小时前
Ubuntu介绍、与centos的区别、基于VMware安装Ubuntu Server 22.04、配置远程连接、安装jdk+Tomcat
java·ubuntu·centos
报错小能手20 小时前
讲讲libevent底层机制
linux·服务器
阿星智力囊21 小时前
Thinkphp6+nginx环境报错信息不显示,接口直接报500和CORS跨域(错误的引导方向),真坑啊
运维·nginx·php·thinkphp6
代码AC不AC1 天前
【Linux】计算机的基石:从冯·诺依曼体系结构到操作系统管理
linux·操作系统·冯诺依曼体系结构