zoukankan      html  css  js  c++  java
  • Linux关闭防火墙步骤

    1   先查询防火墙状态

    [root@old-09 ~]# /etc/init.d/iptables status
    Table: filter
    Chain INPUT (policy ACCEPT)
    num  target     prot opt source               destination         
    1    ACCEPT     all  --  0.0.0.0/0            0.0.0.0/0           state RELATED,ESTABLISHED 
    2    ACCEPT     icmp --  0.0.0.0/0            0.0.0.0/0           
    3    ACCEPT     all  --  0.0.0.0/0            0.0.0.0/0           
    4    ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0           state NEW tcp dpt:22 
    5    REJECT     all  --  0.0.0.0/0            0.0.0.0/0           reject-with icmp-host-prohibited 
    
    Chain FORWARD (policy ACCEPT)
    num  target     prot opt source               destination         
    1    REJECT     all  --  0.0.0.0/0            0.0.0.0/0           reject-with icmp-host-prohibited 
    
    Chain OUTPUT (policy ACCEPT)
    num  target     prot opt source               destination         

    2   关闭防火墙

     /etc/init.d/iptable stop  (执行2次怕1次关不上)

    [root@o09 ~]# /etc/init.d/iptables stop
    iptables: Setting chains to policy ACCEPT: filter          [  OK  ]
    iptables: Flushing firewall rules:                         [  OK  ]
    iptables: Unloading modules:                               [  OK  ]

    [root@o09 ~]# /etc/init.d/iptables status
    iptables: Firewall is not running. 

    3   查看是否开机自动启动 (数字3项)

    [root@o09 ~]# chkconfig | grep iptables
    
    iptables       0:off   1:off   2:on    3:on    4:on    5:on    6:off

    4   关闭开机自动启动软件

    [root@o09 ~]# chkconfig iptables off

    5   检查是否关闭

    [root@o09 ~]# chkconfig | grep iptables
    
    iptables       0:off   1:off   2:off   3:off   4:off   5:off   6:off
  • 相关阅读:
    Android Studio连接真机
    day 4 __all__ 包 __init__.py
    day1 创建X00001文件1K
    day 3 模块
    day 2 异常传递 ,抛出
    day 1 异常基本功能
    day 7 __new___
    day 6 汽车4S店铺
    day 5 多态 类 静态
    day 4 继承
  • 原文地址:https://www.cnblogs.com/imp-W/p/10317814.html
Copyright © 2011-2022 走看看