firewalld配置与使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了firewalld配置与使用相关的知识,希望对你有一定的参考价值。
临时永久关闭 #临时关闭
systemctl stop firewalld
#永久关闭,即设置开机的时候不自动启动
systemctl disable firewalld
添加删除端口
#添加
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
添加一个服务到firewalld
firewall-cmd --add-service=http //http换成想要开放的service
如果要添加的端口并没有服务对应,就要新建一个服务,在/usr/lib/firewalld/services,随便拷贝一个xml文件到一个新名字,比如myservice.xml,把里面的
<?xml version="1.0" encoding="utf-8"?>
<service>
<short>Transmission-client</short>
<description>Transmission is a lightweight GTK+ BitTorrent client.</description>
<port protocol="tcp" port="51413"/>
</service>
然后把新建的service添加到firewalld
firewall-cmd --permanent --add-service=myservice
以上是关于firewalld配置与使用的主要内容,如果未能解决你的问题,请参考以下文章