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

1  2  3  4  5  6  7  8  9  10  11  12  [13]  14  15  ...
NoWriterDateCnt.TitleFile(s)
13297정성태3/26/20234350Windows: 235. Win32 - Code Modal과 UI Modal
13296정성태3/25/20233692Windows: 234. IsDialogMessage와 협업하는 WM_GETDLGCODE Win32 메시지 [1]파일 다운로드1
13295정성태3/24/20233957Windows: 233. Win32 - modeless 대화창을 modal처럼 동작하게 만드는 방법파일 다운로드1
13294정성태3/22/20234126.NET Framework: 2105. LargeAddressAware 옵션이 적용된 닷넷 32비트 프로세스의 가용 메모리 - 두 번째
13293정성태3/22/20234195오류 유형: 853. dumpbin - warning LNK4048: Invalid format file; ignored
13292정성태3/21/20234314Windows: 232. C/C++ - 일반 창에도 사용 가능한 IsDialogMessage파일 다운로드1
13291정성태3/20/20234721.NET Framework: 2104. C# Windows Forms - WndProc 재정의와 IMessageFilter 사용 시의 차이점
13290정성태3/19/20234226.NET Framework: 2103. C# - 윈도우에서 기본 제공하는 FindText 대화창 사용법파일 다운로드1
13289정성태3/18/20233421Windows: 231. Win32 - 대화창 템플릿의 2진 리소스를 읽어들여 자식 윈도우를 생성하는 방법파일 다운로드1
13288정성태3/17/20233520Windows: 230. Win32 - 대화창의 DLU 단위를 pixel로 변경하는 방법파일 다운로드1
13287정성태3/16/20233688Windows: 229. Win32 - 대화창 템플릿의 2진 리소스를 읽어들여 윈도우를 직접 띄우는 방법파일 다운로드1
13286정성태3/15/20234148Windows: 228. Win32 - 리소스에 포함된 대화창 Template의 2진 코드 해석 방법
13285정성태3/14/20233741Windows: 227. Win32 C/C++ - Dialog Procedure를 재정의하는 방법파일 다운로드1
13284정성태3/13/20233942Windows: 226. Win32 C/C++ - Dialog에서 값을 반환하는 방법파일 다운로드1
13283정성태3/12/20233485오류 유형: 852. 파이썬 - TypeError: coercing to Unicode: need string or buffer, NoneType found
13282정성태3/12/20233819Linux: 58. WSL - nohup 옵션이 필요한 경우
13281정성태3/12/20233720Windows: 225. 윈도우 바탕화면의 아이콘들이 넓게 퍼지는 경우 [2]
13280정성태3/9/20234473개발 환경 구성: 670. WSL 2에서 호스팅 중인 TCP 서버를 외부에서 접근하는 방법
13279정성태3/9/20234013오류 유형: 851. 파이썬 ModuleNotFoundError: No module named '_cffi_backend'
13278정성태3/8/20233973개발 환경 구성: 669. WSL 2의 (init이 아닌) systemd 지원 [1]
13277정성태3/6/20234637개발 환경 구성: 668. 코드 사인용 인증서 신청 및 적용 방법(예: Digicert)
13276정성태3/5/20234318.NET Framework: 2102. C# 11 - ref struct/ref field를 위해 새롭게 도입된 scoped 예약어
13275정성태3/3/20234669.NET Framework: 2101. C# 11의 ref 필드 설명
13274정성태3/2/20234260.NET Framework: 2100. C# - ref 필드로 ref struct 타입을 허용하지 않는 이유
13273정성태2/28/20233958.NET Framework: 2099. C# - 관리 포인터로서의 ref 예약어 의미
13272정성태2/27/20234217오류 유형: 850. SSMS - mdf 파일을 Attach 시킬 때 Operating system error 5: "5(Access is denied.)" 에러
1  2  3  4  5  6  7  8  9  10  11  12  [13]  14  15  ...