aws 托管区域 nslookup 显示服务器失败

aws 托管区域 nslookup 显示服务器失败

我在 aws 中创建了托管区域,并将名称服务器添加到我的域中

当我尝试在域上进行 nslookup 时,出现错误

ubuntu@xx-xx-xx-xx:~$ nslookup --type=ns kims.oshabz.name.ng
*** Invalid option: -type=ns
Server:         127.0.0.53
Address:        127.0.0.53#53

Non-authoritative answer:
*** Can't find kims.oshabz.name.ng: No answer

答案1

“type” 前面有一个破折号,而不是两个。尝试以下更正后的命令:

nslookup -type=ns kims.oshabz.name.ng

我能够在 Ubuntu 20.04 上复制您的错误,并且此更改解决了该错误。

相关内容