我正在尝试根据我的分配说明获取欧洲服务器的权威 DNS 服务器。我查了查怎么做,得到了两种不同的方法。
一种是:
nslookup -type=soa ox.ac.uk
Run Code Online (Sandbox Code Playgroud)
另一个是:
nslookup -type=ns ox.ac.uk
Run Code Online (Sandbox Code Playgroud)
两者都给我这个权威答案部分:
Authoritative answers can be found from:
Run Code Online (Sandbox Code Playgroud)
起初我认为这可能是牛津方面的一项安全功能,也许他们对 nslookup 隐藏了他们的 DNS 地址,以避免对这些服务器的攻击。但我了解到这是一个愚蠢的结论,我在谷歌给我的“欧洲大学”的每所大学都尝试了这些命令,但他们都没有回答我的权威答案。是我输入了错误的命令,是我的电脑出问题了,还是我的 ISP 出问题了?
完整的命令和输出在这里:
Sat Apr 08 23:06 user_name:/Users/user_name $nslookup -type=soa ox.ac.uk
Server: 192.168.1.254
Address: 192.168.1.254#53
Non-authoritative answer:
ox.ac.uk
origin = nighthawk.dns.ox.ac.uk
mail addr = hostmaster.ox.ac.uk
serial = 2017040772
refresh = 3600
retry = 1800
expire = 1209600
minimum = 900
Authoritative answers can be found from:
Sat Apr 08 23:06 user_name:/Users/user_name $nslookup -type=NS ox.ac.uk
Server: 192.168.1.254
Address: …
Run Code Online (Sandbox Code Playgroud)