SlideShare uma empresa Scribd logo
1 de 32
Microsoft®
Official Course
Module 7
Implementing DNS
Module Overview
• Name Resolution for Windows Clients and Servers
• Installing a DNS Server
• Managing DNS Zones
Lesson 1: Name Resolution for Windows Clients and Servers
• What Are the Computer Names Assigned to
Computers?
• What Is DNS?
• DNS Zones and Records
• How Internet DNS Names Are Resolved
• What Is Split DNS?
• What Is Link-local Multicast Name Resolution?
• How a Client Resolves a Name
• Troubleshooting Name Resolution
• Demonstration: Troubleshooting Name Resolution
What Are the Computer Names Assigned to Computers?
A hostname is a computer name that is added to a domain name
and top level to make a fully qualified domain name (FQDN)
Hostname
AcctDirPC
Domain
adatum
Top level
com
Fully qualified domain name = AcctDirPC.adatum.com
NetBIOS names are rarely used and are being deprecated in
Windows operating systems
What Is DNS?
DNS can be used to:
• Resolve host names to IP addresses
• Locate domain controllers and global catalog
servers
• Resolve IP addresses to host names
• Locate mail servers during email delivery
DNS Zones and Records
A DNS zone is a specific portion of DNS namespace
that contains DNS records
Zone types:
• Forward lookup zone
• Reverse lookup zone
Resource records in forward lookup zones
include:
• A, MX, SRV, NS, SOA, and CNAME
Resource records in reverse lookup zones include:
• PTR
How Internet DNS Names Are Resolved
.root DNS
Microsoft.com DNS
.com DNS
What is the IP address of
www.microsoft.com?
1
2
3
4
Workstation
Local DNS Server
5
The IP address is
207.46.230.219
What Is Split DNS?
• External ADI DNS servers host only records that are
resolved from the outside: mail and web server
• Internal DNS servers host domain computer records,
plus mail and web server in a perimeter subnet
Internal
domain
servers and
computers
Internal
Active Directory-
integrated-DNS
server
External
DNS Server,
mail server, and
web server
1 2 3
What Is Link-local Multicast Name Resolution?
LLMNR is an additional method for name
resolution that does not use DNS or WINS
• LLMNR is designed for IPv6
• Works only on Windows Vista, Windows Server
2008, and all newer Windows operating systems
• Network Discovery must be enabled
• Can be controlled via Group Policy
How a Client Resolves a Name
NetBIOS Name
Cache
WINS Server
Broadcast
DNS Resolver
Cache/Hosts file
content
Local Host
Name
LMHosts File
DNS Server
1
2
3
LLMNR
45
6
7
8
Troubleshooting Name Resolution
A new Windows PowerShell DNS module with numerous
cmdlets was introduced with Windows Server 2012
• More cmdlets were added with Windows Server 2012 R2
Command-line tools to troubleshoot configuration issues:
• Nslookup
• DNSCmd
• Dnslint
• Ipconfig
The troubleshooting process:
1. Identify client DNS server with nslookup or
Resolve-DnsName
2. Communicate via ping
3. Use nslookup to verify records
Demonstration: Troubleshooting Name Resolution
In this demonstration, you will see how to:
• Use Windows PowerShell cmdlets to
troubleshoot DNS
• Use command-line tools to troubleshoot DNS
Lesson 2: Installing a DNS Server
• What Are the Components of a DNS Solution?
• What Are Root Hints?
• What Are DNS Queries?
• What Is Forwarding?
• How DNS Server Caching Works
• How to Install the DNS Server Role
• Demonstration: Installing the DNS Server Role
What Are the Components of a DNS Solution?
DNS Servers on the InternetDNS ServersDNS Resolvers
Resource Record
Resource Record
Root “.”
.com
.edu
What Are Root Hints?
microsoft
DNS Servers
DNS
Server
com
Client
Root
Hints
Root (.) Servers
Root hints contain the IP addresses for
DNS root servers
What Are DNS Queries?
• Queries are recursive or iterative
• DNS clients and DNS servers initiate queries
• DNS servers are authoritative or non-authoritative for a
namespace
• An authoritative DNS server for the namespace either:
 Returns the requested IP address
 Returns an authoritative “No, that name does not exist”
• A non-authoritative DNS server for the namespace either:
 Checks its cache
 Uses forwarders
 Uses 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
Local DNS server
What Are DNS Queries?
Client
Local
DNS server
Recursive query
mail1.contoso.com
172.16.64.11
Root hint (.)
.com
contoso.com
Iterative query
Ask .com
Iterative query
Authoritative response
Iterative query
Ask contoso.com
What Is Forwarding?
Client
Recursive query
mail1.contoso.com
Root hint (.)
.com
contoso.com
Iterative query
Ask .com
Iterative query
Authoritative response
Iterative query
Ask contoso.com
Local
DNS server
131.107.0.11
Forwarder
Recursive query
131.107.0.11
A forwarder is a DNS server designated to resolve
external or offsite DNS domain names
What Is Forwarding?
Conditional forwarding forwards requests using a
domain name condition
Client
Query for
www.contoso.com Local
DNS server
contoso.com
DNS
ISP DNS
contoso.com
All Other DNS Domains
Client1
Client2
ServerA
Where is
ServerA?
ServerA is at
131.107.0.44
Where is
ServerA?
ServerA is at
131.107.0.44
How DNS Server Caching Works
DNS server cache
Host name IP address TTL
ServerA.contoso.com 131.107.0.44 28 seconds
How to Install the DNS Server Role
DNS server installation methods:
• Server Manager
• Active Directory Domain Services Installation
Wizard
Tools available to manage DNS Server:
• DNS Manager snap-in
• Server Manager
• DNS Manager console (dnsmgmt.msc)
• DNSCmd command-line tool
• Windows Powershell
• Remote Server Administrative Tools
Demonstration: Installing the DNS Server Role
In this demonstration, you will see how to:
• Install a second DNS server
• Create a forward lookup zone by using
Windows PowerShell
• Configure forwarding
Lesson 3: Managing DNS Zones
• What Are DNS Zone Types?
• What Are Dynamic Updates?
• What Are Active Directory–Integrated Zones?
• Demonstration: Creating an Active Directory–
Integrated Zone
What Are 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 AD DS rather
than in zone files
What Are Dynamic Updates?
1. The client sends an SOA query
2. The DNS server returns an SOA
resource record
3. The client sends dynamic update
request(s) to identify the primary
DNS server
5. The DNS server responds that it
can perform an update
6. The client sends unsecured
update to the DNS server
7. If the zone permits only secure
updates, the update is refused
8. The client sends a secured
update to the DNS server
Resource
Records
DNS
Server
1 2 3 4 5 6 7
Client
What Are Active Directory–Integrated Zones?
Benefits of an Active Directory–integrated zone:
• Allows multimaster writes to zone
• Replicates DNS zone information by using AD DS
replication
• Leverages efficient replication topology
• Uses efficient incremental updates for Active Directory
replication processes
• Enables secure dynamic updates
• Delegates zones, domains, resource records for increased
security
Examples of contoso.com zones include:
• hqdc01
• filesvr01
• desktop101
Demonstration: Creating an Active Directory–
Integrated Zone
In this demonstration, you will see how to:
• Promote a server as a domain controller
• Create an Active Directory–integrated zone
• Create a record
• Verify replication to a second DNS server
Lab: Implementing DNS
• Exercise 1: Installing and Configuring DNS
• Exercise 2: Creating Host Records in DNS
• Exercise 3: Managing the DNS Server Cache
Logon Information
Virtual machines 20410C-LON-DC1
20410C-LON-SVR1
20410C-LON-CL1
User name AdatumAdministrator
Password Pa$$w0rd
Estimated Time: 40 minutes
Lab Scenario
Your manager has asked you to configure the
domain controller in the branch office as a DNS
server.
You have also been asked to create some new
host records to support a new app that is being
installed.
Finally, you need to configure forwarding on the
DNS server in the branch office to support
Internet name resolution.
Lab Review
• Can you install the DNS server role on a server
that is not a domain controller? If yes, are there
any limitations?
• What is the most common way to carry out
Internet name resolution on a local DNS?
• How can you browse the content of the DNS
resolver cache on a DNS server?
Module Review and Takeaways
• Review Questions
• Best Practices
• Common Issues and Troubleshooting Tips
• Tools

Mais conteúdo relacionado

Mais procurados

Windows Server 2012 Managing Active Directory Domain
Windows Server 2012 Managing  Active Directory DomainWindows Server 2012 Managing  Active Directory Domain
Windows Server 2012 Managing Active Directory DomainNapoleon NV
 
Ad, dns, dhcp, file server
Ad, dns, dhcp, file serverAd, dns, dhcp, file server
Ad, dns, dhcp, file serverTola LENG
 
Understanding the Windows Server Administration Fundamentals (Part-2)
Understanding the Windows Server Administration Fundamentals (Part-2)Understanding the Windows Server Administration Fundamentals (Part-2)
Understanding the Windows Server Administration Fundamentals (Part-2)Tuan Yang
 
Windows Server 2012
Windows Server 2012Windows Server 2012
Windows Server 2012anilinvns
 
Resource Monitoring and management
Resource Monitoring and management  Resource Monitoring and management
Resource Monitoring and management Duressa Teshome
 
Day 1 INTRODUCTION TO IOS AND CISCO ROUTERS
Day 1 INTRODUCTION TO IOS AND CISCO ROUTERSDay 1 INTRODUCTION TO IOS AND CISCO ROUTERS
Day 1 INTRODUCTION TO IOS AND CISCO ROUTERSanilinvns
 
Windows Server 2016 First Look (Part 1)
Windows Server 2016 First Look (Part 1)Windows Server 2016 First Look (Part 1)
Windows Server 2016 First Look (Part 1)Tuan Yang
 
CloudStack - Top 5 Technical Issues and Troubleshooting
CloudStack - Top 5 Technical Issues and TroubleshootingCloudStack - Top 5 Technical Issues and Troubleshooting
CloudStack - Top 5 Technical Issues and TroubleshootingShapeBlue
 
Basics about IP address, DNS and DHCP.
Basics about IP address, DNS and DHCP.Basics about IP address, DNS and DHCP.
Basics about IP address, DNS and DHCP.abhishek bhandare
 
Microsoft Windows Server 2022 Overview
Microsoft Windows Server 2022 OverviewMicrosoft Windows Server 2022 Overview
Microsoft Windows Server 2022 OverviewDavid J Rosenthal
 
13 DHCP Configuration in Linux
13 DHCP Configuration in Linux13 DHCP Configuration in Linux
13 DHCP Configuration in LinuxHameda Hurmat
 
1 introduction to windows server 2016
1  introduction to windows server 20161  introduction to windows server 2016
1 introduction to windows server 2016Hameda Hurmat
 
History of Windows Server
History of Windows ServerHistory of Windows Server
History of Windows Serversundas Shabbir
 
Network monitoring tools
Network monitoring toolsNetwork monitoring tools
Network monitoring toolsQaswarBosan
 
Ip tunnelling and_vpn
Ip tunnelling and_vpnIp tunnelling and_vpn
Ip tunnelling and_vpnRajesh Porwal
 

Mais procurados (20)

Windows Server 2012 Managing Active Directory Domain
Windows Server 2012 Managing  Active Directory DomainWindows Server 2012 Managing  Active Directory Domain
Windows Server 2012 Managing Active Directory Domain
 
Ad, dns, dhcp, file server
Ad, dns, dhcp, file serverAd, dns, dhcp, file server
Ad, dns, dhcp, file server
 
Understanding the Windows Server Administration Fundamentals (Part-2)
Understanding the Windows Server Administration Fundamentals (Part-2)Understanding the Windows Server Administration Fundamentals (Part-2)
Understanding the Windows Server Administration Fundamentals (Part-2)
 
Windows Server 2012
Windows Server 2012Windows Server 2012
Windows Server 2012
 
Resource Monitoring and management
Resource Monitoring and management  Resource Monitoring and management
Resource Monitoring and management
 
Dhcp
DhcpDhcp
Dhcp
 
Dc domain controller
Dc domain controllerDc domain controller
Dc domain controller
 
Day 1 INTRODUCTION TO IOS AND CISCO ROUTERS
Day 1 INTRODUCTION TO IOS AND CISCO ROUTERSDay 1 INTRODUCTION TO IOS AND CISCO ROUTERS
Day 1 INTRODUCTION TO IOS AND CISCO ROUTERS
 
Windows Server 2016 First Look (Part 1)
Windows Server 2016 First Look (Part 1)Windows Server 2016 First Look (Part 1)
Windows Server 2016 First Look (Part 1)
 
CCNA presentation.
CCNA presentation.CCNA presentation.
CCNA presentation.
 
CloudStack - Top 5 Technical Issues and Troubleshooting
CloudStack - Top 5 Technical Issues and TroubleshootingCloudStack - Top 5 Technical Issues and Troubleshooting
CloudStack - Top 5 Technical Issues and Troubleshooting
 
Basics about IP address, DNS and DHCP.
Basics about IP address, DNS and DHCP.Basics about IP address, DNS and DHCP.
Basics about IP address, DNS and DHCP.
 
Vlan
VlanVlan
Vlan
 
Microsoft Windows Server 2022 Overview
Microsoft Windows Server 2022 OverviewMicrosoft Windows Server 2022 Overview
Microsoft Windows Server 2022 Overview
 
13 DHCP Configuration in Linux
13 DHCP Configuration in Linux13 DHCP Configuration in Linux
13 DHCP Configuration in Linux
 
1 introduction to windows server 2016
1  introduction to windows server 20161  introduction to windows server 2016
1 introduction to windows server 2016
 
History of Windows Server
History of Windows ServerHistory of Windows Server
History of Windows Server
 
Network monitoring tools
Network monitoring toolsNetwork monitoring tools
Network monitoring tools
 
Ip tunnelling and_vpn
Ip tunnelling and_vpnIp tunnelling and_vpn
Ip tunnelling and_vpn
 
Ch03 system administration
Ch03 system administration Ch03 system administration
Ch03 system administration
 

Destaque

Microsoft Offical Course 20410C_08
Microsoft Offical Course 20410C_08Microsoft Offical Course 20410C_08
Microsoft Offical Course 20410C_08gameaxt
 
Microsoft Offical Course 20410C_10
Microsoft Offical Course 20410C_10Microsoft Offical Course 20410C_10
Microsoft Offical Course 20410C_10gameaxt
 
Microsoft Offical Course 20410C_04
Microsoft Offical Course 20410C_04Microsoft Offical Course 20410C_04
Microsoft Offical Course 20410C_04gameaxt
 
Microsoft Offical Course 20410C_12
Microsoft Offical Course 20410C_12Microsoft Offical Course 20410C_12
Microsoft Offical Course 20410C_12gameaxt
 
Microsoft Offical Course 20410C_13
Microsoft Offical Course 20410C_13Microsoft Offical Course 20410C_13
Microsoft Offical Course 20410C_13gameaxt
 
Microsoft Offical Course 20410C_05
Microsoft Offical Course 20410C_05Microsoft Offical Course 20410C_05
Microsoft Offical Course 20410C_05gameaxt
 
20411 d enu-trainerhandbook
20411 d enu-trainerhandbook20411 d enu-trainerhandbook
20411 d enu-trainerhandbookrobert mota
 
Paradigmas De Engenharia De Software
Paradigmas De Engenharia De SoftwareParadigmas De Engenharia De Software
Paradigmas De Engenharia De SoftwareRobson Silva Espig
 
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 roleLuis Garay
 

Destaque (10)

Microsoft Offical Course 20410C_08
Microsoft Offical Course 20410C_08Microsoft Offical Course 20410C_08
Microsoft Offical Course 20410C_08
 
Microsoft Offical Course 20410C_10
Microsoft Offical Course 20410C_10Microsoft Offical Course 20410C_10
Microsoft Offical Course 20410C_10
 
Microsoft Offical Course 20410C_04
Microsoft Offical Course 20410C_04Microsoft Offical Course 20410C_04
Microsoft Offical Course 20410C_04
 
Microsoft Offical Course 20410C_12
Microsoft Offical Course 20410C_12Microsoft Offical Course 20410C_12
Microsoft Offical Course 20410C_12
 
20410 b 00
20410 b 0020410 b 00
20410 b 00
 
Microsoft Offical Course 20410C_13
Microsoft Offical Course 20410C_13Microsoft Offical Course 20410C_13
Microsoft Offical Course 20410C_13
 
Microsoft Offical Course 20410C_05
Microsoft Offical Course 20410C_05Microsoft Offical Course 20410C_05
Microsoft Offical Course 20410C_05
 
20411 d enu-trainerhandbook
20411 d enu-trainerhandbook20411 d enu-trainerhandbook
20411 d enu-trainerhandbook
 
Paradigmas De Engenharia De Software
Paradigmas De Engenharia De SoftwareParadigmas De Engenharia De Software
Paradigmas De Engenharia De Software
 
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
 

Semelhante a Microsoft Offical Course 20410C_07

Implementing Domain Name
Implementing Domain NameImplementing Domain Name
Implementing Domain NameNapoleon NV
 
02 configuring and-troubleshooting-dns
02 configuring and-troubleshooting-dns02 configuring and-troubleshooting-dns
02 configuring and-troubleshooting-dnsapshirame
 
Pmw2 k3ni 1-2b
Pmw2 k3ni 1-2bPmw2 k3ni 1-2b
Pmw2 k3ni 1-2bhariclant1
 
active-directory-domain-services
active-directory-domain-servicesactive-directory-domain-services
active-directory-domain-services202066
 
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 presentationrituchouhan1508
 
Pmw2 k3ni 1-3a
Pmw2 k3ni 1-3aPmw2 k3ni 1-3a
Pmw2 k3ni 1-3ahariclant1
 
Microsoft Windows 2000 DNS and UNIX BIND DNS Interoperability
Microsoft Windows 2000 DNS and UNIX BIND DNS InteroperabilityMicrosoft Windows 2000 DNS and UNIX BIND DNS Interoperability
Microsoft Windows 2000 DNS and UNIX BIND DNS Interoperabilitywebhostingguy
 
Session 4 Tp 4
Session 4 Tp 4Session 4 Tp 4
Session 4 Tp 4githe26200
 
Networking Chapter 10
Networking Chapter 10Networking Chapter 10
Networking Chapter 10mlrbrown
 
Fundamentals
FundamentalsFundamentals
Fundamentalsvamsi1986
 
2-DNS Server.ppt
2-DNS Server.ppt2-DNS Server.ppt
2-DNS Server.pptRaj Kumar
 

Semelhante a Microsoft Offical Course 20410C_07 (20)

Implementing Domain Name
Implementing Domain NameImplementing Domain Name
Implementing Domain Name
 
6421 b Module-03
6421 b Module-036421 b Module-03
6421 b Module-03
 
02 configuring and-troubleshooting-dns
02 configuring and-troubleshooting-dns02 configuring and-troubleshooting-dns
02 configuring and-troubleshooting-dns
 
6425 b 10
6425 b 106425 b 10
6425 b 10
 
Pmw2 k3ni 1-2b
Pmw2 k3ni 1-2bPmw2 k3ni 1-2b
Pmw2 k3ni 1-2b
 
active-directory-domain-services
active-directory-domain-servicesactive-directory-domain-services
active-directory-domain-services
 
vpn-radius-5.ppt
vpn-radius-5.pptvpn-radius-5.ppt
vpn-radius-5.ppt
 
6421 b Module-11
6421 b Module-116421 b Module-11
6421 b Module-11
 
MCSA 70-412 Chapter 01
MCSA 70-412 Chapter 01MCSA 70-412 Chapter 01
MCSA 70-412 Chapter 01
 
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
 
Pmw2 k3ni 1-3a
Pmw2 k3ni 1-3aPmw2 k3ni 1-3a
Pmw2 k3ni 1-3a
 
2 technical-dns-workshop-day1
2 technical-dns-workshop-day12 technical-dns-workshop-day1
2 technical-dns-workshop-day1
 
Microsoft Windows 2000 DNS and UNIX BIND DNS Interoperability
Microsoft Windows 2000 DNS and UNIX BIND DNS InteroperabilityMicrosoft Windows 2000 DNS and UNIX BIND DNS Interoperability
Microsoft Windows 2000 DNS and UNIX BIND DNS Interoperability
 
Session 4 Tp 4
Session 4 Tp 4Session 4 Tp 4
Session 4 Tp 4
 
Networking Chapter 10
Networking Chapter 10Networking Chapter 10
Networking Chapter 10
 
Fundamentals
FundamentalsFundamentals
Fundamentals
 
Domain Name Service
Domain Name ServiceDomain Name Service
Domain Name Service
 
2-DNS Server.ppt
2-DNS Server.ppt2-DNS Server.ppt
2-DNS Server.ppt
 
13 dns
13 dns13 dns
13 dns
 
teste
testeteste
teste
 

Último

Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseAnaAcapella
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsKarakKing
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin ClassesCeline George
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxEsquimalt MFRC
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Jisc
 
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 17Celine George
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxcallscotland1987
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structuredhanjurrannsibayan2
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...Poonam Aher Patil
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdfVishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdfssuserdda66b
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxJisc
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...pradhanghanshyam7136
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - Englishneillewis46
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
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.pptxAreebaZafar22
 

Último (20)

Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
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
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptx
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdfVishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdf
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
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
 

Microsoft Offical Course 20410C_07

  • 2. Module Overview • Name Resolution for Windows Clients and Servers • Installing a DNS Server • Managing DNS Zones
  • 3. Lesson 1: Name Resolution for Windows Clients and Servers • What Are the Computer Names Assigned to Computers? • What Is DNS? • DNS Zones and Records • How Internet DNS Names Are Resolved • What Is Split DNS? • What Is Link-local Multicast Name Resolution? • How a Client Resolves a Name • Troubleshooting Name Resolution • Demonstration: Troubleshooting Name Resolution
  • 4. What Are the Computer Names Assigned to Computers? A hostname is a computer name that is added to a domain name and top level to make a fully qualified domain name (FQDN) Hostname AcctDirPC Domain adatum Top level com Fully qualified domain name = AcctDirPC.adatum.com NetBIOS names are rarely used and are being deprecated in Windows operating systems
  • 5. What Is DNS? DNS can be used to: • Resolve host names to IP addresses • Locate domain controllers and global catalog servers • Resolve IP addresses to host names • Locate mail servers during email delivery
  • 6. DNS Zones and Records A DNS zone is a specific portion of DNS namespace that contains DNS records Zone types: • Forward lookup zone • Reverse lookup zone Resource records in forward lookup zones include: • A, MX, SRV, NS, SOA, and CNAME Resource records in reverse lookup zones include: • PTR
  • 7. How Internet DNS Names Are Resolved .root DNS Microsoft.com DNS .com DNS What is the IP address of www.microsoft.com? 1 2 3 4 Workstation Local DNS Server 5 The IP address is 207.46.230.219
  • 8. What Is Split DNS? • External ADI DNS servers host only records that are resolved from the outside: mail and web server • Internal DNS servers host domain computer records, plus mail and web server in a perimeter subnet Internal domain servers and computers Internal Active Directory- integrated-DNS server External DNS Server, mail server, and web server 1 2 3
  • 9. What Is Link-local Multicast Name Resolution? LLMNR is an additional method for name resolution that does not use DNS or WINS • LLMNR is designed for IPv6 • Works only on Windows Vista, Windows Server 2008, and all newer Windows operating systems • Network Discovery must be enabled • Can be controlled via Group Policy
  • 10. How a Client Resolves a Name NetBIOS Name Cache WINS Server Broadcast DNS Resolver Cache/Hosts file content Local Host Name LMHosts File DNS Server 1 2 3 LLMNR 45 6 7 8
  • 11. Troubleshooting Name Resolution A new Windows PowerShell DNS module with numerous cmdlets was introduced with Windows Server 2012 • More cmdlets were added with Windows Server 2012 R2 Command-line tools to troubleshoot configuration issues: • Nslookup • DNSCmd • Dnslint • Ipconfig The troubleshooting process: 1. Identify client DNS server with nslookup or Resolve-DnsName 2. Communicate via ping 3. Use nslookup to verify records
  • 12. Demonstration: Troubleshooting Name Resolution In this demonstration, you will see how to: • Use Windows PowerShell cmdlets to troubleshoot DNS • Use command-line tools to troubleshoot DNS
  • 13. Lesson 2: Installing a DNS Server • What Are the Components of a DNS Solution? • What Are Root Hints? • What Are DNS Queries? • What Is Forwarding? • How DNS Server Caching Works • How to Install the DNS Server Role • Demonstration: Installing the DNS Server Role
  • 14. What Are the Components of a DNS Solution? DNS Servers on the InternetDNS ServersDNS Resolvers Resource Record Resource Record Root “.” .com .edu
  • 15. What Are Root Hints? microsoft DNS Servers DNS Server com Client Root Hints Root (.) Servers Root hints contain the IP addresses for DNS root servers
  • 16. What Are DNS Queries? • Queries are recursive or iterative • DNS clients and DNS servers initiate queries • DNS servers are authoritative or non-authoritative for a namespace • An authoritative DNS server for the namespace either:  Returns the requested IP address  Returns an authoritative “No, that name does not exist” • A non-authoritative DNS server for the namespace either:  Checks its cache  Uses forwarders  Uses root hints
  • 17. 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 Local DNS server
  • 18. What Are DNS Queries? Client Local DNS server Recursive query mail1.contoso.com 172.16.64.11 Root hint (.) .com contoso.com Iterative query Ask .com Iterative query Authoritative response Iterative query Ask contoso.com
  • 19. What Is Forwarding? Client Recursive query mail1.contoso.com Root hint (.) .com contoso.com Iterative query Ask .com Iterative query Authoritative response Iterative query Ask contoso.com Local DNS server 131.107.0.11 Forwarder Recursive query 131.107.0.11 A forwarder is a DNS server designated to resolve external or offsite DNS domain names
  • 20. What Is Forwarding? Conditional forwarding forwards requests using a domain name condition Client Query for www.contoso.com Local DNS server contoso.com DNS ISP DNS contoso.com All Other DNS Domains
  • 21. Client1 Client2 ServerA Where is ServerA? ServerA is at 131.107.0.44 Where is ServerA? ServerA is at 131.107.0.44 How DNS Server Caching Works DNS server cache Host name IP address TTL ServerA.contoso.com 131.107.0.44 28 seconds
  • 22. How to Install the DNS Server Role DNS server installation methods: • Server Manager • Active Directory Domain Services Installation Wizard Tools available to manage DNS Server: • DNS Manager snap-in • Server Manager • DNS Manager console (dnsmgmt.msc) • DNSCmd command-line tool • Windows Powershell • Remote Server Administrative Tools
  • 23. Demonstration: Installing the DNS Server Role In this demonstration, you will see how to: • Install a second DNS server • Create a forward lookup zone by using Windows PowerShell • Configure forwarding
  • 24. Lesson 3: Managing DNS Zones • What Are DNS Zone Types? • What Are Dynamic Updates? • What Are Active Directory–Integrated Zones? • Demonstration: Creating an Active Directory– Integrated Zone
  • 25. What Are 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 AD DS rather than in zone files
  • 26. What Are Dynamic Updates? 1. The client sends an SOA query 2. The DNS server returns an SOA resource record 3. The client sends dynamic update request(s) to identify the primary DNS server 5. The DNS server responds that it can perform an update 6. The client sends unsecured update to the DNS server 7. If the zone permits only secure updates, the update is refused 8. The client sends a secured update to the DNS server Resource Records DNS Server 1 2 3 4 5 6 7 Client
  • 27. What Are Active Directory–Integrated Zones? Benefits of an Active Directory–integrated zone: • Allows multimaster writes to zone • Replicates DNS zone information by using AD DS replication • Leverages efficient replication topology • Uses efficient incremental updates for Active Directory replication processes • Enables secure dynamic updates • Delegates zones, domains, resource records for increased security Examples of contoso.com zones include: • hqdc01 • filesvr01 • desktop101
  • 28. Demonstration: Creating an Active Directory– Integrated Zone In this demonstration, you will see how to: • Promote a server as a domain controller • Create an Active Directory–integrated zone • Create a record • Verify replication to a second DNS server
  • 29. Lab: Implementing DNS • Exercise 1: Installing and Configuring DNS • Exercise 2: Creating Host Records in DNS • Exercise 3: Managing the DNS Server Cache Logon Information Virtual machines 20410C-LON-DC1 20410C-LON-SVR1 20410C-LON-CL1 User name AdatumAdministrator Password Pa$$w0rd Estimated Time: 40 minutes
  • 30. Lab Scenario Your manager has asked you to configure the domain controller in the branch office as a DNS server. You have also been asked to create some new host records to support a new app that is being installed. Finally, you need to configure forwarding on the DNS server in the branch office to support Internet name resolution.
  • 31. Lab Review • Can you install the DNS server role on a server that is not a domain controller? If yes, are there any limitations? • What is the most common way to carry out Internet name resolution on a local DNS? • How can you browse the content of the DNS resolver cache on a DNS server?
  • 32. Module Review and Takeaways • Review Questions • Best Practices • Common Issues and Troubleshooting Tips • Tools