DNSルックアップを実行するとき(特にnslookupを使用して、ほとんどの場合は影響を受けません)、Windows XP Pro SP3はすべてのDNSサフィックス検索リストを使用します。完全修飾ドメイン名でも。たとえば、私は "www.microsoft.com"を検索しますが、windowsは実際には "www.microsoft.com.eondream.com"を要求します(eondream.comが私のプライマリドメインです)。プライマリDNSサフィックスを削除することで問題を解決できるようになりましたが、DNSサフィックス検索リストは短くて無効な名前(ドット= 0など)にする必要があるようです。私は私が窓のどこかに設定ミスがあると確信していますが、私はどこにいるかわかりません。考えたり見つけたりできるすべてのオプションを変更しました。
下記はipconfig / allとnslookupの出力です(debug& db2が有効)。これは静的IPを使用しています。 (内部)DNSサーバー
C:\>ipconfig /all
Windows IP Configuration
Host Name . . . . . . . . . . . . : frayedlogic
Primary Dns Suffix . . . . . . . : eondream.com
Node Type . . . . . . . . . . . . : Unknown
IP Routing Enabled. . . . . . . . : No
WINS Proxy Enabled. . . . . . . . : No
DNS Suffix Search List. . . . . . : eondream.com
Ethernet adapter Wireless Network Connection:
Connection-specific DNS Suffix . :
Description . . . . . . . . . . . : Dell Wireless 1390 WLAN Mini-Card
Physical Address. . . . . . . . . : 00-1B-FC-29-EB-6B
Dhcp Enabled. . . . . . . . . . . : No
IP Address. . . . . . . . . . . . : 192.168.13.32
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . : 192.168.13.13
DNS Servers . . . . . . . . . . . : 192.168.19.19
C:\>nslookup
Default Server: shardik.eondream.com
Address: 192.168.19.19
> set debug
> set db2
> www.microsoft.com
Server: shardik.eondream.com
Address: 192.168.19.19
------------
Got answer:
HEADER:
opcode = QUERY, id = 2, rcode = NOERROR
header flags: response, want recursion, recursion avail.
questions = 1, answers = 1, authority records = 0, additional = 0
QUESTIONS:
www.microsoft.com.eondream.com, type = A, class = IN
ANSWERS:
-> www.microsoft.com.eondream.com
internet address = 208.69.36.132
ttl = 0 (0 secs)
------------
Non-authoritative answer:
Name: www.microsoft.com.eondream.com
Address: 208.69.36.132
(注:私はopendnsサービスを使用しているので、それはそのIPに解決され、それは彼らの提案ページまたはあなたがそれを呼び出したいものは何でも) nslookupの出力を正しく読んでいるのであれば、Windowsは実際には間違ったドメインを要求しているので、DNSサーバーでは問題になりません。


www.microsoft.comです ではない 完全修飾ドメイン名Windowsはこれを正しく行っています。受け入れられるべき答えを見てください。 superuser.com/a/413529/150263