MCSA 70-741 Flashcards
What is an NS record?
Name Server record
Indicates what name server is authoritative for a particular DNS zone
What is an MX record?
Mail Exchange record
for a mail server
What is a CA record?
Certificate Authority Record
What type of records would be in Public DNS?
- NS records
- MX records
- Web server records
- CA records
What are the basic DNS client tools?
In Command Line:
nslookup
In PowerShell:
Resolve-DNSName
What is an AAAA record?
An AAAA record points to an IPv6 address.
May be pronounced as “Quad A Record.”
What is JEA?
Just Enough Administration
Allows you to set up special remote PowerShell sessions that are limited in which cmdlets, parameters, and parameter values can be used.
Requires extensive planning to ensure that the appropriate cmdlets and parameters are available.
Can be linked to RBAC groups
What are the benefits of installing a DNS server on Server Core rather than a server with the Desktop Experience?
- Reduced attack surface
- Reduced resource footprint
- Reduced patching requirements, therefore less frequent reboots
What are the benefits of running your DNS server on the Domain Controller?
- Supports Active Directory Integrated Zones.
* Any domain controller that hosts a copy of an AD Integrated Zone can process zone updates.
What is a Primary DNS Zone?
You have a primary server processing updates to the zone.
They can be deployed on a domain controller, member server, or standalone computer.
It uses a zone file. Zone data is stored in the zone file.
What is an Active Directory Integrated Zone?
Instead of having a Zone file, all of the zone data is stored within Active Directory.
The benefits of this are that:
Any domain controller that hosts a copy of the zone can process zone updates
What options are available for allowing dynamic updates in DHCP?
- Allow secure dynamic updates
- Allow non-secure dynamic updates
- Do not allow dynamic updates
What is a Secondary DNS Zone?
- A read-only replica of a primary zone
- Creates a copy of a zone that exists on another server.
- Helps balance the processing load of primarily servers, and provides fault tolerance
- needs permission to transfer zone from primary
- Can transfer zone data from primary zone or other secondary zone
- Allows you to have a DNS server in an environment where you don’t want the server to be processing updates.
What is a Stub DNS Zone?
- A stub zone is used to provide information about authoritative name servers for a zone.
- It creates a copy of a zone containing only Name Server (NS), Start of Authority (SOA), and possible glue Host (A) records.
- It is able to update when name servers in target zone change (unlike a DNS forwarder)
What is a Reverse Lookup Zone?
- Contains PTR records
- Used for resolving IP addresses to FQDNs
- Can be configured for either IPv4 or IPv6
What is a Global Name Zone?
- Provides single label name resolution, i.e., it allows resolution of short, easy names rather than requiring FQDNs.
- Designed as a replacement for WINS servers (which were for NetBIOS name resolution)
To configure:
• Primary zone must be created with zone name “GlobalNames”
• Enable GlobalNames zone support on each server that hosts zone
In DNS, what is a Delegation?
- Delegation points at a sub domain of an existing domain
- Can be hosted on the same DNS server, or another DNS server
- You must create the sub domain zone prior to performing the delegation
What is Zone Scavenging?
- Allows for automatic removal of DNS resource records that are no longer in use
- Primarily useful for zones with transient entries (Ex., public Wi-Fi)
- Can be set at the server level or zone level
- Disabled by default
- When enabled, you set the No-Refresh Interval, and Refresh interval.
- Scavenging can occur automatically, or can be forced.
What is Zone Transfer, and what policy options are possible?
Zone Transfer policy determines whether secondary zones can be configured.
Configured in the Properties for a Zone, if you choose to Allow zone transfers, your options are:
- To any server
- Only to servers listed on the Name Servers tab of the Zone properties
- Only to a list of specified servers
What is this command?
Get-DNSServerRecursion
This cmdlet will tell you whether DNS Server Recursion is enabled or not, and the current configuration of its settings
What is NRPT?
Name Resolution Policy Tables
- Provides policy-based name resolution request routing for DirectAccess clients
- Allows clients to send DNS requests for the corporate namespace over the DirectAccess connection to the LAN DNS server, while any other namespaces’ requests will go to a public/internet DNS server configured on the client’s network adapter.
- Configured using Group Policy
What is DANE?
DNS-based Authentication of Named Entities
- Publishes TLSA through DNS, which state the CA from which they should expect a certificate.
- This protects against rogue CAs issuing illegitimate TLS certs
- Requires DNSSEC for the zone hosting the TLSA record
What is a KSK?
Key Signing Key (KSK)
Part of DNSSEC
The KSK is an authentication key that corresponds to a private key used to sign one or more other signing keys. Typically, the private key corresponding to a KSK will sign other keys used for signing the zone.
What is a ZSK?
Zone Signing Key (ZSK)
Part of DNSSEC
The ZSK is an authentication key that corresponds to a private key used to sign zone data. Typically, ZSKs are rolled over more frequently than KSKs.