• Centos iptables防火墙关闭启动详解


    CentOS 7.0默认使用的是firewall作为防火墙,使用iptables必须重新设置一下
    
    1、直接关闭防火墙
    systemctl stop firewalld.service #停止firewall
    systemctl disable firewalld.service #禁止firewall开机启动
    
    2、设置 iptables service
    yum -y install iptables-services
    
    如果要修改防火墙配置,如增加防火墙端口3306
    vi /etc/sysconfig/iptables 
    
    增加规则
    -A INPUT -m state –state NEW -m tcp -p tcp –dport 3306 -j ACCEPT
    保存退出后。
    
    systemctl restart iptables.service #重启防火墙使配置生效
    systemctl enable iptables.service #设置防火墙开机启动
    最后重启系统使设置生效即可。
    
    在linux中关闭防火墙有两种状态一种永久关闭防火墙,另一种是暂时关闭防火墙的方法,下面我们一起来看看具体的操作步骤。
    关闭虚拟机防火墙:
    关闭命令:  service iptables stop
    永久关闭防火墙:chkconfig iptables off
    两个命令同时运行,运行完成后查看防火墙关闭状态
    service iptables status
    1 关闭防火墙-----service iptables stop 
    2 启动防火墙-----service iptables start 
    3 重启防火墙-----service iptables restart 
    4 查看防火墙状态--service iptables status 
    5 永久关闭防火墙--chkconfig iptables off 
    6 永久关闭后启用--chkconfig iptables on
  • 相关阅读:
    PageObject小结
    python函数默认参数坑
    编译Android 8.0系统 并刷入pixel
    CF 289 F. Progress Monitoring DP计数
    EDU 61 F. Clear the String 区间dp
    Educational Codeforces Round 55 G 最小割
    Educational Codeforces Round 55 E 分治
    hdu 6430 bitset暴力
    AC自动机+DP codeforces86C
    CF895C dp/线性基
  • 原文地址:https://www.cnblogs.com/linjiqin/p/7450076.html
Copyright © 2020-2023  润新知