zoukankan      html  css  js  c++  java
  • CentOS Linux防火墙配置及关闭

    CentOS 配置防火墙操作实例(启、停、开、闭端口):

    注:防火墙的基本操作命令:

    查询防火墙状态:

    [root@localhost ~]# service   iptables status<回车>

     

    停止防火墙:

    [root@localhost ~]# service   iptables stop <回车>

     

    启动防火墙:

    [root@localhost ~]# service   iptables start <回车>

     

    重启防火墙:

    [root@localhost ~]# service   iptables restart <回车>

     

    永久关闭防火墙:

    [root@localhost ~]# chkconfig   iptables off<回车>

     

    永久关闭后启用:

    [root@localhost ~]# chkconfig   iptables on<回车>

    1、查看防火墙状态

    [root@localhost ~]# service iptables status<回车> 

    2、编辑/etc/sysconfig/iptables文件。我们实例中要打开8080端口和9990端口

    用编辑器打开/etc/sysconfig/iptables 

    3、依葫芦画瓢,我们添加8080端口和9990端口

    4、保存/etc/sysconfig/iptables文件,并在终端执行

    [root@localhost ~]# service iptables restart <回车>

    5、从新查看防火墙状态

    [root@localhost ~]# service iptables status<回车>

    6、这时候,服务器的8080和9990端口就可以对外提供服务了。

    7、其他端口的开放模式就是类似如此开放模式。

    http://blog.csdn.net/jemlee2002/article/details/7042991

  • 相关阅读:
    nyoj 463-九九乘法表
    nyoj 458-小光棍数 (471)
    nyoj 457-大小写互换
    nyoj 455-黑色帽子
    nyoj 412-Same binary weight (bitset ,to_ulong())
    nyoj 399-整除个数 (整除)
    nyoj 366-D的小L (next_permutation())
    nyoj 324-猴子吃桃问题 (m[i] = (m[i-1] + 1) * 2)
    nyoj 283-对称排序 (sort)
    HBase 在人工智能场景的使用
  • 原文地址:https://www.cnblogs.com/chen110xi/p/3644902.html
Copyright © 2011-2022 走看看