博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CentOS7使用firewalld打开关闭防火墙与端口
阅读量:6840 次
发布时间:2019-06-26

本文共 1291 字,大约阅读时间需要 4 分钟。

hot3.png

1.firewalld的基本使用

#启动: systemctl start firewalld#查看状态: systemctl status firewalld #停止: systemctl disable firewalld#禁用: systemctl stop firewalld

2.systemctl是CentOS7的服务管理工具中主要的工具,它融合之前service和chkconfig的功能于一体。

#启动一个服务:systemctl start firewalld.service#关闭一个服务:systemctl stop firewalld.service#重启一个服务:systemctl restart firewalld.service#显示一个服务的状态:systemctl status firewalld.service#在开机时启用一个服务:systemctl enable firewalld.service#在开机时禁用一个服务:systemctl disable firewalld.service#查看服务是否开机启动:systemctl is-enabled firewalld.service#查看已启动的服务列表:systemctl list-unit-files|grep enabled#查看启动失败的服务列表:systemctl --failed

3.配置firewalld-cmd

#查看版本: firewall-cmd --version#查看帮助: firewall-cmd --help#显示状态: firewall-cmd --state#查看所有打开的端口: firewall-cmd --zone=public --list-ports#更新防火墙规则: firewall-cmd --reload#查看区域信息:  firewall-cmd --get-active-zones#查看指定接口所属区域: firewall-cmd --get-zone-of-interface=eth0#拒绝所有包:firewall-cmd --panic-on#取消拒绝状态: firewall-cmd --panic-off#查看是否拒绝: firewall-cmd --query-panic

4.常用:

那怎么开启一个端口呢

添加

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

重新载入

firewall-cmd --reload

查看

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

删除

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

资料源自:

特整理备份自用.

转载于:https://my.oschina.net/openplus/blog/1582205

你可能感兴趣的文章
Spring Batch 介绍
查看>>
高德地图入门(一)——工程配置
查看>>
手机上把PDF转换成Word文档的方法,很实用幺
查看>>
学习JVM-运行时数据区
查看>>
NSOperation 简介和应用
查看>>
必读的Python入门书籍,你都看过吗?(内有福利)
查看>>
嵌入式arm产品相关知识及应用
查看>>
python select模块详解
查看>>
mac 系统下 php生成目录,移动保存文件问题
查看>>
Hibernate中update()和merge()的区别
查看>>
jmeter学习笔记之二——创建一个简单的压测脚本
查看>>
我的友情链接
查看>>
如何 Scale Up/Down Deployment?- 每天5分钟玩转 Docker 容器技术(126)
查看>>
页面$未定义的问题
查看>>
nginx
查看>>
关于Java的相关基础信息
查看>>
50款漂亮的国外婚礼邀请函设计(上篇)
查看>>
Java调用DotNet WebService为什么那么难?
查看>>
第二章 通过行为参数化传递代码
查看>>
如何Json序列化对象的部分属性
查看>>