CentOS7 防火墙配置

查看已开放的端口(默认不开放任何端口)

firewall-cmd --list-ports

开放80端口

firewall-cmd --zone=public(作用域) --add-port=80/tcp(开放端口) --permanent(永久生效)

停止防火墙

systemctl stop firewalld.service

查看防火墙状态

firewall-cmd --state

禁止防火墙

systemctl disable firewalld.service

重启防火墙

firewall-cmd --reload

删除规则

firewall-cmd --zone=public --remove-port=80/tcp --permanent

原文地址:https://www.cnblogs.com/vincenshen/p/8732984.html

时间: 2024-10-11 04:32:26

CentOS7 防火墙配置的相关文章

linux设置-centos7防火墙配置

一.配置防火墙,开启80端口.3306端口 CentOS 7.0默认使用的是firewall作为防火墙,这里改为iptables防火墙. 1.关闭firewall: systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 2.安装iptables防火墙 yum install iptables-services #安装 vi /etc/sysconfig/ip

centos7 防火墙 配置

1.查看Firewall 服务状态 systemctl status firewalld 2.查看Firewall 的状态 firewall-cmd --state 注意: firewalld默认配置文件有两个:/usr/lib/firewalld/ (系统配置,尽量不要修改)和 /etc/firewalld/ (用户配置地址) [[email protected] ~]# vi /usr/lib/firewalld/services/ssh.xml 先把ssh的端口改下 防止不能远程操作了 3

CentOS7防火墙配置

CentOS7中防火墙程序主要是firewall和iptables,CentOS7中firewall服务已经默认安装好了,而iptables服务需要自己用yum  install  iptabes-services来安装. firewall相关的操作: 1.开启防火墙 systemctl start firewalld.service 或者 service firewalld start 2.关闭防火墙 systemctl stop firewalld.service 或者 service fi

CentOS-7防火墙配置信息(firewalld)

firewalld官网:https://firewalld.org/ firewalld命令手册:https://firewalld.org/documentation/man-pages/firewalld.service.html 以下是firewalld常用命令 任务 centos-6 centos-7 使某服务自动启动 chkconfig --level   3 httpd on systemctl enable httpd.service 使某服务不自动启动 chkconfig --l

centos7防火墙

centos7防火墙配置CentOS7使用的是Linux Kernel 3.10.0的内核版本,新版的Kernel内核已经有了防火墙netfilter,并且firewalld的使用效能更高,稳定性更好.CentOS7配置防火墙的两种方法:一.使用xml配置文件的方式配置:方法一cp /usr/lib/firewalld/services/http.xml /etc/firewalld/services/firewall-cmd --reload二.使用命令的方式配置:方法二##Addfirewa

CentOS7下Firewall防火墙配置用法详解

官方文档地址: https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/Security_Guide/sec-Using_Firewalls.html#sec-Introduction_to_firewalld1 修改防火墙配置文件之前,需要对之前防火墙做好备份 重启防火墙后,需要确认防火墙状态和防火墙规则是否加载,若重启失败或规则加载失败,则所有请求都会被防火墙拦截 1 2 3 4 5 6 7

centOS7.0配置防火墙

之前用的iptables来管理的防火墙,后来发现centOS7.0中已经用firewalld取代iptables了,于是与时俱进,停用了iptables. systemctl stop iptables.service 然后来启动firewalld吧 systemctl start firewalld.service 给我报了这个错 Failed to start firewalld.service: Unit firewalld.service is masked. 查了很久没找到解决办法,于

Centos7防火墙快速开放端口配置方法

▲这篇文章主要为大家详细介绍了Centos7防火墙开放端口的快速方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下! 例如安装Nagios后,要开放5666端口与服务器连接,命令如下 [[email protected] ~]# firewall-cmd --add-port=5666/tcp 即时打开,这里也可以是一个端口范围,如1000-2000/tcp success [[email protected] ~]# firewall-cmd --permanent --add-port=

Centos7安装配置Apache+PHP+Mysql+phpmyadmin

转载自: Centos7安装配置Apache+PHP+Mysql+phpmyadmin 一.安装Apache yum install httpd 安装成功后,Apache操作命令: systemctl start httpd //启动apache systemctl stop httpd //停止apache systemctl restart httpd //重启apache systemctl enable httpd //设置apache开机启动 异常处理我再阿里云上配置并出现启动Apac