Procedure: Deploy a Root Trust Point

 

Applies To: Windows Server 2012 R2, Windows Server 2012

Use the following procedures to deploy an Internet root (.) trust point.

Do not use this procedure if your network uses a local DNS server as a root DNS server. Instead, use the procedures for importing or adding a trust point and specify the zone name to be the root zone (.). For more information, see Procedure: Import a Trust Point or Procedure: Add a Trust Point.

The following procedures are used to deploy a root trust anchor from the Internet Assigned Numbers Authority (IANA) using the URL that is specified in the RootTrustAnchorsURL property of the DNS server. You can view the RootTrustAnchorsURL property by using the Get-DnsServerSetting cmdlet. See the following example.

PS C:\> Get-DnsServerSetting -All | Select RootTrustAnchorsURL
RootTrustAnchorsURL
-------------------
https://data.iana.org/root-anchors/root-anchors.xml

To modify the RootTrustAnchorsURL property, use the Set-DnsServerSetting cmdlet.

Procedures are provided using Windows PowerShell.

Important

The Root parameter is not available for use with the Add-DnsServerTrustAnchor cmdlet in Windows Server 2012. This parameter is new in Windows Server 2012 R2. To deploy a root trust anchor on a DNS server running Windows Server 2012, you can use the Dnscmd.exe utility (for example, Dnscmd.exe /RetrieveRootTrustAnchors.

When you have completed the procedures in this topic, return to the parent checklist.

Deploy a root trust point using Windows PowerShell

Membership in the Administrators group, or equivalent, is the minimum required to complete these procedures. Review details about using the appropriate accounts and group memberships at Local and Domain Default Groups (https://go.microsoft.com/fwlink/?LinkId=83477).

To use the Windows PowerShell examples that are provided, replace server and zone names with the names you will use in your environment.

Important

To add a root trust point, the computer must be connected to the Internet.

To deploy a root trust point using Windows PowerShell

  1. Open an elevated Windows PowerShell prompt on the resolving DNS server where you wish to add the root trust anchor.

  2. To add a root trust anchor, use the Add-DnsServerTrustAnchor cmdlet with the Root parameter. See the following example.

    PS C:\> Add-DnsServerTrustAnchor -Root
    

To verify that the root trust point was successfully added, you can use the Get-DnsServerTrustPoint cmdlet. If you do not specify a value for the Name parameter, then all current trust points are displayed. See the following example.

PS C:\> Get-DnsServerTrustPoint

TrustPointName                           TrustPointState      LastActiveRefreshTime     NextActiveRefreshTime
--------------                           ---------------      ---------------------     ---------------------
.                                        Active               1/23/2014 1:02:01 PM      1/23/2014 1:02:17 PM
adatum.com.                              Active               1/23/2014 1:02:01 PM      1/23/2014 1:02:17 PM

Warning

If the status of a DS trust point is DS Pending, this means that the DNS server currently does not have access to the zone’s DNSKEY resource records. You might also need to verify that the DS trust point is current and uses a supported cryptographic algorithm. After adding a valid DS trust point, the DNS server will automatically acquire the current DNSKEY RRSET and use it to update the trust anchor.

See also

DNSSEC in Windows

DNSSEC Deployment Planning