Linux防火墙

Posted qingshan

tags:

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

iptables

firewalld

CentOS6、Redhat6之前使用的都是iptables,

           打开,关闭,查看iptables

                 service iptables start  

                 service iptables  stop   

     

         禁止开机启动

            chkconfig iptables off    

         

firewall-cmd --status

 

CentOS7,Redhat7以后使用firewalld

启动一个服务: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;echo $?

查看已启动的服务列表:systemctl list-unit-files|grep enabled

以上是关于Linux防火墙的主要内容,如果未能解决你的问题,请参考以下文章

linux查看防火墙配置的命令

如何配置linux下的防火墙?

linux 如何查看防火墙是不是开启

在linux里面如何设置防火墙?

如何配置linux下的防火墙?

linux 防火墙开启不了怎么办