我有一对夫妇解决当地域127.0.0.1
在我的/etc/hosts
文件。一段时间没事,但是现在我跑步:
nslookup test.local
结果是:
Server: 192.168.1.3
Address: 192.168.1.3#53
** server can't find test.local: NXDOMAIN
这192.168.1.3
是我们的网络DNS,它不应该知道我的本地域test.local
。经过几次搜索,我发现该/etc/nsswitch.conf
文件包含有关要查询的DNS源优先级的信息。但是那里没有问题!这是我的:
# /etc/nsswitch.conf
#
# Example configuration of GNU Name Service Switch functionality.
# If you have the `glibc-doc-reference' and `info' packages installed, try:
# `info libc "Name Service Switch"' for information about this file.
passwd: compat
group: compat
shadow: compat
hosts: files mdns4_minimal [NOTFOUND=return] dns
networks: files
protocols: db files
services: db files
ethers: db files
rpc: db files
netgroup: nis
有人知道为什么我的hosts
文件未包含在DNS查找中吗?
ping
一个人应该使用,getent ahosts
因为这并不需要所有多余的东西ping
。