主机对本地主机进行不必要的 DNS 查找

发布于 2025-01-03 18:43:16 字数 331 浏览 1 评论 0原文

我有一个 centOS 系统(嵌入式并且有很多二进制文件),带有以下 /etc/hosts。

$cat /etc/hosts
127.0.0.1 localhost localhost

此外,主机还被分配了一个 DNS 服务器,该服务器返回一些无效的 IP,用于 localhost 的域名查找。但由于某些网络限制,我无法避免与此 DNS 的连接。

我的问题是,当我已经有了有效的 /etc/hosts 文件时,为什么系统会在 DNS 中查询 localhost?我怎样才能阻止这种情况呢?

任何帮助将不胜感激。

I have a centOS system(embedded and has very binaries) with the following /etc/hosts.

$cat /etc/hosts
127.0.0.1 localhost localhost

Also the host is assigned a DNS server which returns some invalid IP for the domain name lookup of localhost. But I cannot avoid a connection to this DNS due to some network restrictions.

My question is, when I already have a valid /etc/hosts file why is the system querying the DNS for localhost? And how can I stop that?

Any help would be greatly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

筱果果 2025-01-10 18:43:16

检查 /etc/nsswitch.conf

[me@home]$ grep "^hosts" /etc/nsswitch.conf 
hosts:      files dns

如果 dns 先出现,那么您的系统将始终查询 DNS 来解析主机名,然后再回退到 /etc/hosts

Check that you have files listed before dns for the hosts entry in /etc/nsswitch.conf.

[me@home]$ grep "^hosts" /etc/nsswitch.conf 
hosts:      files dns

If dns comes first, then your system will always query DNS to resolve hostnames before falling back to /etc/hosts.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文