Commit 40b43475 authored by Christof Schulze's avatar Christof Schulze 😎
Browse files

define FW-Rule for allowing ping from inside the institute-networks (closing #1)

parent 18168a2b
Loading
Loading
Loading
Loading

Firewall/set_VM_Rules.ps1

deleted100644 → 0
+0 −9
Original line number Diff line number Diff line

# can be done bye wf.msc

New-NetFirewallRule -DisplayName "Allow inbound ICMPv4" -Direction Inbound -Protocol ICMPv4 -IcmpType 8 -RemoteAddress 131.188.220.192/26 -Action Allow
New-NetFirewallRule -DisplayName "Allow inbound ICMPv4" -Direction Inbound -Protocol ICMPv4 -IcmpType 8 -RemoteAddress 192.168.220.128/25 -Action Allow
New-NetFirewallRule -DisplayName "Allow inbound ICMPv4" -Direction Inbound -Protocol ICMPv4 -IcmpType 8 -RemoteAddress 10.188.220.0/25 -Action Allow


New-NetFirewallRule -DisplayName "Allow inbound ICMPv6" -Direction Inbound -Protocol ICMPv6 -IcmpType 8 -RemoteAddress <localsubnet> -Action Allow
+6 −0
Original line number Diff line number Diff line

# can be done bye wf.msc
New-NetFirewallRule -DisplayName "Allow inbound ICMPv4" -Group "WW8" -Profile Private,Domain -Direction Inbound -Protocol ICMPv4 -IcmpType 8 -RemoteAddress 131.188.220.192/26,192.168.220.128/25,10.188.220.0/25 -Action Allow


#New-NetFirewallRule -DisplayName "Allow inbound ICMPv6" -Direction Inbound -Protocol ICMPv6 -IcmpType 8 -RemoteAddress <local subnet> -Action Allow