您现在的位置是:首页 >技术交流 >Centos7 怎么关闭防火墙网站首页技术交流

Centos7 怎么关闭防火墙

ninghes 2023-06-04 12:00:02
简介Centos7 怎么关闭防火墙

Centos7 怎么关闭防火墙

CentOS7中若使用CentOS6的关闭防火墙命令会报错
stop iptables.service
Failed to stop iptables.service: Unit iptables.service not loaded.

CentOS7关闭防火墙的步骤如下

  1. 命令行界面输入systemctl status firewalld.service
  2. 可以查看得到active(running),表示防火墙已经被打开了。
  3. 然后输入 systemctl stop firewalld.service 命令,临时关闭防火墙。
  4. 在输入命令 systemctl status firewalld.service,下方出现disavtive(dead),说明防火墙已经关闭。
  5. 输入命令systemctl disable firewalld.service就可以永久关闭防火墙。
    在这里插入图片描述

如果安装了iptables-service,也可以使用下面的命令

yum install -y iptables-services
//关闭防火墙
service iptables stop
Redirecting to /bin/systemctl stop  iptables.service
//检查防火墙状态
service iptables status
Redirecting to /bin/systemctl status  iptables.service
鈼iptables.service - IPv4 firewall with iptables
   Loaded: loaded (/usr/lib/systemd/system/iptables.service; disabled; vendor preset: disabled)
   Active: inactive (dead)

注:CentOS6关闭防火墙的命令如下

//临时关闭
service iptables stop
//禁止开机启动
chkconfig iptables off

今天的分享就到此结束了

欢迎点赞评论互关三连

在这里插入图片描述

风语者!平时喜欢研究各种技术,目前在从事后端开发工作,热爱生活、热爱工作。