ドメインexample.com
の適切なレコーダーを使用してBIND9を設定していますが、something.example.com
は実際に機能しています...
DHCPサーバーがこのDNSサーバーをポイントしている場合、ポイントしているサーバーのwebmin( https://something.example.com:100 )にアクセスできます。ただし、外部のWebサイト(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
しかし、リクエストをサーバーに転送しているようには見えません。どこがいけないの?詳細を調べるために調査できることはありますか?
より多くの設定が良いでしょう。次の項目のいずれかが不足していると思います。
recursion yes;
またはallow-recursion { 10.x.x.x/8; };
(10.x.x.x/8は内部ネットワークです)