zoukankan      html  css  js  c++  java
  • CentOS 配置防火墙操作实例(启、停、开、闭port)

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

     

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

    查询防火墙状态:

    [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文件。

    我们实例中要打开8080port和9990port

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


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

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


    5、从新查看防火墙状态

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


    6、这时候,server的8080和9990port就能够对外提供服务了。

    7、其它port的开放模式就是类似如此开放模式。


  • 相关阅读:
    最短路径(Dijkstra算法)
    图的优先级搜索
    图的遍历(搜索)

    树(二叉树)
    TF-池化函数 tf.nn.max_pool 的介绍
    TF-卷积函数 tf.nn.conv2d 介绍
    TF-图像的深度和通道的概念(转)
    MongoDB-MongoDB重装系统后恢复
    MYSQL-重做系统恢复MYSQL过程
  • 原文地址:https://www.cnblogs.com/gccbuaa/p/7043834.html
Copyright © 2011-2022 走看看