Revert "Chore: change Firewall rule SRV-01"

This reverts commit 3f26aee7da.
This commit is contained in:
Winston Smith 2021-05-10 17:24:51 +02:00
parent 61a8855868
commit 5d3d00aa65
2 changed files with 18 additions and 3 deletions

View File

@ -67,6 +67,16 @@ Start-Service RemoteAccess
# End of scritlet
### Activating remote-access role
echo "installing VPN routing role"
Install-windowsFeature -Name Routing -IncludemanagementTools
Install-remoteAccess -VpnType Routingonly
set-service RemoteAccess -StartupType Automatic
Start-Service RemoteAccess
#END
### Activate NAT and DHCP Relay ###
echo "Activating NAT and DHCP Relay"

View File

@ -92,11 +92,16 @@ Add-DhcpServerv4ExclusionRange -ScopeID 192.168.128.0 -StartRange 192.168.128.1
Add-DhcpServerv4ExclusionRange -ScopeID 192.168.128.0 -StartRange 192.168.128.240 -EndRange 192.168.128.254
#END
### Change ZoneAlarm rule to accept incoming ICMP ipv4 probes ###
### Change ZoneAlarm rule to accept incoming ICMP ipv4 probes
Get-NetFirewallRule -name "*ICMP4-ERQ-In*" | Enable-NetFirewallRule
echo "Allowing ICMPv4 probes"
$Params = @{
"Name" = 'vm-monitoring-icmpv4'
"Action" = 'Allow'
}
#END
Set-NetFirewallRule @Params
# END
### Add routes for RTR-01