Hi @Pasupathi M
I understand that you're looking to migrate your Active Directory and DHCP environment to Azure. When it comes to running a DHCP server in Azure, it's important to know that Azure's networking design presents some challenges for traditional DHCP setups, especially regarding broadcast packets.
Here's what you might consider:
- It's generally recommended to use DHCP Relay agents when working in Azure. The Azure environment doesn’t support direct DHCP server communications via broadcasts, which means that clients in an Azure Virtual Network (VNet) cannot communicate with a DHCP server directly. Instead, you'll want to deploy a DHCP server on a virtual machine (VM) in Azure and configure it to work with a relay agent.
- If you're looking for a resilient setup, you can deploy multiple VMs running the DHCP server and configure them in a failover relationship. This ensures that even if one server goes down, the other can handle IP address leasing.
- You can follow the documentation on how to set up a DHCP server in Azure. Key steps include configuring the VM's network settings, installing the DHCP role, and managing IP address assignments through the Azure portal.
- Since your existing DHCP setup is handling leases to security devices, ensure that any newly configured Azure-based DHCP setup is secure and can accurately replicate the lease assignment logic you have in place currently.
Here are some resources you can look at for detailed instructions:
Kindly let us know if the above helps or you need further assistance on this issue.
Please do not forget to "Accept the answer” and “Yes” wherever the information provided helps you, this can be beneficial to other community members.