<div>Hello,</div>
<div> </div>
<div>I am trying to configure 2 different domains on one host that only has one physical interface plummed.</div>
<div> </div>
<div>I think I have an errorthat I list the hostname of the interface in both zone files as below and this might be why I can't resolve properly. Do you see any mistakes in the files below?</div>
<div>The only active interface is 192.168.5.5</div>
<div>Thanks</div>
<div> </div>
<div> </div>
<div>root:/var/named# cat named.conf </div>
<div>options {<br> listen-on-v6 { none; };<br> listen-on { 192.168.5.5; };<br> directory "/var/named";<br>};</div>
<div>zone "0.0.127.in-addr.arpa" {<br>type master;<br>file "db.127.0.0";<br>};</div>
<div>zone "rac.local" {<br>type master;<br>file "db.rac";<br>};</div>
<div>zone "rac2.local" {<br>type master;<br>file "db.rac2";<br>};</div>
<div>zone "10.168.192.in-addr.arpa" {<br>type master;<br>file "db.192.168.10";<br>};</div>
<div>zone "20.168.192.in-addr.arpa" {<br>type master;<br>file "db.192.168.20";<br>};<br></div>
<div> </div>
<div>root:jedi:/var/named# cat db.rac<br>$TTL 86400<br>@ SOA jedi root ( 2 10800 3600 604800 600 )<br> NS jedi</div>
<div>localhost A 127.0.0.1<br>rac-scan A xxx.xxx.xxx.xxx<br> A xxx.xxx.xxx.xxx<br> A xxx.xxx.xxx.xxx<br> MX 10 rac-scan<br>
</div>
<div> <br>root:jedi:/var/named# cat db.rac2<br>$TTL 86400<br>@ SOA jedi root ( 3 10800 3600 604800 600 )<br> NS jedi</div>
<div>localhost A 127.0.0.1<br>rac2-scan A xxx.xxx.xxx.xxx<br> A xxx.xxx.xxx.xxx<br> A xxx.xxx.xxx.xxx<br> MX 10 rac2-scan<br>
</div>