Linux 清理 防火墙已有IP地址的方法

最简单的处理

for i in  `firewall-cmd --zone=trusted --list-sources` ;do firewall-cmd --zone=trusted --remove-source $i --permanent && firewall-cmd --reload  ;done
原文地址:https://www.cnblogs.com/jinanxiaolaohu/p/14605710.html