An Azure networking service that is used to provision private networks and optionally to connect to on-premises datacenters.
Hello @ Cleon Russell,
Thank you for reaching Microsoft Q&A.
Everything you're seeing is completely normal and by design. Your VMs are correctly receiving their IP configuration from Azure's native platform DHCP service. No action is needed on your side.
1.Azure-provided DHCP
• For Azure IaaS VMs, you don’t need (and can’t) stand up your own DHCP server just to get an IP. The Azure platform natively handles DHCP for all VMs in a Virtual Network.
2.168.63.129.16 is Azure’s internal DHCP (and metadata) endpoint
• When your VM reports its DHCP server as 168.63.129.16, that’s the anycast address Azure injects into each VNet so your VM can pull its IP, gateway, DNS, etc.
3.No traditional DHCP scopes in Azure
• You won’t find any DHCP-scope-or-range settings in the portal because Azure derives all IP assignments directly from your VNet and subnet CIDR (for example, 10.1.0.0/24).
4.Firewalls/NVAs don’t serve DHCP by default
• Unless you explicitly deploy and configure a DHCP server (for example, on a Windows/Linux VM with the DHCP role installed) or set up an on-prem relay, Network Virtual Appliances like FortiGates won’t hand out leases—only the Azure platform service does that automatically.
If you ever do need custom DHCP (say for on-prem clients via a relay), you can deploy your own DHCP server on a VM. Microsoft has a step-by-step guide for that here:
References
- https://learn.microsoft.com/troubleshoot/azure/virtual-network/welcome-virtual-network
- https://learn.microsoft.com/azure/virtual-network/how-to-dhcp-azure
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".