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

原文地址:https://www.cnblogs.com/hengwu/p/9674614.html