CIS251_3.5_Advanced_DNS_Configuration_in_Windows_Corey_Adams

docx

School

ECPI University, Greensboro *

*We aren’t endorsed by this school

Course

251

Subject

Computer Science

Date

Nov 24, 2024

Type

docx

Pages

4

Uploaded by corada5995

Report
CIS251 – 3.5 – Advanced DNS Configuration in Windows Corey Adams
PowerShell Commands Command Example Description Add-DnsServerResourceRecord - ZoneName kmw.org -NS Add-DnsServerResourceRecord - ZoneName kmw.org -NS -Name . -NameServer dc-02.kmw.org To create an NS record (or nameserver record) that contains the name of the authoritative name server within a domain or DNS zone. When a client queries for an IP address, it can find the IP address of their intended destination from an NS record via a DNS lookup.
Add-DnsServerSecondaryZone Add-DnsServerSecondaryZone - ZoneName kmw.org -ZoneFile kmw.org.dns -MasterServers 10.1.1.1 -Verbose Adds a specified secondary zone on a Domain Name System (DNS) server. You can create either a forward lookup zone or a reverse lookup zone. To create a reverse lookup zone, specify a network ID by using the NetworkID parameter, or specify a full reverse lookup zone name by using the Name parameter. Set-DnsServerPrimaryZone Set-DnsServerPrimaryZone - ZoneName kmw.org -Notify NotifyServers -NotifyServers 10.1.1.2 -SecureSecondaries TransferToSecureServers - SecondaryServers 10.1.1.2 To enable the zone transfer. Changes settings for an existing Domain Name System (DNS) primary zone. You can change values that are relevant for either Active Directory-integrated zones or file-backed zones. Get-DnsServerResourceRecord Get-DnsServerResourceRecord - ZoneName kmw.org To verify zone transfer. Gets the following information for a specified resource record from a Domain Name System (DNS) zone nslookup nslookup adminkms1.ecpivab.edu To verify that you can resolve names. Queries DNS records for a given domain name. It allows you to view all the DNS records for a website. Add-DnsServerForwarder Add-DnsServerForwarder - IPAddress 10.1.1.1 Adds one or more forwarders to the forwarders list of a Domain Name System (DNS) server. If you prefer one of the forwarders, put that forwarder first in the series of forwarder IP addresses. After you first use this cmdlet to add forwarders to a DNS server, this cmdlet adds forwarders to the end of the forwarders list.
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
  • Access to all documents
  • Unlimited textbook solutions
  • 24/7 expert homework help
Get-DnsServerZone Get-DnsServerZone - ComputerName DC-01 Gets the zones that exist on a Domain Name System (DNS) server and verifies the executed commands such as a forwarder. Get-DnsServerForwarder Get-DnsServerForwarder Gets configuration settings on a DNS server and verify that it was created.