Re: Script to creat PTR zone from zone file

2010-11-01 Thread Russell Jackson
On 11/01/2010 11:56 AM, Russell Jackson wrote: On 10/29/2010 04:13 PM, CT wrote: Looking to write a script to create the PTR records.. Not much on the Web.. DOM style manipulation using dnspython. It can fully parse a RFC style zone file including following $INCLUDE statements. I've been pla

Re: Script to creat PTR zone from zone file

2010-11-01 Thread Russell Jackson
On 10/29/2010 04:13 PM, CT wrote: Looking to write a script to create the PTR records.. Not much on the Web.. DOM style manipulation using dnspython. It can fully parse a RFC style zone file including following $INCLUDE statements. I've been planning on just having it do nsupdate calls rath

RE: DNSSEC, views & trusted keys...episode 43

2010-11-01 Thread Timothe Litt
I have tried to consolidate the several suggestions for how to configure a view that would respond with AD to recursive queries for authoritative zoned. I don't have a working recipe. I could use some help. At this point, it looks like the recursive view is still going to the external nameserv

Re: Script to creat PTR zone from zone file

2010-11-01 Thread big bond
Doh! I've sent a wrong version of script, with errors. Here's a correct one: #!/bin/bash NET=192.168.111 HOST=example.com LIMIT=254 for ((i=1;i<= LIMIT ; i++)) do IP=`echo $NET.$i` ARPA=`host $NET.$i | awk '{print $5}'` FIRSTOCT=`echo $IP $ARPA | gre

Re: Unknown option 'managed-keys' - why?

2010-11-01 Thread alexander
> I don't think the standard BIND RPMs for the above have support for 'managed-keys' as the highest version they go is up to BIND 9.3. Thanks Antonio and Kevin. My systems are using Bind 9.4. I'm going to upgrade to 9.7 as you suggested. Thank you! []s Alexander Brazil

Re: Script to creat PTR zone from zone file

2010-11-01 Thread big bond
Sorry, first message was sent not for the list but to Alan only. (by the way, why "reply" button does not send message to list by default?) 2010/10/30 Alan Clegg > On 10/30/2010 1:42 AM, Sukman wrote: > >> Looking to write a script to create the PTR records.. > >> Not much on the Web.. > > > I