Commit e9037b2b by 咸鱼的修养

[新增] 防火墙增加白名单(用于ES端口漏洞)

parent 6a40ed58
......@@ -26,8 +26,42 @@
finder的pod建议重启
服务(pdataservice)的POST /pdsCURD/populateFullTestSearchIndex
资产(dataassetmanager) GET /toolkitApi/initFullTestSearchIndex
标准(standard)的 GET /rest/standard/maintain/transform
元数据Pod建议重启
元数据(metadatarepo) POST /rest/init/initFinder(全文检索)
元数据的 POST /rest/init/initMedataIndex(元数据检索)
\ No newline at end of file
元数据的 POST /rest/init/initMedataIndex(元数据检索)
## **开启防火墙启用白名单**
1. 检查防火墙状态,如果没有开启则开启
systemctl status firewalld
1. 设置开机启动防火墙
systemctl enable firewalld
1. 启动防火墙
systemctl start firewalld
1. 设置白名单
firewall-cmd --permanent --add-rich-rule="rule family="ipv4" source address="10.27.18.9" port protocol="tcp" port="1-65535" accept"
firewall-cmd --permanent --add-rich-rule="rule family="ipv4" source address="10.27.18.10" port protocol="tcp" port="1-65535" accept"
firewall-cmd --permanent --add-rich-rule="rule family="ipv4" source address="10.27.18.11" port protocol="tcp" port="1-65535" accept"
1. 重启防火墙
systemctl restart firewalld
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment