HOTSPOT
Your network contains an Active Directory domain named contoso.com. The domain contains a DNS
server named Server1. Server1 is configured to resolve single-label names for DNS clients.
You need to view the number of queries for single-label names that are resolved by Server1.
What command should you run?
To answer, select the appropriate options in the answer area.

Explanation:
* The Get-DnsServerStatistics cmdlet retrieves statistics of a Domain Name System (DNS) server. If
the ZoneName parameter is specified, this cmdlet gets statistics for the zones specified by that
parameter.
* To help network administrators migrate to DNS for all name resolution, the DNS Server role in
Windows Server 2008 (and later) supports a specially named zone, called GlobalNames. By deploying
a zone with this name, you can have the static, global records with single-label names, without
relying on WINS. These single-label names typically refer to records for important, well-known and
widely-used servers—servers that are already assigned static IP addresses and that are currently
managed by IT-administrators using WINS.Get-DnsServerStatistics; Deploying a GlobalNames Zone
Joe says:
July 27, 2015 at 3:18 pm
to resolve single label names you need to have a zone called globalnames, so to get the number of single label names resolved you have to get statistics for that zone.
bobsmith says:
January 16, 2015 at 6:42 pm
Answer = Get-DnsServerStatistics -ZoneName GlobalNames
http://technet.microsoft.com/en-us/library/jj649858.aspx
0
0