Microsoft MVP성태의 닷넷 이야기
Windows: 154. PowerShell - Zone 별로 DNS 레코드 유형 정보 조회 [링크 복사], [링크+제목 복사]
조회: 11964
글쓴 사람
정성태 (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분
정성태

... 16  17  18  19  20  21  22  23  24  [25]  26  27  28  29  30  ...
NoWriterDateCnt.TitleFile(s)
12996정성태3/9/202215600VS.NET IDE: 175. Visual Studio - 인텔리센스에서 오버로드 메서드를 키보드로 선택하는 방법
12995정성태3/8/20227894.NET Framework: 1173. .NET에서 Producer/Consumer를 구현한 BlockingCollection<T>
12994정성태3/8/20227188오류 유형: 798. WinDbg - Failed to load data access module, 0x80004002
12993정성태3/4/20226968.NET Framework: 1172. .NET에서 Producer/Consumer를 구현하는 기초 인터페이스 - IProducerConsumerCollection<T>
12992정성태3/3/20228365.NET Framework: 1171. C# - BouncyCastle을 사용한 암호화/복호화 예제파일 다운로드1
12991정성태3/2/20227599.NET Framework: 1170. C# - ffmpeg(FFmpeg.AutoGen)를 이용한 transcode_aac.c 예제 포팅
12990정성태3/2/20227192오류 유형: 797. msbuild - The BaseOutputPath/OutputPath property is not set for project '[...].vcxproj'
12989정성태3/2/20226763오류 유형: 796. mstest.exe - System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.VisualStudio.QualityTools.Tips.WebLoadTest.Tip
12988정성태3/2/20225710오류 유형: 795. CI 환경에서 Docker build 시 csproj의 Link 파일에 대한 빌드 오류
12987정성태3/1/20227149.NET Framework: 1169. C# - ffmpeg(FFmpeg.AutoGen)를 이용한 demuxing_decoding.c 예제 포팅
12986정성태2/28/20228000.NET Framework: 1168. C# -IIncrementalGenerator를 적용한 Version 2 Source Generator 실습 [1]
12985정성태2/28/20227891.NET Framework: 1167. C# -Version 1 Source Generator 실습
12984정성태2/24/20226991.NET Framework: 1166. C# - ffmpeg(FFmpeg.AutoGen)를 이용한 filtering_video.c 예제 포팅
12983정성태2/24/20227086.NET Framework: 1165. .NET Core/5+ 빌드 시 runtimeconfig.json에 설정을 반영하는 방법
12982정성태2/24/20227024.NET Framework: 1164. HTTP Error 500.31 - ANCM Failed to Find Native Dependencies
12981정성태2/23/20226664VC++: 154. C/C++ 언어의 문자열 Literal에 인덱스 적용하는 구문 [1]
12980정성태2/23/20227370.NET Framework: 1163. C# - 윈도우 환경에서 usleep을 호출하는 방법 [2]
12979정성태2/22/20229950.NET Framework: 1162. C# - 인텔 CPU의 P-Core와 E-Core를 구분하는 방법 [1]파일 다운로드2
12978정성태2/21/20227265.NET Framework: 1161. C# - ffmpeg(FFmpeg.AutoGen)를 이용한 resampling_audio.c 예제 포팅
12977정성태2/21/202210997.NET Framework: 1160. C# - ffmpeg(FFmpeg.AutoGen)를 이용한 qsv 디코딩
12976정성태2/21/20226643VS.NET IDE: 174. Visual C++ - "External Dependencies" 노드 비활성화하는 방법
12975정성태2/20/20228398.NET Framework: 1159. C# - ffmpeg(FFmpeg.AutoGen)를 이용한 qsvdec.c 예제 포팅파일 다운로드1
12974정성태2/20/20226538.NET Framework: 1158. C# - SqlConnection의 최소 Pooling 수를 초과한 DB 연결은 언제 해제될까요?
12973정성태2/16/20228757개발 환경 구성: 639. ffmpeg.exe - Intel Quick Sync Video(qsv)를 이용한 인코딩 [3]
12972정성태2/16/20228026Windows: 200. Intel CPU의 내장 그래픽 GPU가 작업 관리자에 없다면? [4]
12971정성태2/15/20229677.NET Framework: 1157. C# - ffmpeg(FFmpeg.AutoGen)를 이용한 muxing.c 예제 포팅 [7]파일 다운로드2
... 16  17  18  19  20  21  22  23  24  [25]  26  27  28  29  30  ...