├── .gitattributes ├── .gitignore ├── DNSShell.dll ├── DnsShell.Format.ps1xml ├── DnsShell.psd1 ├── en-US └── DnsShell.dll-help.xml └── src ├── ActiveDirectory ├── CmdLet │ ├── Base-AD.cs │ ├── Get-ADDnsPartition.cs │ ├── Get-ADDnsRecord.cs │ ├── Get-ADDnsZone.cs │ ├── New-ADDnsRecord.cs │ ├── New-ADDnsZone.cs │ ├── Remove-ADDnsRecord.cs │ ├── Remove-ADDnsZone.cs │ ├── Set-ADDnsRecord.cs │ └── Set-ADDnsZone.cs ├── Partition.cs ├── RecordTypes │ ├── A.cs │ ├── AAAA.cs │ ├── AFSDB.cs │ ├── ATMA.cs │ ├── CNAME.cs │ ├── HINFO.cs │ ├── ISDN.cs │ ├── MX.cs │ ├── NS.cs │ ├── SOA.cs │ └── SRV.cs ├── ResourceRecord.cs ├── Zone.cs └── dnsProperty.cs ├── CommonClasses ├── BinaryReader.cs ├── BitConverter.cs └── Utility.cs ├── DnsShell.csproj ├── DnsShell.csproj.user ├── DnsShell.sln ├── Enum ├── MS-DNSP.cs ├── Management.cs └── Resolver.cs ├── Management ├── Cache.cs ├── CmdLet │ ├── Base-Management.cs │ ├── Clear-DnsCache.cs │ ├── Get-DnsRecord.cs │ ├── Get-DnsServer.cs │ ├── Get-DnsZone.cs │ ├── New-DnsRecord.cs │ ├── New-DnsZone.cs │ ├── Remove-DnsObject.cs │ ├── Remove-DnsZone.cs │ ├── Reset-DnsZoneType.cs │ ├── Resume-DnsZone.cs │ ├── Set-DnsRecord.cs │ ├── Set-DnsServer.cs │ ├── Set-DnsZone.cs │ ├── Set-DnsZoneTransfer.cs │ ├── Start-DnsScavenging.cs │ ├── Start-DnsService.cs │ ├── Stop-DnsService.cs │ ├── Suspend-DnsZone.cs │ ├── Update-DnsZone.cs │ ├── Update-DnsZoneFile.cs │ └── Write-RootHints.cs ├── RecordTypes │ ├── A.cs │ ├── AAAA.cs │ ├── AFSDB.cs │ ├── ATMA.cs │ ├── CNAME.cs │ ├── HINFO.cs │ ├── ISDN.cs │ ├── KEY.cs │ ├── MB.cs │ ├── MD.cs │ ├── MF.cs │ ├── MG.cs │ ├── MINFO.cs │ ├── MR.cs │ ├── MX.cs │ ├── NS.cs │ ├── NXT.cs │ ├── PTR.cs │ ├── RP.cs │ ├── RT.cs │ ├── SIG.cs │ ├── SOA.cs │ ├── SRV.cs │ ├── TXT.cs │ ├── WINS.cs │ ├── WINSR.cs │ ├── WKS.cs │ └── X25.cs ├── ResourceRecord.cs ├── RootHints.cs ├── Server.cs └── Zone.cs ├── Properties └── AssemblyInfo.cs └── Resolver ├── CmdLet └── Get-Dns.cs ├── DnsPacket.cs ├── EDns.cs ├── Header.cs ├── PacketReader.cs ├── PacketWriter.cs ├── Query.cs ├── Question.cs ├── RData.cs ├── RecordTypes ├── A.cs ├── AAAA.cs ├── AFSDB.cs ├── ATMA.cs ├── CNAME.cs ├── HINFO.cs ├── ISDN.cs ├── MB.cs ├── MD.cs ├── MF.cs ├── MG.cs ├── MINFO.cs ├── MR.cs ├── MX.cs ├── NS.cs ├── NSAP.cs ├── NULL.cs ├── PTR.cs ├── RP.cs ├── RT.cs ├── SOA.cs ├── SRV.cs ├── TXT.cs ├── WINS.cs ├── WINSR.cs ├── WKS.cs └── X25.cs └── ResourceRecord.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/.gitignore -------------------------------------------------------------------------------- /DNSShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/DNSShell.dll -------------------------------------------------------------------------------- /DnsShell.Format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/DnsShell.Format.ps1xml -------------------------------------------------------------------------------- /DnsShell.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/DnsShell.psd1 -------------------------------------------------------------------------------- /en-US/DnsShell.dll-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/en-US/DnsShell.dll-help.xml -------------------------------------------------------------------------------- /src/ActiveDirectory/CmdLet/Base-AD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/ActiveDirectory/CmdLet/Base-AD.cs -------------------------------------------------------------------------------- /src/ActiveDirectory/CmdLet/Get-ADDnsPartition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/ActiveDirectory/CmdLet/Get-ADDnsPartition.cs -------------------------------------------------------------------------------- /src/ActiveDirectory/CmdLet/Get-ADDnsRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/ActiveDirectory/CmdLet/Get-ADDnsRecord.cs -------------------------------------------------------------------------------- /src/ActiveDirectory/CmdLet/Get-ADDnsZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/ActiveDirectory/CmdLet/Get-ADDnsZone.cs -------------------------------------------------------------------------------- /src/ActiveDirectory/CmdLet/New-ADDnsRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/ActiveDirectory/CmdLet/New-ADDnsRecord.cs -------------------------------------------------------------------------------- /src/ActiveDirectory/CmdLet/New-ADDnsZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/ActiveDirectory/CmdLet/New-ADDnsZone.cs -------------------------------------------------------------------------------- /src/ActiveDirectory/CmdLet/Remove-ADDnsRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/ActiveDirectory/CmdLet/Remove-ADDnsRecord.cs -------------------------------------------------------------------------------- /src/ActiveDirectory/CmdLet/Remove-ADDnsZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/ActiveDirectory/CmdLet/Remove-ADDnsZone.cs -------------------------------------------------------------------------------- /src/ActiveDirectory/CmdLet/Set-ADDnsRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/ActiveDirectory/CmdLet/Set-ADDnsRecord.cs -------------------------------------------------------------------------------- /src/ActiveDirectory/CmdLet/Set-ADDnsZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/ActiveDirectory/CmdLet/Set-ADDnsZone.cs -------------------------------------------------------------------------------- /src/ActiveDirectory/Partition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/ActiveDirectory/Partition.cs -------------------------------------------------------------------------------- /src/ActiveDirectory/RecordTypes/A.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/ActiveDirectory/RecordTypes/A.cs -------------------------------------------------------------------------------- /src/ActiveDirectory/RecordTypes/AAAA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/ActiveDirectory/RecordTypes/AAAA.cs -------------------------------------------------------------------------------- /src/ActiveDirectory/RecordTypes/AFSDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/ActiveDirectory/RecordTypes/AFSDB.cs -------------------------------------------------------------------------------- /src/ActiveDirectory/RecordTypes/ATMA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/ActiveDirectory/RecordTypes/ATMA.cs -------------------------------------------------------------------------------- /src/ActiveDirectory/RecordTypes/CNAME.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/ActiveDirectory/RecordTypes/CNAME.cs -------------------------------------------------------------------------------- /src/ActiveDirectory/RecordTypes/HINFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/ActiveDirectory/RecordTypes/HINFO.cs -------------------------------------------------------------------------------- /src/ActiveDirectory/RecordTypes/ISDN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/ActiveDirectory/RecordTypes/ISDN.cs -------------------------------------------------------------------------------- /src/ActiveDirectory/RecordTypes/MX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/ActiveDirectory/RecordTypes/MX.cs -------------------------------------------------------------------------------- /src/ActiveDirectory/RecordTypes/NS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/ActiveDirectory/RecordTypes/NS.cs -------------------------------------------------------------------------------- /src/ActiveDirectory/RecordTypes/SOA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/ActiveDirectory/RecordTypes/SOA.cs -------------------------------------------------------------------------------- /src/ActiveDirectory/RecordTypes/SRV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/ActiveDirectory/RecordTypes/SRV.cs -------------------------------------------------------------------------------- /src/ActiveDirectory/ResourceRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/ActiveDirectory/ResourceRecord.cs -------------------------------------------------------------------------------- /src/ActiveDirectory/Zone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/ActiveDirectory/Zone.cs -------------------------------------------------------------------------------- /src/ActiveDirectory/dnsProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/ActiveDirectory/dnsProperty.cs -------------------------------------------------------------------------------- /src/CommonClasses/BinaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/CommonClasses/BinaryReader.cs -------------------------------------------------------------------------------- /src/CommonClasses/BitConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/CommonClasses/BitConverter.cs -------------------------------------------------------------------------------- /src/CommonClasses/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/CommonClasses/Utility.cs -------------------------------------------------------------------------------- /src/DnsShell.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/DnsShell.csproj -------------------------------------------------------------------------------- /src/DnsShell.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/DnsShell.csproj.user -------------------------------------------------------------------------------- /src/DnsShell.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/DnsShell.sln -------------------------------------------------------------------------------- /src/Enum/MS-DNSP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Enum/MS-DNSP.cs -------------------------------------------------------------------------------- /src/Enum/Management.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Enum/Management.cs -------------------------------------------------------------------------------- /src/Enum/Resolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Enum/Resolver.cs -------------------------------------------------------------------------------- /src/Management/Cache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/Cache.cs -------------------------------------------------------------------------------- /src/Management/CmdLet/Base-Management.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/CmdLet/Base-Management.cs -------------------------------------------------------------------------------- /src/Management/CmdLet/Clear-DnsCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/CmdLet/Clear-DnsCache.cs -------------------------------------------------------------------------------- /src/Management/CmdLet/Get-DnsRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/CmdLet/Get-DnsRecord.cs -------------------------------------------------------------------------------- /src/Management/CmdLet/Get-DnsServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/CmdLet/Get-DnsServer.cs -------------------------------------------------------------------------------- /src/Management/CmdLet/Get-DnsZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/CmdLet/Get-DnsZone.cs -------------------------------------------------------------------------------- /src/Management/CmdLet/New-DnsRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/CmdLet/New-DnsRecord.cs -------------------------------------------------------------------------------- /src/Management/CmdLet/New-DnsZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/CmdLet/New-DnsZone.cs -------------------------------------------------------------------------------- /src/Management/CmdLet/Remove-DnsObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/CmdLet/Remove-DnsObject.cs -------------------------------------------------------------------------------- /src/Management/CmdLet/Remove-DnsZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/CmdLet/Remove-DnsZone.cs -------------------------------------------------------------------------------- /src/Management/CmdLet/Reset-DnsZoneType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/CmdLet/Reset-DnsZoneType.cs -------------------------------------------------------------------------------- /src/Management/CmdLet/Resume-DnsZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/CmdLet/Resume-DnsZone.cs -------------------------------------------------------------------------------- /src/Management/CmdLet/Set-DnsRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/CmdLet/Set-DnsRecord.cs -------------------------------------------------------------------------------- /src/Management/CmdLet/Set-DnsServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/CmdLet/Set-DnsServer.cs -------------------------------------------------------------------------------- /src/Management/CmdLet/Set-DnsZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/CmdLet/Set-DnsZone.cs -------------------------------------------------------------------------------- /src/Management/CmdLet/Set-DnsZoneTransfer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/CmdLet/Set-DnsZoneTransfer.cs -------------------------------------------------------------------------------- /src/Management/CmdLet/Start-DnsScavenging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/CmdLet/Start-DnsScavenging.cs -------------------------------------------------------------------------------- /src/Management/CmdLet/Start-DnsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/CmdLet/Start-DnsService.cs -------------------------------------------------------------------------------- /src/Management/CmdLet/Stop-DnsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/CmdLet/Stop-DnsService.cs -------------------------------------------------------------------------------- /src/Management/CmdLet/Suspend-DnsZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/CmdLet/Suspend-DnsZone.cs -------------------------------------------------------------------------------- /src/Management/CmdLet/Update-DnsZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/CmdLet/Update-DnsZone.cs -------------------------------------------------------------------------------- /src/Management/CmdLet/Update-DnsZoneFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/CmdLet/Update-DnsZoneFile.cs -------------------------------------------------------------------------------- /src/Management/CmdLet/Write-RootHints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/CmdLet/Write-RootHints.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/A.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/A.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/AAAA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/AAAA.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/AFSDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/AFSDB.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/ATMA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/ATMA.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/CNAME.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/CNAME.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/HINFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/HINFO.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/ISDN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/ISDN.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/KEY.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/KEY.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/MB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/MB.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/MD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/MD.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/MF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/MF.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/MG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/MG.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/MINFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/MINFO.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/MR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/MR.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/MX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/MX.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/NS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/NS.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/NXT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/NXT.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/PTR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/PTR.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/RP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/RP.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/RT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/RT.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/SIG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/SIG.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/SOA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/SOA.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/SRV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/SRV.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/TXT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/TXT.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/WINS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/WINS.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/WINSR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/WINSR.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/WKS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/WKS.cs -------------------------------------------------------------------------------- /src/Management/RecordTypes/X25.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RecordTypes/X25.cs -------------------------------------------------------------------------------- /src/Management/ResourceRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/ResourceRecord.cs -------------------------------------------------------------------------------- /src/Management/RootHints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/RootHints.cs -------------------------------------------------------------------------------- /src/Management/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/Server.cs -------------------------------------------------------------------------------- /src/Management/Zone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Management/Zone.cs -------------------------------------------------------------------------------- /src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Resolver/CmdLet/Get-Dns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/CmdLet/Get-Dns.cs -------------------------------------------------------------------------------- /src/Resolver/DnsPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/DnsPacket.cs -------------------------------------------------------------------------------- /src/Resolver/EDns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/EDns.cs -------------------------------------------------------------------------------- /src/Resolver/Header.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/Header.cs -------------------------------------------------------------------------------- /src/Resolver/PacketReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/PacketReader.cs -------------------------------------------------------------------------------- /src/Resolver/PacketWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/PacketWriter.cs -------------------------------------------------------------------------------- /src/Resolver/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/Query.cs -------------------------------------------------------------------------------- /src/Resolver/Question.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/Question.cs -------------------------------------------------------------------------------- /src/Resolver/RData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RData.cs -------------------------------------------------------------------------------- /src/Resolver/RecordTypes/A.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RecordTypes/A.cs -------------------------------------------------------------------------------- /src/Resolver/RecordTypes/AAAA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RecordTypes/AAAA.cs -------------------------------------------------------------------------------- /src/Resolver/RecordTypes/AFSDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RecordTypes/AFSDB.cs -------------------------------------------------------------------------------- /src/Resolver/RecordTypes/ATMA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RecordTypes/ATMA.cs -------------------------------------------------------------------------------- /src/Resolver/RecordTypes/CNAME.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RecordTypes/CNAME.cs -------------------------------------------------------------------------------- /src/Resolver/RecordTypes/HINFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RecordTypes/HINFO.cs -------------------------------------------------------------------------------- /src/Resolver/RecordTypes/ISDN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RecordTypes/ISDN.cs -------------------------------------------------------------------------------- /src/Resolver/RecordTypes/MB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RecordTypes/MB.cs -------------------------------------------------------------------------------- /src/Resolver/RecordTypes/MD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RecordTypes/MD.cs -------------------------------------------------------------------------------- /src/Resolver/RecordTypes/MF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RecordTypes/MF.cs -------------------------------------------------------------------------------- /src/Resolver/RecordTypes/MG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RecordTypes/MG.cs -------------------------------------------------------------------------------- /src/Resolver/RecordTypes/MINFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RecordTypes/MINFO.cs -------------------------------------------------------------------------------- /src/Resolver/RecordTypes/MR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RecordTypes/MR.cs -------------------------------------------------------------------------------- /src/Resolver/RecordTypes/MX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RecordTypes/MX.cs -------------------------------------------------------------------------------- /src/Resolver/RecordTypes/NS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RecordTypes/NS.cs -------------------------------------------------------------------------------- /src/Resolver/RecordTypes/NSAP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RecordTypes/NSAP.cs -------------------------------------------------------------------------------- /src/Resolver/RecordTypes/NULL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RecordTypes/NULL.cs -------------------------------------------------------------------------------- /src/Resolver/RecordTypes/PTR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RecordTypes/PTR.cs -------------------------------------------------------------------------------- /src/Resolver/RecordTypes/RP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RecordTypes/RP.cs -------------------------------------------------------------------------------- /src/Resolver/RecordTypes/RT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RecordTypes/RT.cs -------------------------------------------------------------------------------- /src/Resolver/RecordTypes/SOA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RecordTypes/SOA.cs -------------------------------------------------------------------------------- /src/Resolver/RecordTypes/SRV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RecordTypes/SRV.cs -------------------------------------------------------------------------------- /src/Resolver/RecordTypes/TXT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RecordTypes/TXT.cs -------------------------------------------------------------------------------- /src/Resolver/RecordTypes/WINS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RecordTypes/WINS.cs -------------------------------------------------------------------------------- /src/Resolver/RecordTypes/WINSR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RecordTypes/WINSR.cs -------------------------------------------------------------------------------- /src/Resolver/RecordTypes/WKS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RecordTypes/WKS.cs -------------------------------------------------------------------------------- /src/Resolver/RecordTypes/X25.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/RecordTypes/X25.cs -------------------------------------------------------------------------------- /src/Resolver/ResourceRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/DnsShell/HEAD/src/Resolver/ResourceRecord.cs --------------------------------------------------------------------------------