-1

我有 3 台虚拟机在专用网络上的 debian 8 上运行。让我们将它们命名为 A、B 和 C。

=> C 是具有 2 个网卡(我们将它们命名为 a 和 b)的虚拟机,每个网卡具有不同的 IP 地址。C服务器上安装了BIND9。

=> A 服务器在 a 网卡的 IP 上设置了

他的 DNS => B 服务器在 b 网卡的 IP 上设置了他的 DNS

如何根据询问的网卡调整 DNS 服务器响应,以及什么是最好的方法是什么?先感谢您 !

编辑 :

# named.example01.conf

acl trusted { 192.168.7.0/24; localhost; };
acl guest   { 192.168.8.0/24; };

view trusted {
   match-clients { trusted; };

   allow-recursion { any; };

   zone "myzone.example" {
     type master;
     file "db.myzone.example";
   };
   zone "7.168.192.in-addr.arpa" {
     type master;
     file "db.192.168.7";
   };
};

view guest {
   match-clients { guest; };

   allow-recursion { any; };
};
4

1 回答 1

2

使用viewwithmatch-destinations语句。

于 2016-12-05T20:54:47.440 回答