- Habilitando Firewall
- netsh advfirewall set currentprofile state on
- Desabilitando Firewall
- netsh advfirewall set currentprofile state off
Abaixo alguns exemplos em que podemos adicionar regras no firewall também utilizando o powershell, o que pode facilitar na gestão de regras através de GPOs ou Scripts.
netsh firewall add portopening protocolo porta nome enable
ex.
netsh advfirewall add portopening ICMPv4 enable
netsh advfirewall add portopening TCP 80 HTTP enable
netsh advfirewall firewall add rule name=”ICMP Allow incoming V4 echo request”
protocol=icmpv4:8,any dir=in action=allow
netsh advfirewall firewall add rule name=”All ICMP V4″ dir=in action=block protocol=icmpv4
netsh advfirewall firewall add rule name=”All ICMP V4″ dir=out action=allow protocol=icmpv4