<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Linux Forum &mdash; Bind DNS query refused]]></title>
	<link rel="self" href="https://linuxforum.ru/extern.php?action=feed&amp;tid=4501&amp;type=atom" />
	<updated>2012-05-02T14:32:44Z</updated>
	<generator>PunBB</generator>
	<id>https://linuxforum.ru/viewtopic.php?id=4501</id>
		<entry>
			<title type="html"><![CDATA[Re: Bind DNS query refused]]></title>
			<link rel="alternate" href="https://linuxforum.ru/viewtopic.php?pid=272020#p272020" />
			<content type="html"><![CDATA[<p>+1 Мне тоже помогли .<br />вот эти строки<br />allow-recursion { any; };<br />allow-query-cache { any; };</p>]]></content>
			<author>
				<name><![CDATA[Inoy]]></name>
				<uri>https://linuxforum.ru/profile.php?id=23585</uri>
			</author>
			<updated>2012-05-02T14:32:44Z</updated>
			<id>https://linuxforum.ru/viewtopic.php?pid=272020#p272020</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Bind DNS query refused]]></title>
			<link rel="alternate" href="https://linuxforum.ru/viewtopic.php?pid=64063#p64063" />
			<content type="html"><![CDATA[<p>решилось вот этимим строками:<br /></p><div class="codebox"><pre><code>allow-recursion { any; };
allow-query { any; };
allow-query-cache { any; };</code></pre></div>]]></content>
			<author>
				<name><![CDATA[fletch]]></name>
				<uri>https://linuxforum.ru/profile.php?id=8531</uri>
			</author>
			<updated>2010-06-20T11:31:51Z</updated>
			<id>https://linuxforum.ru/viewtopic.php?pid=64063#p64063</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Bind DNS query refused]]></title>
			<link rel="alternate" href="https://linuxforum.ru/viewtopic.php?pid=64058#p64058" />
			<content type="html"><![CDATA[<p>Доброго времени суток.<br />Bind ни в какую не хочет резолвить имена по запросу из локалки. Если осуществлять nslookup или dig в консоли самого сервера - все ок. При попытке с любой другой машины в сети это сделать - query refused.<br />Конфиг:<br /></p><div class="codebox"><pre><code>// 
// /etc/named.conf
//

options {
    directory &quot;/var/named&quot;;
    pid-file &quot;/var/run/named/named.pid&quot;;
    auth-nxdomain yes;
    datasize default;
    listen-on { 127.0.0.1; 192.168.7.167; };
    allow-query { localhost; 127.0.0.1/8; 192.168.7.167; };
    allow-recursion { localhost; 127.0.0.1/8; 192.168.7.167; };
// Uncomment these to enable IPv6 connections support
// IPv4 will still work
//    listen-on { none; };
//    listen-on-v6 { any; };
forwarders {
    193.200.32.5;
    195.182.194.3;
};
query-source address * port 53;
};

zone &quot;localhost&quot; IN {
    type master;
    file &quot;localhost.zone&quot;;
    allow-update { none; };
    allow-transfer { any; };
};

zone &quot;0.0.127.in-addr.arpa&quot; IN {
    type master;
    file &quot;127.0.0.zone&quot;;
    allow-update { none; };
    allow-transfer { any; };
};

zone &quot;.&quot; IN {
    type hint;
    file &quot;root.hint&quot;;
};

//zone &quot;example.org&quot; IN {
//    type slave;
//    file &quot;example.zone&quot;;
//    masters {
//        192.168.1.100; 
//    };
//    allow-query { any; };
//    allow-transfer { any; };
//};

logging {
    channel xfer-log {
        file &quot;/var/log/named.log&quot;;
        severity info;
        print-category yes;
        print-severity yes;
        print-time yes;
        };
    category notify {
        xfer-log;
        };
    category xfer-out {
        xfer-log;
        };
    category xfer-in {
        xfer-log;
        };
};

zone &quot;pp.eximtextil&quot; {
    type slave;
    masters {192.168.7.6;};
    file &quot;/var/named/pp.eximtextil.hosts&quot;;
    };

// Windows 2003 servers&#039; zone files for active directory

zone &quot;_msdcs.pp.eximtextil&quot; {
type slave;
check-names ignore;
file &quot;/var/named/_msdcs.pp.eximtextil.hosts&quot;;
masters { 192.168.7.6; };
};

zone &quot;_sites.pp.eximtextil&quot; {
type slave;
check-names ignore;
file &quot;/var/named/_sites.pp.eximtextil.hosts&quot;;
masters { 192.168.7.6; };
};

zone &quot;_tcp.pp.eximtextil&quot; {
type slave;
check-names ignore;
file &quot;/var/named/_tcp.pp.eximtextil.hosts&quot;;
masters { 192.168.7.6; };
};

zone &quot;_udp.pp.eximtextil&quot; {
type slave;
check-names ignore;
file &quot;/var/named/_udp.pp.eximtextil.hosts&quot;;
masters { 192.168.7.6; };
};

zone &quot;DomainDnsZones.pp.eximtextil&quot; {
type slave;
check-names ignore;
file &quot;/var/named/DomainDnsZones.pp.eximtextil.hosts&quot;;
masters {192.168.7.6;};
};

zone &quot;ForestDnsZones.pp.eximtextil&quot; {
type slave;
check-names ignore;
file &quot;/var/named/ForestDnsZones.pp.eximtextil.hosts&quot;;
masters {192.168.7.6;};
};

zone &quot;eximtextil.com.ua&quot; IN {
type master;
file &quot;/var/named/eximtextil.com.ua.zone&quot;;
allow-update {none;};
notify no;
}; </code></pre></div>]]></content>
			<author>
				<name><![CDATA[fletch]]></name>
				<uri>https://linuxforum.ru/profile.php?id=8531</uri>
			</author>
			<updated>2010-06-20T10:47:43Z</updated>
			<id>https://linuxforum.ru/viewtopic.php?pid=64058#p64058</id>
		</entry>
</feed>
