3

我想要发生的事情:将域作为字符串传递给方法,如果域解析,则让它返回 true。如果没有,则为假。基本目标是查看域是否存在。

会发生什么:大多数有效的域字符串都返回 true。然而,尽管使用 nslookup 解决了一些问题,但仍返回 false。

我不明白为什么某些域在使用命令提示符 nslookup 和 nslookup 站点时无法解析。(我使用过https://centralops.net/http://www.kloth.net/services/nslookup.phphttp://network-tools.com/nslook/

方法(C#):

    //no blank domains
    public bool CheckDomain(string sDomain)
    {
        if (string.IsNullOrWhiteSpace(sDomain)) return false;
        for (int i = 1; i <= mQueryRetry; i++)
        {
            try
            {
                System.Net.IPAddress dnsCli = System.Net.IPAddress.Parse("8.8.8.8")
                DnsClient myClient = new DnsClient(dnsCli);
                DnsMessage dnsMessage = myClient.Resolve(ARSoft.Tools.Net.DomainName.Parse(sDomain), RecordType.A);
                if ((dnsMessage == null) || ((dnsMessage.ReturnCode != ReturnCode.NoError) && (dnsMessage.ReturnCode != ReturnCode.NxDomain)))
                {
                    throw new Exception("DNS request failed");
                }
                else
                {
                    foreach (DnsRecordBase dnsRecord in dnsMessage.AnswerRecords)
                    {
                        ARecord aRecord = dnsRecord as ARecord;
                        if (aRecord != null)
                        {
                            return true;
                        }
                    }
                }
            }
            catch (Exception ex)
            {
                // Back off and try again after 1 seconds
                if (i != mQueryRetry)
                {
                    System.Threading.Thread.Sleep(1000);
                }
                else
                {
                    System.Diagnostics.Trace.WriteLine(string.Format("Domain: {0} error: {1}", sDomain, ex.Message));
                }
            }
        }
        System.Diagnostics.Trace.Flush();
        return false;
    }

如果您打算对其进行测试,我建议将dnsCliIPAddress替换为其中之一。我已将 google DNS 服务器的 IP 留在那里作为示例,但我在生产代码中使用了我公司的 DNS 服务器。我发现更改 DNS 服务器绝不会影响该方法的行为。

我正在为类/对象使用最新版本的Arsoft.Tools.Net ( 2.2.8 ) 。我们在旧版本(1.8.1)中遇到了同样的问题。DnsClientDnsMessageDomainNameDnsRecordBaseARecord

一些无法解析的域是:

appraisallinks-amc.com
resurgenstech.com
orpheusvr.com
trovvit.com

附加信息:我尝试了一些可笑的长查询超时限制,超过 5 分钟,但它们没有任何区别。因此,我确信这不是超时问题。

4

1 回答 1

2

“您可以尝试使用不同的库,DnsClient (nuget),请参阅 dnsclient.michaco.net。有问题的域名似乎工作得很好” - @MichaC

问题实际上是我正在使用的 Arsoft.Tools.Net 库。切换到 DnsClient.Net 解决了这个问题。

于 2017-06-23T16:59:50.463 回答