zoukankan      html  css  js  c++  java
  • 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

  • 相关阅读:
    python数据1-5
    python密码1-2
    css Loading 教程
    定制化jQuery
    PHP 将MySQL数据导出csv
    windows MySQL 5.7 导出表方法记录
    前端UI
    我的框架说明文档 2016-04-06
    微信公众号内支付(三)
    微信公众号内支付(二)
  • 原文地址:https://www.cnblogs.com/hengwu/p/9674614.html
Copyright © 2011-2022 走看看