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

Posted 34144451

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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

\'CentOS7

10、阻止mysql端口

[root@localhost ~]# firewall-cmd --remove-service=mysql

\'CentOS7

11、查看开放的服务

[root@localhost ~]# firewall-cmd --list-services

\'CentOS7

12、开放通过tcp访问3306

[root@localhost ~]# firewall-cmd --add-port=3306/tcp
\'CentOS7

13、阻止通过tcp访问3306

[root@localhost ~]# firewall-cmd --remove-port=3306/tcp

14、开放通过udp访问233

\'CentOS7

15、开放通过udp访问233

[root@localhost ~]# firewall-cmd --add-port=233/udp

\'CentOS7

16、查看开放的端口

[root@localhost ~]# firewall-cmd --list-ports

\'CentOS7

17、端口转发

(1)80端口转发到8080(tomcat的默认端口为8080),443转发到8443(https配置的端口为8443)

[root@localhost ~]# firewall-cmd --add-forward-port=port=80:proto=tcp:toport=8080

[root@localhost ~]# firewall-cmd --add-forward-port=port=443:proto=tcp:toport=8443

\'CentOS7

(2)将80端口的流量转发至192.168.11.11

[root@localhost ~]# firewall-cmd --add-forward-port=port=80:proto=tcp:toaddr=192.168.11.11

\'CentOS7

(3)将80端口的流量转发至192.168.11.11的8080端口

[root@localhost ~]# firewall-cmd --add-forward-port=port=80:proto=tcp:toaddr=192.168.11.11:toport=8080

\'CentOS7

 

 

未完 —— 待续 !

以上是关于CentOS7 防火墙相关操作与端口配置 (收集+持续更新)的主要内容,如果未能解决你的问题,请参考以下文章

CentOS7 防火墙 Firewalld 规则配置文件批量放行端口

CentOS7防火墙firewalld的配置

centos7下操作防火墙

CentOS7防火墙 开放端口配置

精通Linux系列Centos7的防火墙及selinux介绍与端口的使用

Linux:centos7防火墙开放端口操作