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

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

安装启用firewalld防火墙

CentOS7默认的防火墙是firewalld

如果没有firewalld防火墙,可以执行yum install firewalld 命令进行安装

firewalld防火墙启用与关闭

启动systemctl start firewalld

关闭systemctl stop firewalld
查看状态systemctl status firewalld
查看状态firewall-cmd --state
开机启用systemctl enable firewalld
开机禁用systemctl disable firewalld

添加开放端口

查看开放了哪些端口

firewall-cmd --zone=public --list-ports

添加端口

firewall-cmd --add-port=443/tcp --permanent //永久添加443端口,协议为tcpfirewall-cmd --reload                                       //重新加载

删除端口

firewall-cmd --zone=public --remove-port=80/tcp --permanent //删除tcp下的80端口

参数介绍:

firewall-cmd:是Linux提供的操作firewall的一个工具(注意没有字母“d”);
--permanent:表示设置为持久;
--add-port:标识添加的端口
--remove-port:标识删除的端口

配置文件

firewalld的默认区域配置文件位置在/etc/firewalld/zones/下的.xml文件中,如下图:

1549915-20190115100758051-1530351646.png

另外,firewall中有Zone的概念,可以将具体的端口制定到具体的zone配置文件中。

例如:添加8010端口

firewall-cmd --zone=public --permanent --add-port=8010/tcp  // --zone=public:指定的zone为public;

systemctl

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

转载于:https://www.cnblogs.com/mingyue5826/p/10270246.html

你可能感兴趣的文章
{右键我的电脑无法打开计算机管理}解决方法
查看>>
python select module select method introduce
查看>>
[使用心得]利用按键精灵批量删除pdf中的水印
查看>>
iphone:图形
查看>>
跟小静学MVC3[02]--从注册模块实战MVC新特性
查看>>
php 登录时用户名与密码验证器
查看>>
如何获取和发送Http请求和相应
查看>>
【HeadFirst 设计模式学习笔记】4 工厂模式
查看>>
CentOS6.4 安装mysql cmake的参数说明
查看>>
创新型政府网站群建设
查看>>
sql server 中将由逗号“,”分割的一个字符串,转换为一个表,并应用与 in 条件...
查看>>
SQL SERVER 2008:内部查询处理器错误: 查询处理器在执行过程中遇到意外错误
查看>>
notepad++下载Subversion插件,显示intalltion of subversion failed
查看>>
Internationalization composition diagram
查看>>
Hibernate中的Session缓存问题
查看>>
Map (就一个json.jar)
查看>>
Jsoup代码解读之四-parser
查看>>
ubuntu修改hostname
查看>>
读《猫力乱步》 | 如果你走得够远,你也能有那么多故事
查看>>
SQL中truncate table和delete的区别
查看>>