centos7 开放/关闭防火墙和端口

Posted 丶newbie

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7 开放/关闭防火墙和端口相关的知识,希望对你有一定的参考价值。

--------------------------------------------------------------防火墙-------------------------------------------------------------

 

查看防火墙状态命令:

  service firewalld status

  systemctl status firewalld

结果:

其中:   enabled:开机启动(开机不启动是disabled);

    active(running):已经启动(未启动是inactive)。

 

启动防火墙命令:service firewalld start(或者systemctl start firewalld)

 

关闭防火墙命令:service firewalld stop(或者systemctl stop firewalld)

 

重启防火墙命令:service firewalld restart(systemctl restart firewalld)

 

设置防火墙开机启动:systemctl enable firewalld

 

设置防火墙开机不启动:systemctl disable firewalld

 

重新加载防火墙配置:firewalld reload(上面的几个命令,要重新加载配置后,状态才会更新)

 

--------------------------------------------------------------端口-------------------------------------------------------------

 

查看所有开放的端口:

  firewall-cmd --list-ports

 

开放端口:

  firewall-cmd --zone=public --add-port=6379/tcp --permanent

  其中:【6379/tcp】  为  端口号/协议;

    最后的   【--permanent】标识永久生效。如果不加,则重启后失效。

 

关闭端口:

  firewall-cmd --zone=public --remove-port=6379/tcp

 

加载配置文件:

  firewall-cmd --reload

 

后记:

  由于我是在阿里云的虚拟主机上面测试的,开启端口后想远程访问的话,还要再阿里云的虚拟主机里面添加安全组信息,将开放的端口配置进去。

以上是关于centos7 开放/关闭防火墙和端口的主要内容,如果未能解决你的问题,请参考以下文章

CentOS6CentOS7 防火墙开放关闭端口

centos 7端口开放和关闭命令

CentOS7防火墙端口开放

CentOS7防火墙端口开放

centos7开启关闭80端口

Centos 7和 Centos 6开放查看端口 防火墙关闭打开