CentOS 7开启防火墙端口
Posted zxf100
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 7开启防火墙端口相关的知识,希望对你有一定的参考价值。
1.开启防火墙
systemctl start firewalld
2.添加
firewall-cmd --zone=public --add-port=80/tcp --permanent
3.重新载入
firewall-cmd --zone= public --query-port=80/tcp
4.删除
命令含义:
--zone #作用域
--add-port=80/tcp #添加端口,格式为:端口/通讯协议
--permanent #永久生效,没有此参数重启后失效
3.firewall-cmd --reload
附上防火墙的基本使用
启动一个服务: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
以上是关于CentOS 7开启防火墙端口的主要内容,如果未能解决你的问题,请参考以下文章
centos 7 为啥用systemctl start firewalld开启防火墙依然能SSH远程登录? 难道TCP22端口没有被封上