Delegate Subdomain to a Different DNS Server in Azure | Exam AZ-100 | Microsoft

Delegate Subdomain to a Different DNS Server in Azure

Question

You have an Azure DNS zone named adatum.com. You need to delegate a subdomain named research.adatum.com to a different DNS server in Azure. What should you do?

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D.

B

You need to create a name server (NS) record for the zone.

https://docs.microsoft.com/en-us/azure/dns/delegate-subdomain

The correct answer is B. Create an NS record named research in the adatum.com zone.

Explanation: Delegation is a process of assigning authority over a subdomain to another DNS server. It is often used to allow different teams or organizations to manage different parts of a DNS namespace. In this case, we need to delegate the subdomain "research.adatum.com" to a different DNS server in Azure.

To delegate a subdomain, we need to create an NS (Name Server) record in the parent domain (adatum.com) that points to the DNS server that will manage the subdomain (research.adatum.com). The NS record specifies the hostname of the DNS server responsible for the subdomain.

Here are the steps to delegate the subdomain "research.adatum.com" to a different DNS server in Azure:

  1. Determine the hostname of the DNS server that will manage the subdomain. Let's assume it is "ns1.research.adatum.com".

  2. In the Azure portal, navigate to the "adatum.com" DNS zone.

  3. Click on the "Add record set" button.

  4. In the "Name" field, enter "research".

  5. In the "Type" field, select "NS".

  6. In the "TTL" field, enter the desired Time-to-Live value (in seconds).

  7. In the "Records" field, enter the hostname of the DNS server responsible for the subdomain ("ns1.research.adatum.com").

  8. Click on the "Add" button to create the NS record.

After completing these steps, the subdomain "research.adatum.com" will be delegated to the DNS server "ns1.research.adatum.com", which can then be configured to manage the DNS records for that subdomain.