试图从netsh防火墙阻止端口Windows防火墙

时间:2017-01-15 14:45:55

标签: firewall windows-firewall netsh

我正在尝试创建一个Windows防火墙规则来阻止来自netsh防火墙的特定端口。

我查看了以下文档:https://technet.microsoft.com/en-us/library/cc771920(v=ws.10).aspx

我一直在尝试:

add portopening protocol=all port=12345 name="Tes1" mode=enable scope=all profile=all

问题是在常规选项卡 - >操作中我看到“允许连接”,如何将操作设置为“阻止连接”?

感谢。

1 个答案:

答案 0 :(得分:1)

netsh firewall已弃用,请改为使用netsh advfirewall firewall,如下所示:

netsh advfirewall firewall add rule name="Block12345" protocol=TCP dir=in localport=12345 action=block

您可以在https://technet.microsoft.com/en-us/library/dd734783(v=ws.10).aspx

中阅读相关内容