BIND9转发器不工作。 内部DNSparsing但不转发它无法处理的请求

我有BIND9设置适当的logging器为我的域example.comsomething.example.com实际上是工作…

当我有我的DHCP服务器指向这个DNS服务器时,我可以到webmin( https://something.example.com:10000 )指向它的服务器。 不过,我无法访问任何外部网站(google.ca,serverfault.com等)

我有我的转发器在named.conf.options文件中设置

 options { directory "/etc/bind/"; allow-query-cache { none; }; allow-query { any; }; recursion yes; forwarders { 8.8.8.8; // Google's DNS Server 8.8.4.4; // '' }; }; //zones here for example.com and reverse dns 

但它似乎并没有转发请求到他们的服务器。 我哪里错了? 有什么我可以做的探索获得更多的信息?

更多的configuration将是好的; 我会猜测你错过了以下项目之一:

recursion yes;allow-recursion { 10.xxx/8; }; allow-recursion { 10.xxx/8; }; (其中10.xxx/8是你的内部networking)