对来自特定 IP 地址的所有连接打开 Windows 防火墙

对来自特定 IP 地址的所有连接打开 Windows 防火墙

是否可以在 Windows 防火墙中将 IP 地址列入白名单并允许来自该特定地址的所有连接?

答案1

假设您要列入白名单的 IP 地址是192.0.2.55

netsh advfirewall firewall add rule name="Allow from 192.0.2.55" dir=in action=allow protocol=ANY remoteip=192.0.2.55

答案2

以下是使用 Powershell 执行此操作的方法

New-NetFirewallRule -Name Allow192.0.2.55 -DisplayName 'Allow from 192.0.2.55' -Enabled True -Direction Inbound -Protocol ANY -Action Allow -Profile ANY -RemoteAddress 192.0.2.55

答案3

这应该会很有效

netsh advfirewall firewall set rule name="my rule" new remoteip=157.60.0.67

相关内容