Your network contains two servers named Server1 and Server2 that run a Server Core installation of Windows Server 2008 R2. Server1 and Server2 are configured as DNS servers. Server1 has an IP address of 10.0.0.1. Server2 has an IP address of 10.0.0.2. Server1 contains a standard primary zone named contoso.com. Zone transfers are enabled for contoso.com. You need to ensure that Server2 hosts a copy of the contoso.com zone. Which command should you run on Server2?
A.
dnscmd / zoneadd contoso.com /secondary 10.0.0.1
B.
dnscmd / zoneadd contoso.com /primary 10.0.0.2
C.
dnscmd / zoneadd contoso.com /secondary 10.0.0.2
D.
dnscmd / zoneadd contoso.com /primary 10.0.0.1
Explanation:
Using a command line
Open Command Prompt.
Type:
dnscmdServerName /ZoneAdd ZoneName /Secondary MasterIPaddress…[/file FileName]
http://technet.microsoft.com/en-us/library/cc756116%28v=ws.10%29.aspx#BKMK_22
Says the FQDN or IP address it “Specifies the directory partition on which to store the zone.” Not as stated above “MasterIPaddress…”
This would make C the correct answer.
You`re quoting the /dp parameter wich is not used in this case. Read the description for the /secondary parameter.