Posted On December 16, 2020

Windows Firewall Block ICMP Ping

kimconnect 0 comments
blog.KimConnect.com >> Networking , Windows >> Windows Firewall Block ICMP Ping

Following is a quick exercise in configuring Windows firewall to block certain protocols:

# Disable Ping Outbound
New-NetFirewallRule -DisplayName "Block Outbound ICMPv4" -Direction Outbound -Protocol ICMPv4 -IcmpType 8 -Action Block

# New-NetFirewallRule -DisplayName "Block Outbound ICMPv6" -Direction Outbound -Protocol ICMPv6 -IcmpType 8 -Action Block
# Reverse the change
netsh advfirewall firewall delete rule name="Block Outbound ICMPv4"

# netsh advfirewall firewall delete rule name="Block Outbound ICMPv6"

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Explorer: Can’t connect securely to this page – GoogleChrome: This site can’t be reached

Symptom: Test Site: https://accounts.google.com/v3/signin/identifier?continue=https%3A%2F%2Fdrive.google.com%2F&emr=1&followup=https%3A%2F%2Fdrive.google.com%2F&ifkv=ARpgrqdWOPosYfd4Jy3FsLv7iFkQq-EqxoTQtHu9eAzFomc8wIN9kPxsLLmDLvUmlVsSSWCPimVg_Q&osid=1&passive=1209600&service=wise&flowName=GlifWebSignIn&flowEntry=ServiceLogin&dsh=S-1724044505%3A1728052151359801&ddm=0 Internet Explorer: Can't connect securely to this pageThis might be because…

Excel MD5 Hash Function

Go to the VB editor (Alt-F11), right-click on your workbook in theproject window, and click…

Veritas Backup Exec Account Setup to Authenticate Domain Controllers

1. ADUC >> Create domain user account named "backup" belonging to Administrators, Backup Operators groups…