我在正确转发查询时遇到了一些问题。
我目前的unbound.conf看起来如下所示:
forward-zone:
name: "google.com"
forward-addr: 8.8.8.8
forward-zone:
name: "."
forward-addr: 127.0.0.1@1066 # An Unbound server with a single catchall
remote-control:
control-enable: no“google.com”区域返回正确,但catch all区域不返回。(即使查询在第二个未绑定服务器上似乎被正确接收和返回)
发布于 2014-11-29 09:42:22
我也有同样的问题,在搜索之后,我在邮件列表中找到了解绑定用户:[无约束用户]转运商问题的解决方案。简单设置:
do-not-query-localhost: no发布于 2015-12-28 20:33:46
我有点困惑,您是想在端口1066上查询另一个服务器或本地主机吗?如果是后者,则需要使用在配置的接口部分下设置的IP地址。
server:
interface: <real ethX IP>
forward-zone:
name: "."
forward-addr: <real ethX IP>@1066默认情况下,未绑定将不允许您查询localhost/127.0.0.1。
https://serverfault.com/questions/592987
复制相似问题