Is it possible to "whitelist" an IP Address in the Windows Firewall and allow all connections from that specific address?
Asked
Active
Viewed 5.5k times
3 Answers
18
Assuming the IP address you want to whitelist is 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
Mark Henderson
- 68,316
- 31
- 175
- 255
-
Also, don't forget to disable all of the other allow rules or connections will still make it through from them. – Jay R. Oct 06 '15 at 18:50
6
Here is how to do it from 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
ausip
- 396
- 4
- 8
0
this should work like charm
netsh advfirewall firewall set rule name="my rule" new remoteip=157.60.0.67
suraj jain
- 109
- 3