Подскажите путь решения проблемы
Не работает опция forwarders в DNS options {
version "unknown";
directory "/zone";
pid-file "";
dump-file "/var/run/named_dump.db";
statistics-file "/var/run/named.stats";
/*
* Oftenly used directives are listed below.
*/
/* Turn on the enforcement of delegation-only in TLDs and root zones
* with an optional exclude list.
* Note some TLDs are NOT delegationi-only (e.g. "DE", "LV", "US"
* and "MUSEUM").
*/
root-delegation-only exclude { "de"; "lv"; "us"; "museum"; };
/*
* For the localhost configuration, uncomment the listen-on directive
* below.
*/
//listen-on { 127.0.0.1; };
/*
* If the forward directive is set to "only", the server will only
* query the forwarders.
*/
forward only;
forwarders {193.193.193.100;193.193.193.115;};
/*
* Specifies which hosts are allowed to ask ordinary questions.
*/
allow-query {192.168.2.0/24; 127.0.0.1; 192.168.0.0/24;};
/*
* Specifies which hosts are allowed to make recursive queries
* through this server. If not specified, the default is to allow
* recursive queries from all hosts. Note that disallowing recursive
* queries for a host does not prevent the host from retrieving data
* that is already in the server's cache.
*/
allow-recursion {192.168.2.0/24;};
/*
* Sets the maximum time for which the server will cache ordinary
* (positive) answers. The default is one week (7 days).
*/
//max-cache-ttl 86400;
};
в логах нет сообщений об ошибке,
пакеты через инет интерфейс не проходят, такое впечатление что forward-а вобще нет.
nslookup если указать напрямую DNS сервер провайдера работает, т.е. пакеты проходят фаервол и порт 53 нормально или я ошибаюсь?
Как установить уровень отладки в DNS ?
Или что еще можно сделать, уже убил кучу времени и в инете ничего не нашел.