Windows-Server-2008-R2
對來自特定 IP 地址的所有連接打開 Windows 防火牆
是否可以在 Windows 防火牆中將 IP 地址“列入白名單”並允許來自該特定地址的所有連接?
假設您要列入白名單的 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
這是從 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