windows advanced firewall simple config
2021-03-14 12:30
标签:network shel windows display restart man rest art power There is a underlying policy‘s under the policies: deny all what we need to do: run the command below windows advanced firewall simple config 标签:network shel windows display restart man rest art power 原文地址:https://blog.51cto.com/zhangfang526/2478149
what we need to do is create the explicit allow policies
netsh advfirewall firewall add rule name="Allow from Internal Access" dir=in action=allow protocol=ANY remoteip=172.16.11.0/24
172.16.15.0/24
172.16.10.0/24
172.16.30.0/24
Or 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 172.16.15.0/24
文章标题:windows advanced firewall simple config
文章链接:http://soscw.com/index.php/essay/64563.html