detect if zone/s is frozen

2013-09-03 Thread Justin T Pryzby
Is there a nice way to tell if any zone is frozen (or a specific zone)? I'm hoping to implement a nagios check, since I have several times gotten distracted while making an update, and forgot to thawed the zone until something odd happens later on. Thanks, Justin

Re: Classless PTR query issue

2013-05-07 Thread Justin T Pryzby
I recommend dig +trace -x on one of your assigned IPs. Compare with the result from a known-good sub-24 rev dns delegation. The ISP should be returning something like: 162.48.168.205.in-addr.arpa. 43200 IN CNAME 162.160-175.48.168.205.in-addr.arpa. 160-175.48.168.205.in-addr.arpa. 43200 IN

Re: Classless PTR query issue

2013-05-07 Thread Justin T Pryzby
On Tue, May 07, 2013 at 09:52:16AM -0700, Michael Varre wrote: Thanks Justin, I've been testing with dig and that's how I got the failed results posted previously. My digs lead me to believe their zones are named the same as mine, with -'s instead of /'s. dig -x 1.1.1.90 +trace

Re: +, -, -E

2010-06-21 Thread Justin T Pryzby
On Mon, Jun 21, 2010 at 01:46:55PM -0500, Peter Laws wrote: What do they mean? I can't find them and yes, I've googled and also grepped the docs on isc.org ... Googling for symbols isn't easy.. http://www.isc.org/files/arm96.html#the_category_phrase |The query log entry reports the client's

Re: Script to delete zone from named.conf

2010-02-04 Thread Justin T Pryzby
On Thu, Feb 04, 2010 at 06:19:07PM +, Evan Hunt wrote: I know I can do that with grep, but you see I have 270 domains to delete from my named.conf. My question was more: has anyone got a working script that I can use in order to delete name from my named.conf file ? cat

Re: Script to delete zone from named.conf

2010-02-04 Thread Justin T Pryzby
On Thu, Feb 04, 2010 at 02:27:27PM -0700, Justin T Pryzby wrote: awk -v s=toxtracker.info 'BEGIN{RS=; s=zone \s\} $0~s{print $0\n}' Doh, should be: awk -v s=toxtracker.info 'BEGIN{RS=; s=zone \s\} $0!~s{print $0\n}' ___ bind-users mailing list bind

manually generating tsig keys

2009-02-08 Thread Justin T Pryzby
ARM9.5 still mentions manual generation of TSIG data: https://www.isc.org/software/bind/documentation/arm95#tsig Is there any advtantage to using -keygen ? ISTR some mention of an algorithm used to minimize the possibility of collisions. Or is that true for any key used with HMAC? Justin