You have a server that runs a Server Core installation of Windows Server 2012 R2.
You need to change the
DNS server used by IPv6.
What should you do?
A. From Sconfig, configure the Network Settings.
B. Run the
sc.exe
command and specify the
config
parameter.
C. From Windows PowerShell, run the
Set-NetIpv6Protocol
cmdlet.
D. From Windows PowerShell, run the
Set-DnsClientServerAddress
cmdlet.
Explanation:
The Set-DnsClientServerAddress cmdlet sets one or more IP addresses for DNS servers associated with an interface. This cmdlet statically adds DNS server addresses to the interface. If this cmdlet i
s used to add DNS servers to the interface, then the DNS servers will override any DHCP configuration for that interface.
PS C:\> Set-DnsClientServerAddress -InterfaceIndex 12-ServerAddresses -10.0.0.1-,-10.0.0.2-)
References:
http://technet.microsoft.com
/en-us/library/jj592692.aspx
http://technet.microsoft.com/en-us/library/jj590768.aspx