收集+持续更新 CentOS7 防火墙相关操作与端口配置

一、防火墙 开启、关闭、查看状态
1、开启防火墙
[root@localhost ~]# systemctl start firewalld
2、关闭防火墙
[root@localhost ~]# systemctl stop firewalld
3、重启防火墙
[root@localhost ~]# systemctl start firewalld
4、查看防火墙当下的状态
[root@localhost ~]# systemctl status firewalld

收集+持续更新 CentOS7 防火墙相关操作与端口配置

文章插图
 
5、开机自动启用防火墙
[root@localhost ~]# systemctl enable firewalld
收集+持续更新 CentOS7 防火墙相关操作与端口配置

文章插图
 
6、开机默认禁用防火墙
[root@localhost ~]# systemctl disable firewalld
收集+持续更新 CentOS7 防火墙相关操作与端口配置

文章插图
 
7、查看防火墙开机 启用/禁用 状态
[root@localhost ~]# systemctl is-enabled firewalld
收集+持续更新 CentOS7 防火墙相关操作与端口配置

文章插图
 
8、查看系统当前启动服务的列表
[root@localhost ~]# systemctl list-unit-files|grep enabled
收集+持续更新 CentOS7 防火墙相关操作与端口配置

文章插图
 
9、查看启动失败的服务列表
[root@localhost ~]# systemctl --failed
收集+持续更新 CentOS7 防火墙相关操作与端口配置

文章插图
 
二、防火墙相关命令
1、查看防火墙版本
[root@localhost ~]# firewall-cmd --version
收集+持续更新 CentOS7 防火墙相关操作与端口配置

文章插图
 
2、查看帮助
[root@localhost ~]# firewall-cmd --help
收集+持续更新 CentOS7 防火墙相关操作与端口配置

文章插图
 
其余还有很多
3、查看示当前防火墙状态
[root@localhost ~]# firewall-cmd --state
收集+持续更新 CentOS7 防火墙相关操作与端口配置

文章插图
 
4、查看当前防火墙打开的所有端口
[root@localhost ~]# firewall-cmd --zone=public --list-ports
5、更新防火墙规则
[root@localhost ~]# firewall-cmd --reload
收集+持续更新 CentOS7 防火墙相关操作与端口配置

文章插图
 
6、查看防火墙区域信息
[root@localhost ~]# firewall-cmd --get-active-zones
收集+持续更新 CentOS7 防火墙相关操作与端口配置

文章插图
 
7、查看指定接口所属区域
[root@localhost ~]# firewall-cmd --get-zone-of-interface=eth0
收集+持续更新 CentOS7 防火墙相关操作与端口配置

文章插图
 
8、拒绝所有包 (慎用)
[root@localhost ~]# firewall-cmd --panic-on
9、取消 包拒绝状态
[root@localhost ~]# firewall-cmd --panic-off
收集+持续更新 CentOS7 防火墙相关操作与端口配置

文章插图
 
10、查看包的拒绝状态
[root@localhost ~]# firewall-cmd --query-panic
收集+持续更新 CentOS7 防火墙相关操作与端口配置

文章插图
 
三、firewall防火墙及端口设置
1、防火墙添加端口
[root@localhost ~]# firewall-cmd --zone=public(作用域) --add-port=80/tcp(端口和访问类型) --permanent(永久生效)
2、添加80端口
[root@localhost ~]# firewall-cmd --zone=public --add-port=80/tcp --permanent
收集+持续更新 CentOS7 防火墙相关操作与端口配置

文章插图
 
(--permanent永久生效,没有此参数重启后失效)
3、重新载入防火墙配置
[root@localhost ~]# firewall-cmd --reload
4、查看指定端口状态
[root@localhost ~]# firewall-cmd --zone= public --query-port=80/tcp
收集+持续更新 CentOS7 防火墙相关操作与端口配置

文章插图
 
5、防火墙移除指定端口
[root@localhost ~]# firewall-cmd --zone=public --remove-port=80/tcp --permanent
收集+持续更新 CentOS7 防火墙相关操作与端口配置

文章插图
 
6、检查是否允许伪装IP
[root@localhost ~]# firewall-cmd --query-masquerade
收集+持续更新 CentOS7 防火墙相关操作与端口配置

文章插图
 
7、允许防火墙伪装IP
[root@localhost ~]# firewall-cmd --add-masquerade
收集+持续更新 CentOS7 防火墙相关操作与端口配置

文章插图
 
8、禁止防火墙伪装IP
[root@localhost ~]# firewall-cmd --remove-masquerade
收集+持续更新 CentOS7 防火墙相关操作与端口配置

文章插图
 
9、开放MySQL端口
[root@localhost ~]# firewall-cmd --add-service=mysql


推荐阅读