将区域重定向到另一个DNS服务器的问题

我有一个信誉良好的DNS服务器 83.248.21.18, 哪个是域名的信誉良好 "finahemgoteborg.se". 现在我的注册商要求我有 2 域的DNS服务器现在我想要这辆车 85.228.103.141 刚刚重定向所有传入请求 "finahemgoteborg.se" 到服务器。 83.248.21.18.

到服务器 BIND 85.228.103.141 我有以下配置:

zone "finahemgoteborg.se" in {
type forward;
forwarders {83.248.21.18;};
};

但问题是 85.228.103.141 例如,在请求时仍然负责“拒绝” www.finahemgoteborg.se 记录。

我怎样才能解决它。 我不想创造一个领先的情况 / 从站,只有一个名称服务器将重定向到另一个名称服务器。

编辑

其余的部分 named.conf:

options {
directory "/var/cache/bind";
version "none";
allow-recursion {"none";};
minimal-responses no;
};

zone "sebn.us.to" in{
type master;
file "/etc/bind/sebn.us.to";
};

zone "ns1sebn.us.to" in{
type master;
file "/etc/bind/sebn.us.to";
};

zone "ns2sebn.us.to" in{
type master;
file "/etc/bind/sebn.us.to";
};

zone "finahemgoteborg.se" in{
type forward;
forwarders {83.248.21.18;};
};
已邀请:

八刀丁二

赞同来自:

解决了这个问题的情况非常不合适:不需要切换到注册商 2 DNS服务器。 发现一个乐于接受域中的单个名称的人。

郭文康

赞同来自:

"转型;" 错误的。 你需要的是 DNS master / slave.

郭文康

赞同来自:

也许在任何服务器上都有一个可防止装运的访问控制列表?

您重新启动两个服务器 (或者至少制作

rndc reload

)

要回复问题请先登录注册