DNS VIEW 不适用于任何

DNS VIEW 不适用于任何

我已经配置了DNS视图配置:

view  "local-lan" {
  match-clients { 192.168.0.0/24 };
  zone "localtesting.com" { 
    type master;
    file "internal/internal.localtesting.com";
  };
};

view "any" {
  match-clients { any }; 
  zone "betatesting.com" {
    type master;
    file "external/betatesting.com";
  };
};

当我尝试从 192.168.0.0/24 网络服务器访问 betatesting.com 域时,它仅与local-lanview 匹配并返回。我希望它在 中不存在区域时NXDOMAIN匹配。有人能给我提供一些详细信息吗?anylocal-lan

答案1

192.168.0.0/24 网络服务器单独需要使用区域 localtesting.com,其余网络应该能够访问 betatesting.com 区域,包括 192.168.0.0/24 网络。

有人对此有什么想法吗?

相关内容