DNSSEC key rollover

2015-01-19 Thread John
I wrote myself a small bash script to handle ZSK rollover, it might handle KSK but I have tried it. All it does is to setup for a DNSSEC-keygen. My idea is to automatically pick a ZSK and use it as the base for the next key set, as per the -S param in DNSSEC-keygen. The only real additions are t

Re: DNSSEC

2015-01-19 Thread John
DNSSEC-DEPLOYMENT was recently moved to a new server in a different organization. Things are supposed to be progressing, but it seems to be taking forever to get things like list management up. Last post I saw said mid-January. That should mean about now. -- R. Kevin Oberman, Network Engineer

Re: also-notify with multiple occurrences of same IP address

2015-01-19 Thread Graham Clinch
On 19/01/2015 19:10, Evan Hunt wrote: > On Mon, Jan 19, 2015 at 05:56:52PM +, Graham Clinch wrote: >> I think this is down to an optimisation in lib/dns/zone.c which checks >> whether a notification is already queued to the same 'dst' address, >> ignoring whether the key differs (roughly line 9

Re: also-notify with multiple occurrences of same IP address

2015-01-19 Thread Evan Hunt
On Mon, Jan 19, 2015 at 05:56:52PM +, Graham Clinch wrote: > I think this is down to an optimisation in lib/dns/zone.c which checks > whether a notification is already queued to the same 'dst' address, > ignoring whether the key differs (roughly line 9990?). > > Is this the 'correct' behaviour

also-notify with multiple occurrences of same IP address

2015-01-19 Thread Graham Clinch
Hi List, Using BIND 9.9, I am trying to notify two different slave views on the same host using TSIG keys as the differentiator: also-notify { 127.0.0.1 key slave1; 127.0.0.1 key slave2; }; It appears that only the first (slave1) receives a notify. If I change the second address to a different

Re: Trying to define an "in-view" zone without success

2015-01-19 Thread Tony Finch
Alain Fontaine wrote: > view "interne" { > match-clients { clients-internes; }; > allow-query { clients-internes; }; > zone testzone.net { > type slave; > file "slave.int/net.testzone"; > masters { address_of_master; }; > }; > }; >

Re: reject invalid dns queries

2015-01-19 Thread Alan Clegg
On 1/19/15 9:14 AM, Daniel Dawalibi wrote: > Invalid DNS queries : non-existent domains that do not resolve to any > IP as mentioned in the below example. We are trying to protect our > DNS servers from a number of invalid dns queries targeting our > caching server and originated from different so

Re: reject invalid dns queries

2015-01-19 Thread Matus UHLAR - fantomas
On 19.01.15 16:14, Daniel Dawalibi wrote: Invalid DNS queries : non-existent domains that do not resolve to any IP as mentioned in the below example. you should better not use this definition. We are trying to protect our DNS servers from a number of invalid dns queries targeting our caching

Trying to define an "in-view" zone without success

2015-01-19 Thread Alain Fontaine
Running BIND 9.10.1-P1, I am trying to use the new 'in-view' option. Here is a digest of the configuration: acl "clients-internes" { list_of_inside_addresses; }; view "interne" { match-clients { clients-internes; }; recursion yes; allow-query { clients-internes; }

RE: reject invalid dns queries

2015-01-19 Thread Daniel Dawalibi
Hello Invalid DNS queries : non-existent domains that do not resolve to any IP as mentioned in the below example. We are trying to protect our DNS servers from a number of invalid dns queries targeting our caching server and originated from different source IPs. Is there any way to drop these r