Reputation: 3
We have a domain and webapp currently which I need to do a set up for the domain to point to my webapp server. I only need to point to www.domain.com to my Azure DNS and mail.domainname.com point to another email provider. How can I do this?
Upvotes: 0
Views: 85
Reputation: 1506
Azure DNS is primarily used to host your DNS domain and manage your DNS records.
The advantages of hosting your domains on Azure is that you can manage your DNS records using the same credentials, APIs, tools, and billing as your other Azure services.
Since you are not using any transfer protocol, the below steps can be followed without affecting your domain.
As this is a domain redirection, we need to use DNS zones.
Enter the host names accordingly as per your requirement.
Alongside, we can use nslookup to validate whether the names are working or not.
Reference taken from Azure DNS
Upvotes: 0