SlideShare une entreprise Scribd logo
1  sur  39
Module 3
Configuring and
Troubleshooting DNS
Module Overview
• Installing the DNS Server Role
• Configuring the DNS Server Role
• Configuring DNS Zones
• Configuring DNS Zone Transfers
• Managing and Troubleshooting DNS
Lesson 1: Installing the DNS Server Role
• Overview of the Domain Name System Role
• Overview of the DNS Namespace
• DNS Improvements for Windows Server 2008
• DNS Improvements for Windows Server 2008 R2
• Demonstration: How to Install the DNS Server Role
• Considerations for Deploying the DNS Server Role
Overview of the Domain Name System Role
Domain Name System is a hierarchical distributed database
• DNS is the foundation of the Internet naming scheme
• DNS supports accessing resources by using
alphanumeric names
• InterNIC is responsible for managing the
domain namespace
• DNS was created to support the Internet’s growing
number of hosts
Overview of the DNS Namespace
Root Domain
Subdomain
Second-Level
Domain
Top-Level
Domain
FQDN:
SERVER1.sales.south.contoso.com
south
contoso
com
sales
west east
orgnet
Host: SERVER1
DNS Improvements for Windows Server 2008
New or enhanced features in the Windows Server 2008
version of DNS include:
• Background zone loading
• IP version 6 support
• Support for read-only domain controllers
• Global single names
• Global query block list
DNS Improvements for Windows Server 2008 R2
New or enhanced features in the Windows Server 2008 R2
version of DNS include:
• DNS Security Extensions
• DNS Devolution
• DNS Cache Locking
• DNS Socket Pool
• Name Resolution Policy Table
Demonstration: How to Install the DNS Server Role
This demonstration shows how to install the DNS
Server role
Considerations for Deploying the DNS Server Role
Subnet 1
Subnet 2
DNS Server
DNS
Zone
DNS Client
DNS Client
Subnet 3
DNS Server
DNS
Zone
DNS Client
Lesson 2: Configuring the DNS Server Role
• What Are the Components of a DNS Solution?
• DNS Resource Records
• What Are Root Hints?
• What Are DNS Queries?
• What Is Forwarding?
• How DNS Server Caching Works
• Demonstration: How to Configure the DNS Server Role
What Are the Components of a DNS Solution?
DNS Servers on the InternetDNS ServersDNS Resolvers
Root “.”
.com
.edu
Resource
Record
Resource
Record
DNS resource records include:
• SOA: Start of Authority
• A: Host Record
• CNAME: Alias Record
• MX: Mail Exchange Record
• SRV: Service Resources
• NS: Name Servers
• AAAA: IPv6 DNS Record
DNS Resource RecordsDNS Resource Records
What Are Root Hints?
Root hints contain the IP addresses for DNS root servers
microsoft
DNS Servers
DNS Server
Root (.) Servers
com
Client
Root Hints
What Are DNS Queries?
DNS Client
mail1.contoso.com
172.16.64.11
A recursive query is sent to a DNS server and requires a
complete answer
Database
Local DNS Server
An iterative query directed to a DNS server may be
answered with a referral to another DNS server
Client Server
Local DNS Server
Root Hint (.)
.com
Iterative Query
Ask .com
Contoso.com
• Queries are recursive or iterative
• DNS clients and DNS servers initiate queries
• DNS servers are authoritative or nonauthoritative for
a namespace
• An authoritative DNS server for the namespace will either:
• Return the requested IP address
• Return an authoritative “No”
• A nonauthoritative DNS server for the namespace will either:
• Check its cache
• Use forwarders
• Use root hints
A query is a request for name resolution and is directed to a
DNS server
What Is Forwarding?
ISP DNS
All other DNS domains
Local DNS
Contoso.com DNS
Conditional forwarding forwards requests using a domain
name condition
Client Computer
A forwarder is a DNS server designated to resolve
external or offsite DNS domain names
contoso.com
Root Hint (.)
.com
Iterative Query
Ask .com
Forwarder
Local DNS Server Client Server
Where’s
ServerA?
ServerA is at
192.168.8.44
Where’s
ServerA?
ServerA is at
192.168.8.44
How DNS Server Caching Works
Client1
Client2
ServerA
DNS server cache
Host name IP address TTL
ServerA.contoso.com 192.168.8.44 28 seconds
Demonstration: How to Configure the DNS Server
Role
This demonstration shows how to:
• Configure DNS server properties
• Configure conditional forwarding
• Clear the DNS cache
Lesson 3: Configuring DNS Zones
• What Is a DNS Zone?
• What Are the DNS Zone Types?
• What Are Forward and Reverse Lookup Zones?
• What are Stub Zones?
• Demonstration: How to Create Zones
• DNS Zone Delegation
What Is a DNS Zone?
“.”
.com
microsoft.com zone
microsoft.com
domain
Internet
example.microsoft.com
zone
DNS root domain
Zone database
Zone database
example.microsoft.com
www.example.microsoft.com
ftp.example.microsoft.com
microsoft.com
www.microsoft.com
ftp.microsoft.com
example.microsoft.com
What Are the DNS Zone Types?
Zones Description
Primary Read/write copy of a DNS database
Secondary Read-only copy of a DNS database
Stub
Copy of a zone that contains only
records used to locate name servers
Active
Directory
integrated
Zone data is stored in Active
Directory rather than in zone files
DNS Client2
DNS Client3
What Are Forward and Reverse Lookup Zones?
Namespace: training.contoso.com
DNS Client1
DNS Server Authorized
for training
Forward
zone
Training
DNS Client1 192.168.2.45
DNS Client2 192.168.2.46
DNS Client3 192.168.2.47
Reverse
zone
1.168.192.in-
addr.arpa
192.168.2.45 DNS Client1
192.168.2.46 DNS Client2
192.168.2.47 DNS Client3
DNS Client2 = ?
192.168.2.46 = ?
With a stub zone defined, the location of the
na.fabrikam.com zone is known without querying multiple
DNS servers
Contoso.com
(Root domain)
na.contoso.com sa.contoso.com
ny.na.contoso.com rio.sa.contoso.com
DNS server
DNS server
DNS server
DNS server
DNS server
fabrikam.com
DNS server
DNS server
na.fabrikam.com
Without stub zones, the ny.na.contoso.com server must
query several servers to find the server that hosts the
na.fabrikam.com zone
Contoso.com
(Root domain)
na.contoso.com sa.contoso.com
ny.na.contoso.com rio.sa.contoso.com
DNS server
DNS server
DNS server
DNS server
DNS server
fabrikam.com
DNS server
DNS server
na.fabrikam.com
What Are Stub Zones?
Demonstration: How to Create Zones
This demonstration shows how to:
• Create a reverse lookup zone
• Create a forward lookup zone
DNS Zone Delegation
Training.contoso.com Sales.contoso.com
contoso.com
Lesson 4: Configuring DNS Zone Transfers
• What Is a DNS Zone Transfer?
• Configuring Zone Transfer Security
• Demonstration: How to Configure DNS Zone Transfers
What Is a DNS Zone Transfer?
A DNS zone transfer is the synchronization of
authoritative DNS zone data between DNS servers
SOA query for a zone
SOA query answered
IXFR or AXFR query for a zone
IXFR or AXFR query answered
(zone transferred)
1
2
3
4
Secondary server Primary and
Master server
Configuring Zone Transfer Security
Primary Zone Secondary Zone
• Encrypt zone transfer traffic
• Consider using Active Directory-integrated zones
• Restrict zone transfer to specified servers
This demonstration shows how to:
• Enable DNS zone transfers
• Update the secondary zone from the master server
• Update the primary zone and verify the change on the
secondary zone
Demonstration: How to Configure Zone Transfers
Lesson 5: Managing and Troubleshooting DNS
• What Is Time to Live, Aging, and Scavenging?
• Demonstration: How to Manage DNS Records
• Tools That Identify Problems With DNS
• Demonstration: How to Test the DNS Server Configuration
• Monitoring DNS Using the DNS Event Log
• Monitoring DNS Using Debug Logging
What Is Time to Live, Aging, and Scavenging?
Feature Description
Time to Live
(TTL)
Indicates how long a DNS record will
remain valid
Aging
Occurs when records that have been
inserted into the DNS server reach
their expiration and are removed
Scavenging
Performs DNS server resource record
grooming for old records in DNS
Demonstration: How to Manage DNS Records
This demonstration shows how to:
• Configure TTL
• Enable and configure scavenging and aging
Tools That Identify Problems With DNS
Tool Used to:
Nslookup Troubleshoot DNS problems
Dnscmd Edit the DNS configuration
Dnslint Diagnose common DNS issues
Ipconfig Display and clear DNS resolver cache
Monitoring tab Perform queries against server
Demonstration: How to Test the DNS Server
Configuration
This demonstration shows how to:
• Capture DNS network traffic
• Filter and analyze captured traffic
• Use NSLookup.exe to test DNS
Monitoring DNS Using the DNS Event Log
• Monitor DNS events in the event log to:
• Monitor zone transfer information
• Monitor computer events
Monitoring DNS Using Debug Logging
• Enable DNS debug logging to view granular
verbose information about DNS activities
Lab: Configuring and Troubleshooting DNS
• Exercise 1: Selecting a DNS configuration
• Exercise 2: Deploying and configuring DNS
• Exercise 3: Troubleshooting DNS
Estimated time: 75 minutes
Logon information
Virtual machines
6421B-NYC-DC1
6421B-NYC-SVR1
6421B-NYC-CL1
User name ContosoAdministrator
Password Pa$$w0rd
Lab Scenario
Contoso is planning to improve their DNS infrastructure due
to complaints from users about poor performance. In
addition, Contoso is partnering with A Datum and name
resolution must be optimized between these two
organizations. Your task is to plan and implement the
required changes.
Lab Review
• In the lab, you were required to deploy a secondary zone
because no additional domain controllers were going to be
deployed. If this condition changed, that is, NYC-SVR1 was
a domain controller, how would that change your
implementation plan?
Module Review and Takeaways
• Review Questions
• Tools

Contenu connexe

Tendances

DSpace 4.2 Basics & Configuration
DSpace 4.2 Basics & ConfigurationDSpace 4.2 Basics & Configuration
DSpace 4.2 Basics & Configuration
DuraSpace
 
Lecture 2 servers and services
Lecture 2   servers and servicesLecture 2   servers and services
Lecture 2 servers and services
Wiliam Ferraciolli
 

Tendances (20)

Implementing IP V4
Implementing IP V4Implementing IP V4
Implementing IP V4
 
6421 b Module-11
6421 b Module-116421 b Module-11
6421 b Module-11
 
MCSA Installing & Configuring Windows Server 2012 70-410
MCSA Installing & Configuring Windows Server 2012 70-410MCSA Installing & Configuring Windows Server 2012 70-410
MCSA Installing & Configuring Windows Server 2012 70-410
 
Domino Server Health - Monitoring and Managing
 Domino Server Health - Monitoring and Managing Domino Server Health - Monitoring and Managing
Domino Server Health - Monitoring and Managing
 
6421 b Module-12
6421 b Module-126421 b Module-12
6421 b Module-12
 
Screen Shots of Building Linux IPv6 DNS Server
Screen Shots of Building Linux IPv6 DNS Server Screen Shots of Building Linux IPv6 DNS Server
Screen Shots of Building Linux IPv6 DNS Server
 
06 coms 525 tcpip - dhcp and dns
06   coms 525 tcpip - dhcp and dns06   coms 525 tcpip - dhcp and dns
06 coms 525 tcpip - dhcp and dns
 
6421 b Module-10
6421 b  Module-106421 b  Module-10
6421 b Module-10
 
Locking the Doors, Securing the Appliances
Locking the Doors, Securing the AppliancesLocking the Doors, Securing the Appliances
Locking the Doors, Securing the Appliances
 
Sample template to report internet dns's performance
Sample template to report internet dns's performanceSample template to report internet dns's performance
Sample template to report internet dns's performance
 
File Sever
File SeverFile Sever
File Sever
 
1 introduction to windows server 2016
1  introduction to windows server 20161  introduction to windows server 2016
1 introduction to windows server 2016
 
AWS re:Invent 2016: Making Every Packet Count (NET404)
AWS re:Invent 2016: Making Every Packet Count (NET404)AWS re:Invent 2016: Making Every Packet Count (NET404)
AWS re:Invent 2016: Making Every Packet Count (NET404)
 
unit 2
unit 2unit 2
unit 2
 
DSpace 4.2 Basics & Configuration
DSpace 4.2 Basics & ConfigurationDSpace 4.2 Basics & Configuration
DSpace 4.2 Basics & Configuration
 
Lecture 2 servers and services
Lecture 2   servers and servicesLecture 2   servers and services
Lecture 2 servers and services
 
DHCP concept
DHCP conceptDHCP concept
DHCP concept
 
Dhcp
DhcpDhcp
Dhcp
 
Lesson 5: Configuring Name Resolution
Lesson 5: Configuring Name ResolutionLesson 5: Configuring Name Resolution
Lesson 5: Configuring Name Resolution
 
Window server 2008
Window server 2008Window server 2008
Window server 2008
 

En vedette

Chapter 4 configuring and managing the dns server role
Chapter 4   configuring and managing the dns server roleChapter 4   configuring and managing the dns server role
Chapter 4 configuring and managing the dns server role
Luis Garay
 
Networking in Gnu/Linux
Networking in Gnu/LinuxNetworking in Gnu/Linux
Networking in Gnu/Linux
Ahmed Mekkawy
 
Cent os 5.1 - configuring samba 3.0 to use the ads security mode
Cent os 5.1  - configuring samba 3.0 to use the ads security modeCent os 5.1  - configuring samba 3.0 to use the ads security mode
Cent os 5.1 - configuring samba 3.0 to use the ads security mode
B Sasi Kumar
 
How to configure dns server(2)
How to configure dns server(2)How to configure dns server(2)
How to configure dns server(2)
Amandeep Kaur
 

En vedette (20)

DNS,SMTP and POP3
DNS,SMTP and POP3DNS,SMTP and POP3
DNS,SMTP and POP3
 
DNS (BIND) on CentOS
DNS (BIND) on CentOSDNS (BIND) on CentOS
DNS (BIND) on CentOS
 
Presentation
PresentationPresentation
Presentation
 
70 640
70 64070 640
70 640
 
Dns centos
Dns centosDns centos
Dns centos
 
Dns
DnsDns
Dns
 
Chapter 4 configuring and managing the dns server role
Chapter 4   configuring and managing the dns server roleChapter 4   configuring and managing the dns server role
Chapter 4 configuring and managing the dns server role
 
Open dns configuring opendns on aruba controller
Open dns   configuring opendns on aruba controllerOpen dns   configuring opendns on aruba controller
Open dns configuring opendns on aruba controller
 
Presentation on Domain Name System
Presentation on Domain Name SystemPresentation on Domain Name System
Presentation on Domain Name System
 
main
mainmain
main
 
Domain Name System
Domain Name SystemDomain Name System
Domain Name System
 
Networking in Gnu/Linux
Networking in Gnu/LinuxNetworking in Gnu/Linux
Networking in Gnu/Linux
 
DNS
DNSDNS
DNS
 
BIND DNS Configuration Red Hat 5
BIND DNS Configuration Red Hat 5BIND DNS Configuration Red Hat 5
BIND DNS Configuration Red Hat 5
 
Cent os 5.1 - configuring samba 3.0 to use the ads security mode
Cent os 5.1  - configuring samba 3.0 to use the ads security modeCent os 5.1  - configuring samba 3.0 to use the ads security mode
Cent os 5.1 - configuring samba 3.0 to use the ads security mode
 
Configuring RAID 1 on CentOs
Configuring RAID 1 on CentOsConfiguring RAID 1 on CentOs
Configuring RAID 1 on CentOs
 
6. centos networking
6. centos networking6. centos networking
6. centos networking
 
Building a Linux IPv6 DNS Server Project review PPT v3.0 First review
Building a Linux IPv6 DNS Server Project review PPT v3.0 First reviewBuilding a Linux IPv6 DNS Server Project review PPT v3.0 First review
Building a Linux IPv6 DNS Server Project review PPT v3.0 First review
 
Seo2 india devang barot - google public dns
Seo2 india   devang barot - google public dnsSeo2 india   devang barot - google public dns
Seo2 india devang barot - google public dns
 
How to configure dns server(2)
How to configure dns server(2)How to configure dns server(2)
How to configure dns server(2)
 

Similaire à 6421 b Module-03

Microsoft Offical Course 20410C_07
Microsoft Offical Course 20410C_07Microsoft Offical Course 20410C_07
Microsoft Offical Course 20410C_07
gameaxt
 
Chapter4 configuringandmanagingthednsserverrole-140520003253-phpapp01
Chapter4 configuringandmanagingthednsserverrole-140520003253-phpapp01Chapter4 configuringandmanagingthednsserverrole-140520003253-phpapp01
Chapter4 configuringandmanagingthednsserverrole-140520003253-phpapp01
velimamedov
 
Pmw2 k3ni 1-2b
Pmw2 k3ni 1-2bPmw2 k3ni 1-2b
Pmw2 k3ni 1-2b
hariclant1
 
Pmw2 k3ni 1-3a
Pmw2 k3ni 1-3aPmw2 k3ni 1-3a
Pmw2 k3ni 1-3a
hariclant1
 
Domain name system advanced power point presentation
Domain name system advanced power point presentationDomain name system advanced power point presentation
Domain name system advanced power point presentation
rituchouhan1508
 

Similaire à 6421 b Module-03 (20)

Implementing Domain Name
Implementing Domain NameImplementing Domain Name
Implementing Domain Name
 
Microsoft Offical Course 20410C_07
Microsoft Offical Course 20410C_07Microsoft Offical Course 20410C_07
Microsoft Offical Course 20410C_07
 
02 configuring and-troubleshooting-dns
02 configuring and-troubleshooting-dns02 configuring and-troubleshooting-dns
02 configuring and-troubleshooting-dns
 
vpn-radius-5.ppt
vpn-radius-5.pptvpn-radius-5.ppt
vpn-radius-5.ppt
 
MCSA 70-412 Chapter 01
MCSA 70-412 Chapter 01MCSA 70-412 Chapter 01
MCSA 70-412 Chapter 01
 
Chapter4 configuringandmanagingthednsserverrole-140520003253-phpapp01
Chapter4 configuringandmanagingthednsserverrole-140520003253-phpapp01Chapter4 configuringandmanagingthednsserverrole-140520003253-phpapp01
Chapter4 configuringandmanagingthednsserverrole-140520003253-phpapp01
 
1 technical-dns-workshop-day1
1 technical-dns-workshop-day11 technical-dns-workshop-day1
1 technical-dns-workshop-day1
 
2 technical-dns-workshop-day1
2 technical-dns-workshop-day12 technical-dns-workshop-day1
2 technical-dns-workshop-day1
 
Pmw2 k3ni 1-2b
Pmw2 k3ni 1-2bPmw2 k3ni 1-2b
Pmw2 k3ni 1-2b
 
MCSA 70-412 Chapter 05
MCSA 70-412 Chapter 05MCSA 70-412 Chapter 05
MCSA 70-412 Chapter 05
 
Extended DNS Errors
Extended DNS ErrorsExtended DNS Errors
Extended DNS Errors
 
DNS/DNSSEC by Nurul Islam
DNS/DNSSEC by Nurul IslamDNS/DNSSEC by Nurul Islam
DNS/DNSSEC by Nurul Islam
 
Hands-on DNSSEC Deployment
Hands-on DNSSEC DeploymentHands-on DNSSEC Deployment
Hands-on DNSSEC Deployment
 
Fundamentals
FundamentalsFundamentals
Fundamentals
 
6425 b 10
6425 b 106425 b 10
6425 b 10
 
Dns ppt
Dns pptDns ppt
Dns ppt
 
Pmw2 k3ni 1-3a
Pmw2 k3ni 1-3aPmw2 k3ni 1-3a
Pmw2 k3ni 1-3a
 
Domain name system advanced power point presentation
Domain name system advanced power point presentationDomain name system advanced power point presentation
Domain name system advanced power point presentation
 
23rd PITA AGM and Conference: DNS Security - A holistic view
23rd PITA AGM and Conference: DNS Security - A holistic view 23rd PITA AGM and Conference: DNS Security - A holistic view
23rd PITA AGM and Conference: DNS Security - A holistic view
 
Fundamentals
FundamentalsFundamentals
Fundamentals
 

Plus de Bibekananada Jena

6421 b Module-05
6421 b Module-056421 b Module-05
6421 b Module-05
Bibekananada Jena
 

Plus de Bibekananada Jena (8)

6421 b Module-14
6421 b Module-146421 b Module-14
6421 b Module-14
 
6421 b Module-09
6421 b Module-096421 b Module-09
6421 b Module-09
 
6421 b Module-08
6421 b Module-086421 b Module-08
6421 b Module-08
 
6421 b Module-07
6421 b Module-076421 b Module-07
6421 b Module-07
 
6421 b Module-06
6421 b Module-066421 b Module-06
6421 b Module-06
 
6421 b Module-05
6421 b Module-056421 b Module-05
6421 b Module-05
 
6421 b Module-04
6421 b Module-046421 b Module-04
6421 b Module-04
 
6421 b Module-01 Planning and Configuring IPv4
6421 b Module-01 Planning and Configuring IPv46421 b Module-01 Planning and Configuring IPv4
6421 b Module-01 Planning and Configuring IPv4
 

Dernier

1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
heathfieldcps1
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
PECB
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
kauryashika82
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdf
SanaAli374401
 

Dernier (20)

1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdf
 

6421 b Module-03

  • 2. Module Overview • Installing the DNS Server Role • Configuring the DNS Server Role • Configuring DNS Zones • Configuring DNS Zone Transfers • Managing and Troubleshooting DNS
  • 3. Lesson 1: Installing the DNS Server Role • Overview of the Domain Name System Role • Overview of the DNS Namespace • DNS Improvements for Windows Server 2008 • DNS Improvements for Windows Server 2008 R2 • Demonstration: How to Install the DNS Server Role • Considerations for Deploying the DNS Server Role
  • 4. Overview of the Domain Name System Role Domain Name System is a hierarchical distributed database • DNS is the foundation of the Internet naming scheme • DNS supports accessing resources by using alphanumeric names • InterNIC is responsible for managing the domain namespace • DNS was created to support the Internet’s growing number of hosts
  • 5. Overview of the DNS Namespace Root Domain Subdomain Second-Level Domain Top-Level Domain FQDN: SERVER1.sales.south.contoso.com south contoso com sales west east orgnet Host: SERVER1
  • 6. DNS Improvements for Windows Server 2008 New or enhanced features in the Windows Server 2008 version of DNS include: • Background zone loading • IP version 6 support • Support for read-only domain controllers • Global single names • Global query block list
  • 7. DNS Improvements for Windows Server 2008 R2 New or enhanced features in the Windows Server 2008 R2 version of DNS include: • DNS Security Extensions • DNS Devolution • DNS Cache Locking • DNS Socket Pool • Name Resolution Policy Table
  • 8. Demonstration: How to Install the DNS Server Role This demonstration shows how to install the DNS Server role
  • 9. Considerations for Deploying the DNS Server Role Subnet 1 Subnet 2 DNS Server DNS Zone DNS Client DNS Client Subnet 3 DNS Server DNS Zone DNS Client
  • 10. Lesson 2: Configuring the DNS Server Role • What Are the Components of a DNS Solution? • DNS Resource Records • What Are Root Hints? • What Are DNS Queries? • What Is Forwarding? • How DNS Server Caching Works • Demonstration: How to Configure the DNS Server Role
  • 11. What Are the Components of a DNS Solution? DNS Servers on the InternetDNS ServersDNS Resolvers Root “.” .com .edu Resource Record Resource Record
  • 12. DNS resource records include: • SOA: Start of Authority • A: Host Record • CNAME: Alias Record • MX: Mail Exchange Record • SRV: Service Resources • NS: Name Servers • AAAA: IPv6 DNS Record DNS Resource RecordsDNS Resource Records
  • 13. What Are Root Hints? Root hints contain the IP addresses for DNS root servers microsoft DNS Servers DNS Server Root (.) Servers com Client Root Hints
  • 14. What Are DNS Queries? DNS Client mail1.contoso.com 172.16.64.11 A recursive query is sent to a DNS server and requires a complete answer Database Local DNS Server An iterative query directed to a DNS server may be answered with a referral to another DNS server Client Server Local DNS Server Root Hint (.) .com Iterative Query Ask .com Contoso.com • Queries are recursive or iterative • DNS clients and DNS servers initiate queries • DNS servers are authoritative or nonauthoritative for a namespace • An authoritative DNS server for the namespace will either: • Return the requested IP address • Return an authoritative “No” • A nonauthoritative DNS server for the namespace will either: • Check its cache • Use forwarders • Use root hints A query is a request for name resolution and is directed to a DNS server
  • 15. What Is Forwarding? ISP DNS All other DNS domains Local DNS Contoso.com DNS Conditional forwarding forwards requests using a domain name condition Client Computer A forwarder is a DNS server designated to resolve external or offsite DNS domain names contoso.com Root Hint (.) .com Iterative Query Ask .com Forwarder Local DNS Server Client Server
  • 16. Where’s ServerA? ServerA is at 192.168.8.44 Where’s ServerA? ServerA is at 192.168.8.44 How DNS Server Caching Works Client1 Client2 ServerA DNS server cache Host name IP address TTL ServerA.contoso.com 192.168.8.44 28 seconds
  • 17. Demonstration: How to Configure the DNS Server Role This demonstration shows how to: • Configure DNS server properties • Configure conditional forwarding • Clear the DNS cache
  • 18. Lesson 3: Configuring DNS Zones • What Is a DNS Zone? • What Are the DNS Zone Types? • What Are Forward and Reverse Lookup Zones? • What are Stub Zones? • Demonstration: How to Create Zones • DNS Zone Delegation
  • 19. What Is a DNS Zone? “.” .com microsoft.com zone microsoft.com domain Internet example.microsoft.com zone DNS root domain Zone database Zone database example.microsoft.com www.example.microsoft.com ftp.example.microsoft.com microsoft.com www.microsoft.com ftp.microsoft.com example.microsoft.com
  • 20. What Are the DNS Zone Types? Zones Description Primary Read/write copy of a DNS database Secondary Read-only copy of a DNS database Stub Copy of a zone that contains only records used to locate name servers Active Directory integrated Zone data is stored in Active Directory rather than in zone files
  • 21. DNS Client2 DNS Client3 What Are Forward and Reverse Lookup Zones? Namespace: training.contoso.com DNS Client1 DNS Server Authorized for training Forward zone Training DNS Client1 192.168.2.45 DNS Client2 192.168.2.46 DNS Client3 192.168.2.47 Reverse zone 1.168.192.in- addr.arpa 192.168.2.45 DNS Client1 192.168.2.46 DNS Client2 192.168.2.47 DNS Client3 DNS Client2 = ? 192.168.2.46 = ?
  • 22. With a stub zone defined, the location of the na.fabrikam.com zone is known without querying multiple DNS servers Contoso.com (Root domain) na.contoso.com sa.contoso.com ny.na.contoso.com rio.sa.contoso.com DNS server DNS server DNS server DNS server DNS server fabrikam.com DNS server DNS server na.fabrikam.com Without stub zones, the ny.na.contoso.com server must query several servers to find the server that hosts the na.fabrikam.com zone Contoso.com (Root domain) na.contoso.com sa.contoso.com ny.na.contoso.com rio.sa.contoso.com DNS server DNS server DNS server DNS server DNS server fabrikam.com DNS server DNS server na.fabrikam.com What Are Stub Zones?
  • 23. Demonstration: How to Create Zones This demonstration shows how to: • Create a reverse lookup zone • Create a forward lookup zone
  • 24. DNS Zone Delegation Training.contoso.com Sales.contoso.com contoso.com
  • 25. Lesson 4: Configuring DNS Zone Transfers • What Is a DNS Zone Transfer? • Configuring Zone Transfer Security • Demonstration: How to Configure DNS Zone Transfers
  • 26. What Is a DNS Zone Transfer? A DNS zone transfer is the synchronization of authoritative DNS zone data between DNS servers SOA query for a zone SOA query answered IXFR or AXFR query for a zone IXFR or AXFR query answered (zone transferred) 1 2 3 4 Secondary server Primary and Master server
  • 27. Configuring Zone Transfer Security Primary Zone Secondary Zone • Encrypt zone transfer traffic • Consider using Active Directory-integrated zones • Restrict zone transfer to specified servers
  • 28. This demonstration shows how to: • Enable DNS zone transfers • Update the secondary zone from the master server • Update the primary zone and verify the change on the secondary zone Demonstration: How to Configure Zone Transfers
  • 29. Lesson 5: Managing and Troubleshooting DNS • What Is Time to Live, Aging, and Scavenging? • Demonstration: How to Manage DNS Records • Tools That Identify Problems With DNS • Demonstration: How to Test the DNS Server Configuration • Monitoring DNS Using the DNS Event Log • Monitoring DNS Using Debug Logging
  • 30. What Is Time to Live, Aging, and Scavenging? Feature Description Time to Live (TTL) Indicates how long a DNS record will remain valid Aging Occurs when records that have been inserted into the DNS server reach their expiration and are removed Scavenging Performs DNS server resource record grooming for old records in DNS
  • 31. Demonstration: How to Manage DNS Records This demonstration shows how to: • Configure TTL • Enable and configure scavenging and aging
  • 32. Tools That Identify Problems With DNS Tool Used to: Nslookup Troubleshoot DNS problems Dnscmd Edit the DNS configuration Dnslint Diagnose common DNS issues Ipconfig Display and clear DNS resolver cache Monitoring tab Perform queries against server
  • 33. Demonstration: How to Test the DNS Server Configuration This demonstration shows how to: • Capture DNS network traffic • Filter and analyze captured traffic • Use NSLookup.exe to test DNS
  • 34. Monitoring DNS Using the DNS Event Log • Monitor DNS events in the event log to: • Monitor zone transfer information • Monitor computer events
  • 35. Monitoring DNS Using Debug Logging • Enable DNS debug logging to view granular verbose information about DNS activities
  • 36. Lab: Configuring and Troubleshooting DNS • Exercise 1: Selecting a DNS configuration • Exercise 2: Deploying and configuring DNS • Exercise 3: Troubleshooting DNS Estimated time: 75 minutes Logon information Virtual machines 6421B-NYC-DC1 6421B-NYC-SVR1 6421B-NYC-CL1 User name ContosoAdministrator Password Pa$$w0rd
  • 37. Lab Scenario Contoso is planning to improve their DNS infrastructure due to complaints from users about poor performance. In addition, Contoso is partnering with A Datum and name resolution must be optimized between these two organizations. Your task is to plan and implement the required changes.
  • 38. Lab Review • In the lab, you were required to deploy a secondary zone because no additional domain controllers were going to be deployed. If this condition changed, that is, NYC-SVR1 was a domain controller, how would that change your implementation plan?
  • 39. Module Review and Takeaways • Review Questions • Tools