如何给所有一个IP bind9?

时间:2019-07-18 06:39:13

标签: linux networking dns bind

我使用bind9,对于所有需要将流量传输到另一个dns(127.0.0.1.1500)的请求,但是对于某些请求,例如* .vk.com,请从DNS 1.1.1.1提供IP,现在使用此方案:

    options {
    directory "/var/cache/bind";
    forwarders { 127.0.0.1 port 500; }; (другой днс)
    allow-query { any; };
    max-cache-ttl 30;
    max-ncache-ttl 30;
    max-zone-ttl 30;
    lame-ttl 30;
    dnssec-enable yes;
};

zone "vk.com" {
    type forward;
  forward only;
    forwarders { 1.1.1.1; };
};

一切正常,但是vk.com上的子域不起作用,它被分配给转发器127.0.0.1端口500 如何解决?

0 个答案:

没有答案