Answered by:
How Do I Enable Pinging A VM

Question
-
How do I enable ping to my VM?
I code -- Node.js, JavaScript, PHP, SQL, Bash -- I live --- San Francisco -- I fear -- Savage blood thirsty zombies riding on dinosaurs.
Wednesday, July 4, 2012 6:50 AM
Answers
-
Hello,
We are going to close this thread but if you have the issue still occurring please open a new thread for support.
Thanks!
Patrick [MSFT]
- Marked as answer by Patrick [MSFT]Microsoft employee Tuesday, February 12, 2013 4:55 PM
Tuesday, February 12, 2013 4:55 PM
All replies
-
Hi Justin,
- Ping external address from Azure VM - does not work as Azure does not permit outbound ICMP
- Ping Azure VM from external address - does not work as Azure does not permit inbound ICMP
- Ping between Azure VMs using internal IP (DIP) - works, but guest OS firewall must be configured to allow it as by default ICMP is blocked by the guest.
- Ping between Azure VM and on-premise through Azure Connect (point-to-point IPSec VPN tunnel) or Virtual Network Gateway (site-to-site IPSec VPN tunnel) - works, but guest OS firewall must be configured to allow it as by default ICMP is blocked by the guest.
To allow ICMP on a Windows VM, from an elevated command prompt, run:
netsh advfirewall firewall add rule name="ICMPv6" dir=in action=allow enable=yes protocol=icmpv6
netsh advfirewall firewall add rule name="ICMPV4" dir=in action=allow enable=yes protocol=icmpv4As an alternative to ping with ICMP, you can verify connectivity by trying to reach a specific TCP port with tools such as TCPing, PortQuery, or NMap. Those will working inbound to an Azure VM as long as you have opened an endpoint for the port you are trying to reach, and the guest firewall allows it and something is listening on that port. For Azure Connect and Virtual Network Gateways you don't need the endpoints because you are communicating through a VPN tunnel, but the guest firewall would still need to allow the port you are testing, and something needs to be listening on that port.
Thanks,
Craig
- Proposed as answer by Craig LandisMicrosoft employee Thursday, July 5, 2012 11:17 PM
- Edited by Craig LandisMicrosoft employee Thursday, July 5, 2012 11:24 PM
Thursday, July 5, 2012 11:17 PM - Ping external address from Azure VM - does not work as Azure does not permit outbound ICMP
-
Can I request a way to open ping to a Linux VM. We use monitoring, and one of the monitors is ping.
I code -- Node.js, JavaScript, PHP, SQL, Bash -- I live --- San Francisco -- I fear -- Savage blood thirsty zombies riding on dinosaurs.
Friday, July 6, 2012 1:05 AM -
Seriously, Azure doesn't allow outbound ICMP?!?? Or inbound for that matter. We also have an application which monitors services, some using PING as a starting point. I'll have to say, that is a pretty lame restriction. I should be able to at least do outbound ICMP. It would be great if I could define an inbound ICMP endpoint for some or all of the ICMP functions.
Does Amazon allow outbound ICMP? I actually have to find a solution that does and thought Azure would do the trick but from what I read, it won't nor do there appear to be any plans to do so. :(
Friday, August 3, 2012 4:48 PM -
Hello,
We are going to close this thread but if you have the issue still occurring please open a new thread for support.
Thanks!
Patrick [MSFT]
- Marked as answer by Patrick [MSFT]Microsoft employee Tuesday, February 12, 2013 4:55 PM
Tuesday, February 12, 2013 4:55 PM -
Thanks everyone.
It turns out I was experiencing an internal network security constraint that was hindering my attempt to use a VPN.
siegfried heintze
- Proposed as answer by siegfried_ Wednesday, September 11, 2013 5:15 AM
Wednesday, September 11, 2013 5:15 AM