An Azure networking service that is used to provision private networks and optionally to connect to on-premises datacenters.
Hi @Om Yadav
Welcome to the Microsoft Q&A Platform. Thank you for reaching out & I hope you are doing well.
The IP addresses 169.254.169.254 and 168.63.129.16 in Azure serve different purposes and have distinct functionalities.
- The Ip Address 169.254.169.254 is used for Azure Instance Metadata Service (IMDS)
- This service provides information about the running virtual machine instances that can be used to manage and configure them. It is a reserved IP address that allows virtual machines to query metadata about themselves without needing to go through the public internet.
- For example, on a VM if you want to know about the SKU, storage, and network configurations of the VM, you may run the below command to know about VM metadata details. and the response would be in JSON format.
Invoke-RestMethod -Headers @{"Metadata"="true"} -Method GET -NoProxy -Uri "http://169.254.169.254/metadata/instance?api-version=2021-02-01" | ConvertTo-Json -Depth 64
- Below is the sample response of a VM metadata output of the command
- https://learn.microsoft.com/en-us/azure-stack/user/instance-metadata-service?view=azs-2408#rest-response
- While the Ip address 168.63.129.16 is a Virtual Public ip address used to facilitate communication with Azure Platform Resources.
- It serves multiple purposes as below
- Enables the VM Agent to communicate with the Azure platform to signal that it is in a "Ready" state.
- Enables communication with the DNS virtual server to provide filtered name resolution to the resources (such as VM) that don't have a custom DNS server.
- Enables health probes from Azure Load Balancer to determine the health state of VMs.
- Enables the VM to obtain a dynamic IP address from the DHCP service in Azure.
- If you run a packet capture on a VM which is behind an Azure Load balancer you will see the health probe coming from source Ip address 168.63.129.16.
Note: Till now IMDS service is also responded on ip 168.63.129.16 along with 169.254.169.254 but from 1 July 2025 all the IMDS call on IP 168.63.129.16 will be blocked.
Kindly refer the below link -
If the below answer addressed your query, please don’t forget to click "Accept the answer" and Up-Vote for the same, which might be beneficial to other community members reading this thread. And, if you have any further query do let us know.
Thanks,
Ujjawal Tyagi