<?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: master slave dns on different network IP in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/master-slave-dns-on-different-network-ip/m-p/3514199#M86996</link>
    <description>thank u for ur suggest, one more this, is it legal to add my own domain name (tt.com) as an A record like,&lt;BR /&gt;&lt;BR /&gt;@   IN SOA  ns1.tt.com. root.tt.com.&lt;BR /&gt;(&lt;BR /&gt;             1 &lt;BR /&gt;            3H &lt;BR /&gt;           15M &lt;BR /&gt;            1W &lt;BR /&gt;            1D )&lt;BR /&gt;&lt;BR /&gt;            IN NS ns1.tt.com.&lt;BR /&gt;            IN NS ns2.tt.com.&lt;BR /&gt;tt.com.     IN A 100.100.100.100 //my own dom&lt;BR /&gt;&lt;BR /&gt;ns1.tt.com. IN A 100.100.100.100&lt;BR /&gt;ns2.tt.com. IN A 200.200.200.200</description>
    <pubDate>Fri, 01 Apr 2005 22:40:47 GMT</pubDate>
    <dc:creator>tuhintt</dc:creator>
    <dc:date>2005-04-01T22:40:47Z</dc:date>
    <item>
      <title>master slave dns on different network IP</title>
      <link>https://community.hpe.com/t5/operating-system-linux/master-slave-dns-on-different-network-ip/m-p/3514197#M86994</link>
      <description>I do master, slave DNS on the same network and its successful. But what happened when one domain name has two different Name Server IP.&lt;BR /&gt;exp -&lt;BR /&gt;Name server - ns1.tt.com (100.100.100.100)&lt;BR /&gt;Name server - ns2.tt.com (200.200.200.200)&lt;BR /&gt;Here what I do (not sure what I am really doing) pls let me know if there any mistake.&lt;BR /&gt;&lt;BR /&gt;acl ext { 100.100.100.0/24; 200.200.200.0/24; };&lt;BR /&gt;acl int { 127.0.0.1; 192.168.10.0/24; };&lt;BR /&gt;options {&lt;BR /&gt; directory "/var/named";&lt;BR /&gt; allow-query { ext; int; };&lt;BR /&gt; allow-transfer { none; };&lt;BR /&gt; notify no;&lt;BR /&gt;};&lt;BR /&gt;controls {&lt;BR /&gt; inet 127.0.0.1 allow { localhost; } keys { rndckey; };&lt;BR /&gt;};&lt;BR /&gt;zone "." IN {&lt;BR /&gt; type hint;&lt;BR /&gt; file "named.ca";&lt;BR /&gt;};&lt;BR /&gt;zone "tt.com" IN {&lt;BR /&gt; type master;&lt;BR /&gt; file "tt.zone";&lt;BR /&gt; allow-query { any; };&lt;BR /&gt; allow-transfer { 200.200.200.200; };&lt;BR /&gt;};&lt;BR /&gt;zone "100.100.100.in-addr.arpa" IN {&lt;BR /&gt; type master;&lt;BR /&gt; file "tt100.rev";&lt;BR /&gt; allow-query { any; };&lt;BR /&gt; allow-transfer { 200.200.200.200; };&lt;BR /&gt;};&lt;BR /&gt;zone "200.200.200.in-addr.arpa" IN {&lt;BR /&gt; type master;&lt;BR /&gt; file "tt200.rev";&lt;BR /&gt; allow-query { any; };&lt;BR /&gt; allow-transfer { 200.200.200.200; };&lt;BR /&gt;};&lt;BR /&gt;zone "localhost" IN {&lt;BR /&gt; type master;&lt;BR /&gt; file "localhost.zone";&lt;BR /&gt; allow-update { none; };&lt;BR /&gt;};&lt;BR /&gt;zone "0.0.127.in-addr.arpa" IN {&lt;BR /&gt; type master;&lt;BR /&gt; file "named.local";&lt;BR /&gt; allow-update { none; };&lt;BR /&gt;};&lt;BR /&gt;include "/etc/rndc.key";&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;// tt.zone file&lt;BR /&gt;$TTL 86400&lt;BR /&gt;$ORIGIN tt.com.&lt;BR /&gt;@   IN SOA ns1.tt.com. root.tt.com. (&lt;BR /&gt;     1  ; serial (d. adams)&lt;BR /&gt;     3H  ; refresh&lt;BR /&gt;     15M  ; retry&lt;BR /&gt;     1W  ; expiry&lt;BR /&gt;     1D )  ; minimum&lt;BR /&gt;&lt;BR /&gt;   IN NS ns1.tt.com.&lt;BR /&gt;   IN NS ns2.tt.com.&lt;BR /&gt;   IN MX 1 ns1.tt.com.&lt;BR /&gt;   IN MX 2 ns2.tt.com.&lt;BR /&gt;   IN A 100.100.100.100&lt;BR /&gt;&lt;BR /&gt;Ns1   IN A 100.100.100.100&lt;BR /&gt;Ns2   IN A 200.200.200.200&lt;BR /&gt;&lt;BR /&gt;//on second server &lt;BR /&gt;acl ext { 100.100.100.0/24;    200.200.200.0/24; };&lt;BR /&gt;acl int { 127.0.0.1; 192.168.10.0/24; };&lt;BR /&gt;&lt;BR /&gt;options {&lt;BR /&gt; directory "/var/named";&lt;BR /&gt; allow-query { ext; int; };&lt;BR /&gt; allow-transfer { none; };&lt;BR /&gt; notify no;&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;controls {&lt;BR /&gt; inet 127.0.0.1 allow { localhost; } keys { rndckey; };&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;zone "." IN {&lt;BR /&gt; type hint;&lt;BR /&gt; file "named.ca";&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;zone "tt.com" IN {&lt;BR /&gt; type slave;&lt;BR /&gt; file "tt.zone" ;&lt;BR /&gt; masters { 100.100.100.100; };&lt;BR /&gt; allow-query { any; };&lt;BR /&gt; notify yes;&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;zone "100.100.100.in-addr.arpa" IN {&lt;BR /&gt; type slave;&lt;BR /&gt; file "tt100.rev";&lt;BR /&gt; masters { 100.100.100.100; };&lt;BR /&gt; allow-query { any; };&lt;BR /&gt; notify yes;&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;zone "200.200.200.in-addr.arpa" IN {&lt;BR /&gt; type slave;&lt;BR /&gt; file "tt200.rev";&lt;BR /&gt; masters { 100.100.100.100; };&lt;BR /&gt; allow-query { any; };&lt;BR /&gt; notify yes;&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;zone "localhost" IN {&lt;BR /&gt; type master;&lt;BR /&gt; file "localhost.zone";&lt;BR /&gt; allow-update { none; };&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;zone "0.0.127.in-addr.arpa" IN {&lt;BR /&gt; type master;&lt;BR /&gt; file "named.local";&lt;BR /&gt; allow-update { none; };&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;include "/etc/rndc.key";&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 30 Mar 2005 07:41:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/master-slave-dns-on-different-network-ip/m-p/3514197#M86994</guid>
      <dc:creator>tuhintt</dc:creator>
      <dc:date>2005-03-30T07:41:00Z</dc:date>
    </item>
    <item>
      <title>Re: master slave dns on different network IP</title>
      <link>https://community.hpe.com/t5/operating-system-linux/master-slave-dns-on-different-network-ip/m-p/3514198#M86995</link>
      <description>Hi tuhintt,&lt;BR /&gt;&lt;BR /&gt;Your file is very long, so stating a confident comment is somewhat difficult, but it seems it should work. the only thing I suspect is, you should define the IP of slave server in options section of master server, where you have written 'none'.but it might work because in zone file you 've explicitly defined zone transfer to be allowed to slave.&lt;BR /&gt;&lt;BR /&gt;regards,</description>
      <pubDate>Thu, 31 Mar 2005 05:46:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/master-slave-dns-on-different-network-ip/m-p/3514198#M86995</guid>
      <dc:creator>kcpant</dc:creator>
      <dc:date>2005-03-31T05:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: master slave dns on different network IP</title>
      <link>https://community.hpe.com/t5/operating-system-linux/master-slave-dns-on-different-network-ip/m-p/3514199#M86996</link>
      <description>thank u for ur suggest, one more this, is it legal to add my own domain name (tt.com) as an A record like,&lt;BR /&gt;&lt;BR /&gt;@   IN SOA  ns1.tt.com. root.tt.com.&lt;BR /&gt;(&lt;BR /&gt;             1 &lt;BR /&gt;            3H &lt;BR /&gt;           15M &lt;BR /&gt;            1W &lt;BR /&gt;            1D )&lt;BR /&gt;&lt;BR /&gt;            IN NS ns1.tt.com.&lt;BR /&gt;            IN NS ns2.tt.com.&lt;BR /&gt;tt.com.     IN A 100.100.100.100 //my own dom&lt;BR /&gt;&lt;BR /&gt;ns1.tt.com. IN A 100.100.100.100&lt;BR /&gt;ns2.tt.com. IN A 200.200.200.200</description>
      <pubDate>Fri, 01 Apr 2005 22:40:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/master-slave-dns-on-different-network-ip/m-p/3514199#M86996</guid>
      <dc:creator>tuhintt</dc:creator>
      <dc:date>2005-04-01T22:40:47Z</dc:date>
    </item>
    <item>
      <title>Re: master slave dns on different network IP</title>
      <link>https://community.hpe.com/t5/operating-system-linux/master-slave-dns-on-different-network-ip/m-p/3514200#M86997</link>
      <description>tuhintt,&lt;BR /&gt;&lt;BR /&gt;It is legal to include your actual domain name in an A record as you have done.  All you are doing is assigning an IP address to a name.  Since you have the authority to assign names and addresses for your domain, that authority includes the name of the domain itself.&lt;BR /&gt;&lt;BR /&gt;The result is that if someone tries to ping tt.com they will be pinging the system at 100.100.100.100 just as if they tried to ping ns1.tt.com.</description>
      <pubDate>Tue, 05 Apr 2005 08:52:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/master-slave-dns-on-different-network-ip/m-p/3514200#M86997</guid>
      <dc:creator>Arthur Hecker</dc:creator>
      <dc:date>2005-04-05T08:52:01Z</dc:date>
    </item>
  </channel>
</rss>

