Re: no servers found

2014-08-21 Thread Adamiec, Lawrence
I had someone at our main campus ensure port 53 is open for this zone.  The
zone does have its own IP.  Even with opening the ports, I still get time
out errors.

Does anyone have any other ideas?

Thank you.
Larry



On Tue, Aug 19, 2014 at 4:07 PM, Adamiec, Lawrence ladam...@kentlaw.iit.edu
 wrote:

 I should have said it was a Solaris 10 zone (container).  I am not using
 VirtualBox, VMware, or other third party software.

 Larry



 On Tue, Aug 19, 2014 at 3:54 PM, Charles Swiger cswi...@mac.com wrote:

 Hi--

 On Aug 19, 2014, at 1:47 PM, Adamiec, Lawrence 
 ladam...@kentlaw.iit.edu wrote:

 I am running BIND 9.6-ESV-R5-P1 on a Solaris 10 server.  I can run
 queries without specifying a name server on my Solaris servers
 successfully.  When I try to run a query on a Solaris 10 virtual server, I
 get connection timed out; no servers could be reached error.

 If I add the name servers from our main campus (or 8.8.8.8) to the
 virtual server's resolv.conf file, then dig will use the other name server
 and skip my name server to resolve the query which is successful.


 It's fairly normal for virtualization stuff to forbid network access from
 a VM to the host, via some combination of network interface configuration
 and NAT/firewall rules.

 If you're using VirtualBox, look into bridged adaptor, ie:

   https://www.virtualbox.org/manual/ch06.html#network_bridged

 Regards,
 --
 -Chuck



___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users

Re: no servers found

2014-08-21 Thread Jeremy C. Reed
In the virtual server, use dig @a.b.c.d with the IP address of the DNS 
servers you want to use to see if that works.

If you are running named in that same virtual server, try dig 
@127.0.0.1.  If that works, then just change your resolv.conf to point 
to only that nameserver 127.0.0.1

___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users


Re: no servers found

2014-08-21 Thread Adamiec, Lawrence
Hi,

Using dig @My-NAME-SERVER works.  I am not running named on the virtual
server using dig @ 127.0.0.1 does not work.


Thank you.
Larry



On Thu, Aug 21, 2014 at 11:10 AM, Jeremy C. Reed jr...@isc.org wrote:

 In the virtual server, use dig @a.b.c.d with the IP address of the DNS
 servers you want to use to see if that works.

 If you are running named in that same virtual server, try dig
 @127.0.0.1.  If that works, then just change your resolv.conf to point
 to only that nameserver 127.0.0.1


___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users

Re: no servers found

2014-08-21 Thread Jeremy C. Reed
On Thu, 21 Aug 2014, Adamiec, Lawrence wrote:

 Using dig @My-NAME-SERVER works.  I am not running named on the virtual
 server using dig @ 127.0.0.1 does not work.

Okay. Then change your /etc/resolv.conf to contain just the nameserver 
 and IP of that name server (and a couple others if you want) that 
works.
___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users

Re: no servers found

2014-08-21 Thread Adamiec, Lawrence
Jeremy,

I did have nameserverand the IP in the resolv.conf file.  I just found
the trouble.  I entered the wrong IP in the resolv.conf for my name
servers.  Now that I have corrected the IPs, everything seems to work OK.

Thanks to everyone who replied.



Thank you.
Larry



On Thu, Aug 21, 2014 at 11:48 AM, Jeremy C. Reed jr...@isc.org wrote:

 On Thu, 21 Aug 2014, Adamiec, Lawrence wrote:

  Using dig @My-NAME-SERVER works.  I am not running named on the virtual
  server using dig @ 127.0.0.1 does not work.

 Okay. Then change your /etc/resolv.conf to contain just the nameserver
  and IP of that name server (and a couple others if you want) that
 works.

___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users

no servers found

2014-08-19 Thread Adamiec, Lawrence
HI,

I am running BIND 9.6-ESV-R5-P1 on a Solaris 10 server.  I can run queries
without specifying a name server on my Solaris servers successfully.  When
I try to run a query on a Solaris 10 virtual server, I get connection
timed out; no servers could be reached error.

If I add the name servers from our main campus (or 8.8.8.8) to the virtual
server's resolv.conf file, then dig will use the other name server and skip
my name server to resolve the query which is successful.

If i use dig and specify my master name server, then the query works fine.

I do not understand why the virtual server cannot find the name servers on
my campus (my building) unless I specify it.


Host file contents of virtual server
#
# Internet host table
#
::1 localhost
127.0.0.1   localhost
64.131.119.61   dnstest.kentlaw.edu dnstest loghost
64.131.119.11   nsa.kentlaw.edu nsa
64.131.119.12   nsb.kentlaw.edu nsb


resolv.conf contents of virtual server

domain kentlaw.edu
nameserver 66.131.119.11
nameserver 66.131.119.12
nameserver 216.47.128.11
nameserver 216.47.128.12
nameserver 8.8.8.8
search kentlaw.edu


Larry

Lawrence Adamiec
UNIX Mgr/Web Support Specialist
Illinois Institute of Technology-DTC
565  W. Adams St.
Chicago, IL
60661
___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users

Re: no servers found

2014-08-19 Thread Charles Swiger
Hi--

On Aug 19, 2014, at 1:47 PM, Adamiec, Lawrence ladam...@kentlaw.iit.edu 
wrote:
 I am running BIND 9.6-ESV-R5-P1 on a Solaris 10 server.  I can run queries 
 without specifying a name server on my Solaris servers successfully.  When I 
 try to run a query on a Solaris 10 virtual server, I get connection timed 
 out; no servers could be reached error.
 
 If I add the name servers from our main campus (or 8.8.8.8) to the virtual 
 server's resolv.conf file, then dig will use the other name server and skip 
 my name server to resolve the query which is successful.

It's fairly normal for virtualization stuff to forbid network access from a VM 
to the host, via some combination of network interface configuration and 
NAT/firewall rules.

If you're using VirtualBox, look into bridged adaptor, ie:

  https://www.virtualbox.org/manual/ch06.html#network_bridged

Regards,
-- 
-Chuck

___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users

Re: no servers found

2014-08-19 Thread Adamiec, Lawrence
I should have said it was a Solaris 10 zone (container).  I am not using
VirtualBox, VMware, or other third party software.

Larry



On Tue, Aug 19, 2014 at 3:54 PM, Charles Swiger cswi...@mac.com wrote:

 Hi--

 On Aug 19, 2014, at 1:47 PM, Adamiec, Lawrence ladam...@kentlaw.iit.edu
 wrote:

 I am running BIND 9.6-ESV-R5-P1 on a Solaris 10 server.  I can run queries
 without specifying a name server on my Solaris servers successfully.  When
 I try to run a query on a Solaris 10 virtual server, I get connection
 timed out; no servers could be reached error.

 If I add the name servers from our main campus (or 8.8.8.8) to the virtual
 server's resolv.conf file, then dig will use the other name server and skip
 my name server to resolve the query which is successful.


 It's fairly normal for virtualization stuff to forbid network access from
 a VM to the host, via some combination of network interface configuration
 and NAT/firewall rules.

 If you're using VirtualBox, look into bridged adaptor, ie:

   https://www.virtualbox.org/manual/ch06.html#network_bridged

 Regards,
 --
 -Chuck


___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users