restart named; missing TCP socket

2012-12-12 Thread Tony Finch
I have had a few instances recently when named has failed to re-open its TCP listening socket after a restart. This is particularly likely if I try to bounce it quickly with a command line like # rndc stop; /etc/rc.d/rc.named start The servers in question are recursive (apart from a few local

Just wondering if BIND can do GLB -Global Load Balancing Stuff?

2012-12-12 Thread Manish Rane
Hi Folks, Can BIND work as a Global Load Balancer? Or I am keen to know about constructing GTM kindaa stuff which can monitor the health of devices and route away traffic from failed ones by putting lower TTL value? I believe F5 3DNS does the same thing?

RE: restart named; missing TCP socket

2012-12-12 Thread Lightner, Jeff
Why use rndc to stop then the init script to start? Is there no /etc/rc.d/rc.named restart? On RHEL5 the init script has a restart option so it will stop then start. If a socket is open then it could take a finite amount of time for it to close making it unavailable on the restart if you

Re: restart named; missing TCP socket

2012-12-12 Thread Tony Finch
Mark Andrews ma...@isc.org wrote: You need to wait for named to stop p=`rndc stop -p | awk '{print $2}'` while kill -0 $p do sleep 1 done /etc/rc.d/rc.named start Thanks. Tony. -- f.anthony.n.finch d...@dotat.at http://dotat.at/ Forties, Cromarty: East, veering southeast, 4 or

Re: Just wondering if BIND can do GLB -Global Load Balancing Stuff?

2012-12-12 Thread cindyjohnson1
BIND does a sort of round robin to load balance among the IPs for a specific host; however, it does not monitor any health or routes and doesn't have the same capabilities as a GTM to choose what IP to answer for a name.I've worked with F5 GTM to monitor and route traffic based on health, status,

Re: Just wondering if BIND can do GLB -Global Load Balancing Stuff?

2012-12-12 Thread Manish Rane
I understand BIND by default can not work like GLB but wondering if there are any patches available or any other Open source software community is aware of who can perform such thing. On Wed, Dec 12, 2012 at 8:45 PM, cindyjohns...@verizon.net wrote: BIND does a sort of round robin to load

Strange Issue

2012-12-12 Thread Paula Bailey
I have a zone file in a view and there seems to be a single entry in the file that shows and nxdomain when queried. I have confirmed the view is correct and other entries are resolvable. I have also run named-checkconf which shows no errors. There are also no errors in the logs. Any ideas?

Re: Strange Issue

2012-12-12 Thread Jeremy C. Reed
On Wed, 12 Dec 2012, Paula Bailey wrote: I have a zone file in a view and there seems to be a single entry in the file that shows and nxdomain when queried. I have confirmed the view is correct and other entries are resolvable.  I have also run named-checkconf which shows no errors.  There

validation error

2012-12-12 Thread Robert Hardy
I've got bind 9.8.1-P1 setup as a DNSSEC validating name server. af.mil uses DNSSEC and various web based external validation tools seem happy with their setup. I've turned up my logging for DNSSEC validation and in bind for af.mil/DNSKEY only always fails validation. It seems perfectly happy with

Re: validation error

2012-12-12 Thread Mark Andrews
In message 55592.216.191.251.36.1355342351.squir...@secure.webcon.ca, Robert Hardy writes: I've got bind 9.8.1-P1 setup as a DNSSEC validating name server. af.mil uses DNSSEC and various web based external validation tools seem happy with their setup. I've turned up my logging for DNSSEC

Re: Just wondering if BIND can do GLB -Global Load Balancing Stuff?

2012-12-12 Thread Warren Kumari
On Dec 12, 2012, at 10:28 AM, Manish Rane manish...@gmail.com wrote: I understand BIND by default can not work like GLB but wondering if there are any patches available or any other Open source software community is aware of who can perform such thing. This isn't really something that

RE: Just wondering if BIND can do GLB -Global Load Balancing Stuff?

2012-12-12 Thread Mike Mitchell
A long time ago I used a perl script called lbnamed that acted as a DNS server and would monitor hosts and change the returned results based on aliveness and load. See http://www.stanford.edu/~riepel/lbnamed/ Mike Mitchell From:

is there a also-allow-transfer

2012-12-12 Thread Feng He
Hello, I have the allow-transfer{} section in the global options{} block. But for a special zone, I want to include another IP to allow transfer besides the global IPs. Is there a also-allow-transfer option in BIND? If not how to control this? Thanks.

Re: is there a also-allow-transfer

2012-12-12 Thread Mark Andrews
In message 50c9818e.2060...@nsbeta.info, Feng He writes: Hello, I have the allow-transfer{} section in the global options{} block. But for a special zone, I want to include another IP to allow transfer besides the global IPs. Is there a also-allow-transfer option in BIND? If not how

Re: is there a also-allow-transfer

2012-12-12 Thread Feng He
于 2012-12-13 15:23, Mark Andrews 写道: acl xxx { }; options { allow-transfer { xxx; }; }; zone yyy { allow-transfer { xxx; extra; }; } cool. thanks! ___ Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe