我对这里发生的事情感到困惑。nslookup myHost
解析myHost。ping myHost
才不是。ping myHost.
确实。为什么添加期间有效?我该如何ping myHost
工作?
>nslookup myHost
Name: myHost
Address: xxx.xxx.xxx.xxx
>ping myHost
Ping request could not find myHost. Please check the name and try again.
>ping myHost.
Pinging myHost [xxx.xxx.xxx.xxx] with 32 bytes of data:
Reply from xxx.xxx.xxx.xxx: bytes=32 time=1ms TTL=64
作为参考,名称服务器是Raspbian Jessie上的dnsmasq。这是/etc/dnsmasq.conf,减去安全设置。侦听地址和服务器是相同的IP:
interface=wlan0
listen-address=xxx.xxx.xxx.xxx
bind-interfaces
server=xxx.xxx.xxx.xxx
bogus-priv
dhcp-range=xxx.xxx.xxx.xxx,xxx.xxx.xxx.xxx,12h
在我的主机文件中:
xxx.xxx.xxx.xxx myHost
不以(通常是可选的)时间段结尾的域名通常倾向于添加后缀。(您确实知道TLD之类的域名以.com结尾,通常是一个可选的时间段,对吗?例如ping google.com。)
—
TOOGAM
我知道 (已经有一段时间了,但是。表示最高级吗?)所以...如果我将域设置为。在dnsmas.conf中,也许可以解决这个问题?
—
Daniel B.