code_green
code_green

Reputation: 3

Need help in configuring Azure DNS for www.domain.com without affecting mail.domain.com

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

Answers (1)

Rajesh  Mopati
Rajesh Mopati

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.

  1. Create DNS zone.

enter image description here

  1. Add a record set using NS type

enter image description here

enter image description here

Enter the host names accordingly as per your requirement.

enter image description here

Alongside, we can use nslookup to validate whether the names are working or not.

Reference taken from Azure DNS

Upvotes: 0

Related Questions