<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: question about BIND 9 in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/question-about-bind-9/m-p/3216624#M88112</link>
    <description>Wow, I'd never seen that before..&lt;BR /&gt;&lt;BR /&gt;"man resolv.conf" produces this:&lt;BR /&gt;&lt;BR /&gt;... Up to MAXNS (see &lt;RESOLV.H&gt;) name servers may be listed, one per keyword.&lt;BR /&gt;&lt;BR /&gt;"grep MAXNS /usr/include/resolv.h" returns:&lt;BR /&gt;&lt;BR /&gt;#define MAXNS 3&lt;BR /&gt;&lt;BR /&gt;So you are absolutely correct.&lt;BR /&gt;&lt;BR /&gt;In the configuration you are listing however, this is querying (up to MAXNS)remote name servers, not using forwarders in a BIND configuration.&lt;/RESOLV.H&gt;</description>
    <pubDate>Sun, 28 Mar 2004 18:46:48 GMT</pubDate>
    <dc:creator>Stuart Browne</dc:creator>
    <dc:date>2004-03-28T18:46:48Z</dc:date>
    <item>
      <title>question about BIND 9</title>
      <link>https://community.hpe.com/t5/operating-system-linux/question-about-bind-9/m-p/3216619#M88107</link>
      <description>hi&lt;BR /&gt;&lt;BR /&gt;is it possible to put as forwarders&lt;BR /&gt;3 DNS IP addresses from the ISP &lt;BR /&gt;at named.conf from BIND 9 &lt;BR /&gt;by "forward only" server ?&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;chris</description>
      <pubDate>Thu, 11 Mar 2004 17:16:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/question-about-bind-9/m-p/3216619#M88107</guid>
      <dc:creator>'chris'</dc:creator>
      <dc:date>2004-03-11T17:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: question about BIND 9</title>
      <link>https://community.hpe.com/t5/operating-system-linux/question-about-bind-9/m-p/3216620#M88108</link>
      <description>Using a section in named.conf like:&lt;BR /&gt;&lt;BR /&gt;options {&lt;BR /&gt;  forwarders {&lt;BR /&gt;    ip.ad.on.e;&lt;BR /&gt;    ip.ad.tw.o;&lt;BR /&gt;    ip.ad.thr.ee;&lt;BR /&gt;  };&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;should do it.</description>
      <pubDate>Thu, 11 Mar 2004 18:23:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/question-about-bind-9/m-p/3216620#M88108</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2004-03-11T18:23:36Z</dc:date>
    </item>
    <item>
      <title>Re: question about BIND 9</title>
      <link>https://community.hpe.com/t5/operating-system-linux/question-about-bind-9/m-p/3216621#M88109</link>
      <description>sorry a mistake, because my question was&lt;BR /&gt;not so clearly.&lt;BR /&gt;I know how to put to named.conf&lt;BR /&gt;my collegue says by "forward only" DNS server&lt;BR /&gt;I cannot put more than 2 IP addresses.&lt;BR /&gt;and only by "resolver" I can put more than 2.&lt;BR /&gt;is it true ? &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 11 Mar 2004 18:37:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/question-about-bind-9/m-p/3216621#M88109</guid>
      <dc:creator>'chris'</dc:creator>
      <dc:date>2004-03-11T18:37:13Z</dc:date>
    </item>
    <item>
      <title>Re: question about BIND 9</title>
      <link>https://community.hpe.com/t5/operating-system-linux/question-about-bind-9/m-p/3216622#M88110</link>
      <description>Neither the '/etc/resolv.conf', or '/etc/named.conf' using 'forwarders' whilst running Bind have that limitation that I'm aware of.</description>
      <pubDate>Thu, 11 Mar 2004 19:08:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/question-about-bind-9/m-p/3216622#M88110</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2004-03-11T19:08:00Z</dc:date>
    </item>
    <item>
      <title>Re: question about BIND 9</title>
      <link>https://community.hpe.com/t5/operating-system-linux/question-about-bind-9/m-p/3216623#M88111</link>
      <description>hi stuart&lt;BR /&gt;&lt;BR /&gt;I did a test with a resolver:&lt;BR /&gt;&lt;BR /&gt;# cat /etc/resolv.conf&lt;BR /&gt;nameserver 192.168.5.1&lt;BR /&gt;nameserver 192.168.5.2&lt;BR /&gt;nameserver 192.168.5.3&lt;BR /&gt;nameserver 192.168.5.4&lt;BR /&gt;&lt;BR /&gt;# ping something&lt;BR /&gt;&lt;BR /&gt;# tcpdump -nl port 53&lt;BR /&gt;tcpdump: listening on eth0&lt;BR /&gt;00:45:06.365654 192.168.1.1.32841 &amp;gt; 192.168.5.1.53:  51545+ A? something. (27) (DF)&lt;BR /&gt;00:45:11.375117 192.168.1.1.32842 &amp;gt; 192.168.5.2.53:  51545+ A? something. (27) (DF)&lt;BR /&gt;00:45:14.385090 192.168.1.1.32843 &amp;gt; 192.168.5.3.53:  51545+ A? something. (27) (DF)&lt;BR /&gt;00:45:20.395042 192.168.1.1.32841 &amp;gt; 192.168.5.1.53:  51545+ A? something. (27) (DF)&lt;BR /&gt;00:45:25.405048 192.168.1.1.32842 &amp;gt; 192.168.5.2.53:  51545+ A? something. (27) (DF)&lt;BR /&gt;00:45:28.415041 192.168.1.1.32843 &amp;gt; 192.168.5.3.53:  51545+ A? something. (27) (DF)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;how you can see the nameserver 192.168.5.4&lt;BR /&gt;will NOT be asked.&lt;BR /&gt;so by resolver will be limited up to 3 nameserver.&lt;BR /&gt;&lt;BR /&gt;greetings&lt;BR /&gt;chris&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 28 Mar 2004 17:53:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/question-about-bind-9/m-p/3216623#M88111</guid>
      <dc:creator>'chris'</dc:creator>
      <dc:date>2004-03-28T17:53:16Z</dc:date>
    </item>
    <item>
      <title>Re: question about BIND 9</title>
      <link>https://community.hpe.com/t5/operating-system-linux/question-about-bind-9/m-p/3216624#M88112</link>
      <description>Wow, I'd never seen that before..&lt;BR /&gt;&lt;BR /&gt;"man resolv.conf" produces this:&lt;BR /&gt;&lt;BR /&gt;... Up to MAXNS (see &lt;RESOLV.H&gt;) name servers may be listed, one per keyword.&lt;BR /&gt;&lt;BR /&gt;"grep MAXNS /usr/include/resolv.h" returns:&lt;BR /&gt;&lt;BR /&gt;#define MAXNS 3&lt;BR /&gt;&lt;BR /&gt;So you are absolutely correct.&lt;BR /&gt;&lt;BR /&gt;In the configuration you are listing however, this is querying (up to MAXNS)remote name servers, not using forwarders in a BIND configuration.&lt;/RESOLV.H&gt;</description>
      <pubDate>Sun, 28 Mar 2004 18:46:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/question-about-bind-9/m-p/3216624#M88112</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2004-03-28T18:46:48Z</dc:date>
    </item>
  </channel>
</rss>

