user3739312
user3739312

Reputation: 99

Windows firewalls show blocking traffic after they are turned off

We have a VM in Azure that we lost RDP connectivity to after turning it off for about a week.

What else is blocking the inbound traffic? I am out of ideas at this point.

Upvotes: 0

Views: 234

Answers (1)

Ked Mardemootoo
Ked Mardemootoo

Reputation: 1605

It does seem there's something odd going on with that VM. RDP issues with Azure VMs are not rare and they are generally well-documented.

Below are a few things you can try to troubleshoot further. They are based on similar issues I've faced in the past and have helped isolate.

  1. Check memory utilisation and change the VM SKU accordingly. Often the wrong size (e.g. using a B1s for Windows VMs) leads to exhaustion quickly which in turn prevents you from even connecting via RDP.
  2. Reset the NIC - This will allow you to set a static IP address for the VM. You could just re-purpose one of the other IPs of VM1 or VM2 (after getting rid of them, of course), since you've confirmed these are whitelisted and working etc.
  3. Reset the Remote Desktop Configuration
  4. Redeploy the VM to a new node
  5. Create a new NIC. Since you can't delete the only NIC on a VM, you could consider deleting the VM/Compute resource while keeping the disk, then recreating a VM from the existing disk, as well as a new NIC.

You can also refer to this very comprehensive document from Microsoft on troubleshooting RDP issues related to Windows VMs.

Upvotes: 0

Related Questions