`
lvjun106
  • 浏览: 429231 次
  • 性别: Icon_minigender_1
  • 来自: 芜湖
社区版块
存档分类
最新评论

centos7 防火墙开启与关闭

阅读更多

CentOS7中执行

service iptables start/stop

会报错Failed to start iptables.service: Unit iptables.service failed to load: No such file or directory.

 

在CentOS 7或RHEL 7或Fedora中防火墙由firewalld来管理,

 

如果要添加范围例外端口 如 1000-2000

语法命令如下:启用区域端口和协议组合

firewall-cmd [--zone=<zone>] --add-port=<port>[-<port>]/<protocol> [--timeout=<seconds>]

此举将启用端口和协议的组合。端口可以是一个单独的端口 <port> 或者是一个端口范围 <port>-<port> 。协议可以是 tcp 或 udp。

实际命令如下:

 

添加

firewall-cmd --zone=public --add-port=80/tcp --permanent (--permanent永久生效,没有此参数重启后失效)

 

firewall-cmd --zone=public --add-port=1000-2000/tcp --permanent 

 

重新载入

firewall-cmd --reload

查看

firewall-cmd --zone=public --query-port=80/tcp

删除

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

 

 

当然你可以还原传统的管理方式。

 

执行一下命令:

 

systemctl stop firewalld

systemctl mask firewalld

 

并且安装iptables-services:

yum install iptables-services

 

设置开机启动:

systemctl enable iptables

 

systemctl stop iptables

systemctl start iptables

systemctl restart iptables

systemctl reload iptables

 

保存设置:

service iptables save

 

OK,再试一下应该就好使了

 

 

 

开放某个端口 在/etc/sysconfig/iptables里添加

 

-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 8080 -j ACCEPT

 

分享到:
评论

相关推荐

    CentOS7打开关闭防火墙与端口

    CentOS7 打开关闭防火墙与端口 1、firewalld的基本使用 2.systemctl是CentOS7的服务管理工具中主要的工具,它融合之前service和chkconfig的功能于一体。

    CentOS7使用firewalld打开关闭防火墙与端口

    CentOS7使用firewalld打开关闭防火墙与端口 CentOS7使用firewalld打开关闭防火墙与端口

    CentOS_配置防火墙操作实例

    CentOS_配置防火墙操作实例,防火墙开启,关闭,配置允许端口等

    【Linux】CentOS7防火墙开启、停止、关闭,添加删除开放端口

    文章目录防火墙管理1、直接关闭防火墙2、firewalld防火墙的基本使用3、防火墙端口管理4、参考资料 CentOS7防火墙 CentOS7默认安装了firewalld防火墙 利用防火墙,我们可以允许或是限制传输的数据通过 firewall ...

    浅谈简单使用CentOS7防火墙及开放端口

    既然是简单使用, 那必须教会你怎么查看防火墙状态, 以及防火墙的关闭和开启之类的, 我们都知道那既然防火墙都开启了, 那么它必定是有一些端口的限制, 不能说你想通过哪些端口就通过哪些端口, 就能访问到我们的主机...

    详解CentOS7使用firewalld打开关闭防火墙与端口

     2.systemctl是CentOS7的服务管理工具中主要的工具,它融合之前service和chkconfig的功能于一体。 启动一个服务: systemctl start firewalld.service 关闭一个服务: systemctl stop firewalld.service 重启

    centos7防火墙导致java程序访问mongodb3.0.1时报错的问题分析

    查看centos7的官方文档,知道centos7最小安装默认只安装防火墙的动态配置规则服务(firewalld),静态配置规则服务(iptables与ip6tables)需要另行安装。 1、关闭firewall: systemctl stop firewalld.service #...

    CentOS防火墙用法浅析

    本文实例讲述了CentOS防火墙用法。分享给大家供大家参考,具体如下: 关闭: /etc/init.d/iptables stop 开启: /etc/init.d/iptables start 重启: /etc/init.d/iptables restart 查看: /etc/init.d/...

    Centos7(Firewall)防火墙开启常见端口命令

    Firewall开启常见端口命令: firewall-cmd –zone=public –add-port=80/tcp –permanent firewall-cmd –zone=public –add-port=443/tcp –permanent firewall-cmd –zone=public –add-port=22/tcp –permanent ...

    详解CentOS7防火墙管理firewalld

    学习apache安装的时候需要打开80端口,由于centos 7版本以后默认使用firewalld后,网上关于iptables的设置方法已经不管用了,想着反正iptable也不太熟悉,索性直接搬官方文档,学习firewalld了,好像比iptables要...

    解决centos7中tomcat启动与本机访问问题

     关闭centos7的防火墙 systemctl stop firewalld systemctl disable firewalld   查看防火墙是否关闭 firewall -cmd –state 总结 以上所述是小编给大家介绍的解决centos7中tomcat启动与本机访问问题,希望对...

    CentOS 7下Samba服务器的安装与配置

    转载_ CentOS 7.3下Samba服务器的安装与配置_2017年9月2日 关闭防火墙:systemctl stop firewalld.service 临时关闭SeLinux:setenforce 0 开启samba服务:systemctl start smb

    centos 7中firewall防火墙的常用命令总结

    关于CentOS7下Firewall防火墙配置用法可以通过这篇文章进行查看,下面来看看本文的主要内容关于centos 7中firewall防火墙的常用命令,需要的朋友们可以参考学习。 一、开启、关闭firewall 启动: systemctl start ...

    CentOS 7.0关闭默认防火墙启用iptables防火墙的设置方法

    主要介绍了CentOS 7.0关闭默认防火墙启用iptables防火墙的设置方法,需要的朋友可以参考下

    firewall防火墙

    firewall防火墙配置与使用, CentOS7使用firewalld打开关闭防火墙与端口

    linux查看防火墙状态与开启关闭命令详解

    linux查看防火墙状态与开启关闭命令有以下两种方式: 一、service方式 查看防火墙状态: [root@centos6 ~]# service iptables status iptables:未运行防火墙。 开启防火墙: [root@centos6 ~]# service iptables ...

    docker 详解设置容器防火墙

    docker 容器防火墙设置 启动容器时增加参数 方法一:完全开放 --privileged=true 但是这样的话就将系统的所有能力都开放给了Docker容器 有一个image为aaa的将启动为容器名为bbb的且在容器内需要使用iptables...

    结合现有开放端口自动开启防火墙

    考虑到目前大多数现网环境是关闭防火墙运行,并且一旦盲目开启防火墙会导致某些现有服务访问不了。该脚本解决这个痛点

Global site tag (gtag.js) - Google Analytics