在防火墙命令中删除 --add-forward-port 规则

在防火墙命令中删除 --add-forward-port 规则

前段时间我添加了以下本地端口转发规则

firewall-cmd --permanent --add-forward-port=port=80:proto=tcp:toport=3000

我现在该如何删除此规则?

答案1

您可以像添加它一样将其删除:

# firewall-cmd --permanent --remove-forward-port=port=80:proto=tcp:toport=3000
# firewall-cmd --reload

答案2

您也可以更改运行时设置,然后使其永久生效,而不必重新加载

# firewall-cmd --permanent --remove-forward-port=port=80:proto=tcp:toport=3000
# firewall-cmd --runtime-to-permanent

相关内容