Domain Controllers in Azure

Hello,
When you’re planning a migration to Office 365,you’re client may ask you some questions about availability of Office 365 services in case of a disaster on the client’s datacenter.

As you know, there is no thing such as magic, if your datacenter is down, with your AD FS farm in it, all your users will fail login on Office 365. This mean no email, no OneDrive, no SharePoint, no Lync, that can be pretty annoying.
You have several solutions to solve this potential issue:

  • Synchronize the passwords and do not use domain federation.
  • AD FS farm split on distinct physical sites.
  • Install domain controllers in Azure IaaS with and your AD FS farm next to it.

In this article we’ll focus on the third option. Microsoft support installing domain controllers in Azure IaaS in certain conditions.
You need to put your Active Directory database and logs on a separate hard disk drive with cache disabled. Indeed, just like traditional deployment, Active Directory do not use HDD cache, it requires to write directly on it to avoid consistency issues and USN rollback.
You can see if your disks have cache enabled on Azure with :

Get-AzureVM -Name DC1 -ServiceName ServiceName | Get-AzureDataDisk

Domain-Controllers-Azure-01
Here, we see that “HostCaching” is disable, that’s what you need for Microsoft to support your deployment.

You can also see it through the GUI, in your virtual machine dashboard :Domain-Controllers-Azure-02
You can disable the cache when you create a data disk :

Get-AzureVM -Name DC1 -ServiceName ServiceName| Add-AzureDataDisk -CreateNew -DiskSizeInGB 1 -DiskLabel 'AD' -HostCaching None -LUN 1 -Verbose | Update-AzureVM

You can then use that disk to deploy Active Directory database and logs on it.
Remember : you cannot install DirSync on your domain controllers, you’ll need a separate VM, or AADSync.

In addition, you need to know that Microsoft Azure is in charge of IP distribution, you do not need to set a fixed IP inside the VM, you need to set it at the virtual network level in your Azure subscription :
Domain-Controllers-Azure-1

And keep DHCP enable inside the VM, it will inherit from your virtual network :
Domain-Controllers-Azure-2

Leave a Reply

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

This site uses Akismet to reduce spam. Learn how your comment data is processed.