我需要从我们的 DNS 服务器输入的单个 IP 地址中获取每条 CNAME 记录。
当我查找时:
[System.Net.Dns]::GetHostByAddress("81.95.243.81").Aliases
它只给了我相同的 8 个别名作为回报:
botexshop.dk
bisamba.dk
nordsoenoceanarium.dk
www.brandingcommunity.com
botexhome.dk
botexudstyr.dk
botexjylland.dk
marineacademy.dk
但我知道 IP 地址有超过 69 条 CNAME 记录(请看这里:Toolbox | DNSstuff | Reverse DNS Lookup Results for 81.95.243.81)
为什么GetHostByAddress
唯一总是返回相同的 8 个别名?以及如何获得所有 CNAME?