zoukankan      html  css  js  c++  java
  • Centos7防火墙开启关闭

     0.开启防火墙:

    systemctl start firewalld.service

    1.查看防火墙状态:(下方可以查看得到“active(running)”,此时说明防火墙已经打开了。)

    systemctl status firewalld.service

    2.关闭防火墙:(在下方出现disavtive(dead),这样就说明防火墙已经关闭。)

    systemctl status firewalld.service

     systemctl stop firewalld.service

    3.永久关闭防火墙

    systemctl disable firewalld.service
    
    备注:
    设置 iptables service
    yum -y install iptables-services
    如果要修改防火墙配置,如增加防火墙端口7001
    vi /etc/sysconfig/iptables
    增加规则
    -A INPUT -m state --state NEW -m tcp -p tcp --dport 7001 -j ACCEPT
    保存退出后答
    systemctl restart iptables.service #重启防回火墙使配置生效
    systemctl enable iptables.service #设置防火墙开机启动
    最后重启系统使设置生效即答可。

    按Esc,Shift+q退出编辑,输入!wq 保存退出,

    (当遇到无法退出的情况时:                         

    解决方案:
    1..保存的时候用:w !sudo tee %
    2. 输入密码即可
    3.尝试出入以下命令wq!;q;q! ;x,x!退出            

     

     4.关闭开机启动:

    systemctl disable firewalld.service

    5.开启开机启动:

    systemctl enable firewalld.service
  • 相关阅读:
    系统吞吐量、TPS(QPS)、用户并发量、性能测试概念和公式[转]
    EF RepositoryBase 参考示例【转】
    Entity Framework 杂碎
    Oracle.ManagedDataAccessDTC.dll 使用
    c# http请求,获取非200时的响应体
    c# windows service(服务)
    git log
    解决冲突
    clone命令
    remote指令添加远程数据库
  • 原文地址:https://www.cnblogs.com/elfin/p/12935879.html
Copyright © 2011-2022 走看看