Skip to content

Instantly share code, notes, and snippets.

@phackwer
Created July 4, 2017 11:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phackwer/2ab77ab1f7b65581925674b6dfbc5e97 to your computer and use it in GitHub Desktop.
Save phackwer/2ab77ab1f7b65581925674b6dfbc5e97 to your computer and use it in GitHub Desktop.
Azure ping
https://blogs.msdn.microsoft.com/microsoft_azure_guide/2014/12/13/how-to-allow-ping-functionality-to-windows-azure-machines/
The Ping functionality on Windows Azure VM is blocked by default for security reasons, to be to enable them you can do that from the Windows firewall advanced features on each VM or you can login on the virtual machine and open the command prompt as an administrator and execute this command.
netsh advfirewall firewall add rule name="ICMP Allow incoming V4 echo request" dir=in action=allow enable=yes protocol=icmpv4:8,any
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment