An Azure service that enables hosting Domain Name System (DNS) domains in Azure.
Hello, Welcome to MS Q&A
Requirements
- Static Public IP: Reverse DNS is only supported on static public IP addresses in Azure.
- Matching Forward DNS: The hostname you configure must resolve back to the same public IP (via an A or CNAME record).
- Azure CLI or PowerShell: The property cannot be set in the portal UI.
So pls tyr use this PS Script to achieve this
# Login to Azure
Connect-AzAccount
# Get your public IP resource
$publicIP = Get-AzPublicIpAddress -Name "MyPublicIP" -ResourceGroupName "MyResourceGroup"
# Set the ReverseFqdn property
$publicIP.DnsSettings.ReverseFqdn = "mail.example.com."
# Update the resource
Set-AzPublicIpAddress -PublicIpAddress $publicIP
Kindly check and let me know if any ques
Thanks
Deepanshu