Microsoft MVP성태의 닷넷 이야기
Windows: 154. PowerShell - Zone 별로 DNS 레코드 유형 정보 조회 [링크 복사], [링크+제목 복사]
조회: 11970
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 

(시리즈 글이 6개 있습니다.)
.NET Framework: 221. Cache 영향을 받지 않는 DNS 이름 풀이
; https://www.sysnet.pe.kr/2/0/1069

.NET Framework: 264. 다중 LAN 카드 환경에서 Dns.GetHostAddresses(local)가 반환해 주는 IP의 우선순위는 어떻게 될까요?
; https://www.sysnet.pe.kr/2/0/1169

Windows: 154. PowerShell - Zone 별로 DNS 레코드 유형 정보 조회
; https://www.sysnet.pe.kr/2/0/11795

개발 환경 구성: 434. 존재하지 않는 IP 주소에 대한 Dns.GetHostByAddress/gethostbyaddr/GetNameInfoW 실행이 느리다면?
; https://www.sysnet.pe.kr/2/0/11852

개발 환경 구성: 435. 존재하지 않는 IP 주소에 대한 Dns.GetHostByAddress/gethostbyaddr/GetNameInfoW 실행이 느리다면? - 두 번째 이야기
; https://www.sysnet.pe.kr/2/0/11853

개발 환경 구성: 646. HOSTS 파일 변경 시 Edge 브라우저에 반영하는 방법
; https://www.sysnet.pe.kr/2/0/13089




PowerShell - Zone 별로 DNS 레코드 유형 정보 조회

아래와 같은 글이 있군요. ^^

Extract DNS Records to CSV with PowerShell
; https://chentiangemalc.wordpress.com/2018/10/17/extract-dns-records-to-csv-with-powershell/

github를 통해 공개한 스크립트를 보면,

Get-AllDnsResourceRecords.ps1
; https://github.com/chentiangemalc/PowerShellScripts/blob/master/Get-AllDnsResourceRecords.ps1

[CmdletBinding()]
param(
[Parameter(Position=0)]
[String]$DNSServer)

$Zones = @(Get-DnsServerZone -ComputerName $DNSServer)
$Data = @() 
ForEach ($Zone in $Zones) {
    ($Zone | Get-DnsServerResourceRecord -ComputerName $DNSServer) | `
        Select-Object -Property `
            @{Label="Zone Name";expression={( $Zone.ZoneName )}},`
            DistinguishedName,`
            HostName,`
            RecordClass,`
            RecordType,`
            Timestamp,`
            TimeToLive,`
            @{label="Data";expression={
                $r = $_.RecordData
                switch ($_.RecordType)
                {
                    "A" { $r.IPv4Address.IPAddressToString }
                    "NS" { $r.NameServer }
                    "SOA" { 
                        "ExpireLimit=$($r.ExpireLimit);"+
                        "MinimumTimeToLive=$($r.MinimumTimeToLive);"+
                        "PrimaryServer=$($r.PrimaryServer);"+
                        "RefreshInterval=$($r.RefreshInterval);"+
                        "ResponsiblePerson=$($r.ResponsiblePerson);"+
                        "RetryDelay=$($r.RetryDelay);"+
                        "SerialNumber=$($r.SerialNumber)"

                    }
                    "CNAME" {  $r.HostNameAlias }
                    "SRV"{ 
                        "DomainName=$($r.DomainName);"+
                        "Port=$($r.Port);"+
                        "Priority=$($r.Priority);"+
                        "Weight=$($r.Weight)"
                    }
                    "AAAA" { $r.IPv6Address.IPAddressToString }
                    "PTR" { $r.PtrDomainName } 
                    "MX" {
                        "MailExchange=$($r.MailExchange);"+
                        "Prefreence=$($r.Preference)"
                    }
                    "TXT" { $r.DescriptiveText }
                    Default { "Unsupported Record Type" }
                }}
            }
}

다운로드해 다음과 같이 실행할 수 있습니다.

& "c:\temp\ps_dns.ps1" -DnsServer 8.8.8.8

그런데 실제로 실행해 보면 이런 오류가 발생합니다.

PS C:\temp> & "C:\temp\ps_dns.ps1" -DnsServer 8.8.8.8
Get-DnsServerZone : Failed to enumerate zones from the server 8.8.8.8.
At C:\temp\ps_dns.ps1:44 char:12
+ $Zones = @(Get-DnsServerZone -ComputerName $DNSServer)
+            ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (8.8.8.8:root/Microsoft/...S_DnsServerZone) [Get-DnsServerZone], CimException
    + FullyQualifiedErrorId : WIN32 1722,Get-DnsServerZone

Win32 에러 코드가 1722면 "The RPC server is unavailable"입니다. 그러니까, 해당 글의 예제와는 달리 구글 쪽의 DNS 서버 조회는 할 수 없는 것입니다. (실제로 에러 메시지를 보면 "8.8.8.8:root/Microsoft/...S_DnsServerZone"이라는 마이크로소프트 쪽 Namespace 정보가 나옵니다.)

따라서 위의 명령은 Microsoft DNS 서버의 정보를 알아내는데 사용할 수 있습니다. 아래는 그에 대한 출력 예제입니다.

PS C:\Users> $ScriptBlockContent =
    {
        $myArg = 'mydnsserver'
        C:\temp\ps_dns.ps1 -DNSServer $myArg
    }

PS C:\Users> Invoke-Command -ScriptBlock $ScriptBlockContent

Zone Name         : _msdcs.testad.com
DistinguishedName : DC=@,DC=_msdcs.testad.com,cn=MicrosoftDNS,DC=ForestDnsZones,DC=testad,DC=com
HostName          : @
RecordClass       : IN
RecordType        : NS
Timestamp         :
TimeToLive        : 01:00:00
Data              : testpdc.testad.com.

Zone Name         : _msdcs.testad.com
DistinguishedName : DC=@,DC=_msdcs.testad.com,cn=MicrosoftDNS,DC=ForestDnsZones,DC=testad,DC=com
HostName          : @
RecordClass       : IN
RecordType        : NS
Timestamp         :
TimeToLive        : 01:00:00
Data              : testpdc4.testad.com.

...[생략]...

Zone Name         : testad.com
DistinguishedName : DC=@,DC=testad.com,cn=MicrosoftDNS,DC=DomainDnsZones,DC=testad,DC=com
HostName          : @
RecordClass       : IN
RecordType        : NS
Timestamp         :
TimeToLive        : 01:00:00
Data              : testpdc4.testad.com.

Zone Name         : testad.com
DistinguishedName : DC=@,DC=testad.com,cn=MicrosoftDNS,DC=DomainDnsZones,DC=testad,DC=com
HostName          : @
RecordClass       : IN
RecordType        : NS
Timestamp         :
TimeToLive        : 01:00:00
Data              : testpdc.testad.com.

...[생략]...




참고로, 본문의 스크립트에서 사용한 Get-DnsServerZone 명령어 자체가 실행이 안 되는 경우가 많을 것입니다.

PS C:\Users> Get-DnsServerZone
Get-DnsServerZone : The term 'Get-DnsServerZone' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ Get-DnsServerZone
+ ~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (Get-DnsServerZone:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

이런 경우, dnsserver 모듈을 import 해 보면 다음과 같은 결과가 나옵니다.

PS C:\Users> Import-Module dnsserver
Import-Module : The specified module 'dnsserver' was not loaded because no valid module file was found in any module directory.
At line:1 char:1
+ Import-Module dnsserver
+ ~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ResourceUnavailable: (dnsserver:String) [Import-Module], FileNotFoundException
    + FullyQualifiedErrorId : Modules_ModuleNotFound,Microsoft.PowerShell.Commands.ImportModuleCommand

"Extract DNS Records to CSV with PowerShell" 글의 덧글에 보면 Windows 10과 Server 2016에 내장되어 있다고 하는데 실제로는 DNS 관련 구성 요소가 설치된 경우에만 유효합니다. 설치 방법은, 다음과 같이 "Add Roles and Features Wizard"에서 "Remote Server Administration Tools" / "Role AdministrationTools" 범주에 있는 "DNS Server Tools"를 선택, 설치하면 됩니다.

dns_server_tools_1.png

참고로 윈도우 10에는 이에 해당하는 구성 요소가 없습니다. 대신 별도로 다음의 링크에서 다운로드할 수 있습니다.

Remote Server Administration Tools for Windows 10 
; https://www.microsoft.com/en-us/download/details.aspx?id=45520

주의할 것은, 위의 링크에서 제공하는 RSAT은 Windows 10의 1709, 1803 버전 용입니다. 이번에 릴리스한 1807 버전의 경우 다음의 경고문에 써진 것처럼,

IMPORTANT: Starting with Windows 10 October 2018 Update, RSAT is included as a set of "Features on Demand" in Windows 10 itself. See "Install Instructions" below for details, and "Additional Information" for recommendations and troubleshooting. RSAT lets IT admins manage Windows Server roles and features from a Windows 10 PC.


"Settings" / "Apps & features" / "Manage optional features" 패널에서 "Add a feature" 버튼을 통해 다음과 같이 개별 RSAT 구성 요소를 설치할 수 있습니다.

dns_server_tools_2.png




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]







[최초 등록일: ]
[최종 수정일: 12/19/2018]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 



2019-04-24 01시21분
정성태

... [31]  32  33  34  35  36  37  38  39  40  41  42  43  44  45  ...
NoWriterDateCnt.TitleFile(s)
12845정성태10/6/20218099.NET Framework: 1120. C# - BufferBlock<T> 사용 예제 [5]파일 다운로드1
12844정성태10/3/20216132오류 유형: 764. MSI 설치 시 "... is accessible and not read-only." 오류 메시지
12843정성태10/3/20216592스크립트: 29. 파이썬 - fork 시 기존 클라이언트 소켓 및 스레드의 동작파일 다운로드1
12842정성태10/1/202124809오류 유형: 763. 파이썬 오류 - AttributeError: type object '...' has no attribute '...'
12841정성태10/1/20218378스크립트: 28. 모든 파이썬 프로세스에 올라오는 특별한 파일 - sitecustomize.py
12840정성태9/30/20218431.NET Framework: 1119. Entity Framework의 Join 사용 시 다중 칼럼에 대한 OR 조건 쿼리파일 다운로드1
12839정성태9/15/20219495.NET Framework: 1118. C# 11 - 제네릭 타입의 특성 적용파일 다운로드1
12838정성태9/13/20219146.NET Framework: 1117. C# - Task에 전달한 Action, Func 유형에 따라 달라지는 async/await 비동기 처리 [2]파일 다운로드1
12837정성태9/11/20218089VC++: 151. Golang - fmt.Errorf, errors.Is, errors.As 설명
12836정성태9/10/20217680Linux: 45. 리눅스 - 실행 중인 다른 프로그램의 출력을 확인하는 방법
12835정성태9/7/20218947.NET Framework: 1116. C# 10 - (15) CallerArgumentExpression 특성 추가 [2]파일 다운로드1
12834정성태9/7/20217321오류 유형: 762. Visual Studio 2019 Build Tools - 'C:\Program' is not recognized as an internal or external command, operable program or batch file.
12833정성태9/6/20216771VC++: 150. Golang - TCP client/server echo 예제 코드파일 다운로드1
12832정성태9/6/20217609VC++: 149. Golang - 인터페이스 포인터가 의미 있을까요?
12831정성태9/6/20216151VC++: 148. Golang - 채널에 따른 다중 작업 처리파일 다운로드1
12830정성태9/6/20218373오류 유형: 761. Internet Explorer에서 파일 다운로드 시 "Your current security settings do not allow this file to be downloaded." 오류
12829정성태9/5/202110021.NET Framework: 1115. C# 10 - (14) 구조체 타입에 기본 생성자 정의 가능파일 다운로드1
12828정성태9/4/20218147.NET Framework: 1114. C# 10 - (13) 단일 파일 내에 적용되는 namespace 선언파일 다운로드1
12827정성태9/4/20218129스크립트: 27. 파이썬 - 웹 페이지 데이터 수집을 위한 scrapy Crawler 사용법 요약
12826정성태9/3/202110372.NET Framework: 1113. C# 10 - (12) 문자열 보간 성능 개선 [1]파일 다운로드1
12825정성태9/3/20217932개발 환경 구성: 603. GoLand - WSL 환경과 연동
12824정성태9/2/202117008오류 유형: 760. 파이썬 tensorflow - Dst tensor is not initialized. 오류 메시지
12823정성태9/2/20216741스크립트: 26. 파이썬 - PyCharm을 이용한 fork 디버그 방법
12822정성태9/1/202111948오류 유형: 759. 파이썬 tensorflow - ValueError: Shapes (...) and (...) are incompatible [2]
12821정성태9/1/20217502.NET Framework: 1112. C# - .NET 6부터 공개된 ISpanFormattable 사용법
12820정성태9/1/20217809VC++: 147. Golang - try/catch에 대응하는 panic/recover [1]파일 다운로드1
... [31]  32  33  34  35  36  37  38  39  40  41  42  43  44  45  ...