在Unix / Linux中搜索名称解析的顺序

前端之家收集整理的这篇文章主要介绍了在Unix / Linux中搜索名称解析的顺序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
可以说/etc/resolv.conf有以下内容..
nameserver 10.10.10.10
search x.com y.com

对于分辨率“ping foo”,我看到解析器首先使用配置的搜索域(即:foo.x.com,foo.y.com)尝试FQDN,然后尝试默认的“foo”.

所有* nix平台的行为是否一致?或者某些实现可以首先在根域中进行短名称解析(即:“foo.”)?

从resolv.conf手册页:
options ndots:n
                 Sets a threshold for the number of dots which must
                 appear in a name given to res_query(3) (see
                 resolver(3)) before an initial absolute query will be
                 made.  The default for n is 1,meaning that if there
                 are any dots in a name,the name will be tried first as
                 an absolute name before any search list elements are
                 appended to it.  The value for this option is silently
                 capped to 15.

因此,如果resolv.conf具有选项ndots:0,它将立即尝试根域搜索而不尝试任何搜索列表域.该联机帮助页似乎表明它应该尝试搜索根目录中是否存在查询域,但是我的解析器在测试时没有这样做.否则,如果没有点,它首先按顺序尝试搜索元素,然后在耗尽列表后尝试根域.注意,您可以设置搜索.它将根域放在搜索列表中.

另一件需要注意的事情是,如果请求在到达之前被另一个nsswitch.conf机制满足,那么你的名字解析可能永远不会成为resolv.conf.

原文链接:https://www.f2er.com/bash/385565.html

猜你在找的Bash相关文章