Re: Dynamic updates to multiple masters

2023-08-02 Thread Fred Morris
? I expect at least 50 words each for why it was chosen, and why it works. Am I bad with math? Isn't the DNS Way to secondary zones from a master to achieve this? I'm trying to implement dynamic updates but I am wondering if there is any way to avoid sending an update to each of t

Re: Dynamic updates to multiple masters

2023-08-02 Thread Matus UHLAR - fantomas
On 02.08.23 11:53, Shailendra Gautam wrote: I have four authoritative dns servers, all running in master mode for my zone for high availability, currently they all pull a static zonefile. I'm trying to implement dynamic updates but I am wondering if there is any way to avoid sending an upda

Dynamic updates to multiple masters

2023-08-01 Thread Shailendra Gautam
Hello, I have four authoritative dns servers, all running in master mode for my zone for high availability, currently they all pull a static zonefile. I'm trying to implement dynamic updates but I am wondering if there is any way to avoid sending an update to each of them, and send the u

Re: Restrict dynamic updates to one domain - disallow subdomains

2023-02-16 Thread André Steden via bind-users
I solved the problem with a small daemon and grant external. It was not easy for me since I am not a C programmer. It would be nice if there would be some examples in C or Python in the future. regex support for grant rules would also be nice. André Am 14.02.2023 um 14:18 schrieb Mark Andre

Re: Restrict dynamic updates to one domain - disallow subdomains

2023-02-14 Thread Mark Andrews
Use external. You can create any rule you can think of with that. > On 14 Feb 2023, at 20:29, André Steden wrote: > > I want an external server to be able to update all the hosts (A) records > inside the example.de domain. > But i don't want that the external server can create subdomain entrie

Re: Restrict dynamic updates to one domain - disallow subdomains

2023-02-14 Thread André Steden via bind-users
I want an external server to be able to update all the hosts (A) records inside the example.de domain. But i don't want that the external server can create subdomain entries inside the example.de domain. Is this possible? What grant/deny rule must i use? -André Am 13.02.2023 um 23:33 schrieb

Re: Restrict dynamic updates to one domain - disallow subdomains

2023-02-13 Thread Mark Andrews
Step back and tell us what you are attempting to achieve. e.g. I want my hosts to be able to update their address records. grant admin-key subzone ANY; grant * self . A ; and use SIG(0) to sign the updates. The admin adds the public KEY record for the machine using ‘admin-ke

Re: Restrict dynamic updates to one domain - disallow subdomains

2023-02-13 Thread André Steden via bind-users
But i don't want to specify all possible hostnames in the update-policy settings . there are more than 350 hosts in the example.de domain. Am 13.02.2023 um 20:06 schrieb Jan-Piet Mens: is it possible to restrict dynamic dns updates to one domain? I think 'name' is what you're after: gr

Re: Restrict dynamic updates to one domain - disallow subdomains

2023-02-13 Thread Jan-Piet Mens
is it possible to restrict dynamic dns updates to one domain? I think 'name' is what you're after: grant key-name name host1.example.de. A; You will be aware that the type list can take multiple space-separated values. -JP -- Visit https://lists.isc.org/mailman/listinfo/bind-u

Restrict dynamic updates to one domain - disallow subdomains

2023-02-13 Thread André Steden via bind-users
Hello, is it possible to restrict dynamic dns updates to one domain? Allow this: update add host1.example.de 86400 a 1.1.1.1 update add host2.example.de 86400 a 2.2.2.2 Deny this: update add host1.subdomain1.example.de 86400 a 1.1.1.1 update add host2.anysubdomain.example.de 86400 a 2.2.2.2

Re: Using inline-signing, need to allow dynamic updates.

2017-02-27 Thread Mark Andrews
> auto-dnssec maintain; > > I now need to allow dynamic updates to support letsencrypt which needs > to add txt records when the certificate is renewed. Can I just add > > allow-update { key keyname-here; }; > > Or do I need to change the above configuration in some way

Using inline-signing, need to allow dynamic updates.

2017-02-27 Thread Thomas Schulz
Right now we have our external view for adi.com set up to use inline-signing with the following entries in our named.conf file; inline-signing yes; key-directory "dnssec"; auto-dnssec maintain; I now need to allow dynamic updates to support letsencrypt which needs to add txt record

RE: Promoting slave to master DNS server with dynamic updates

2014-09-11 Thread Stuart Browne
> -Original Message- > From: bind-users-boun...@lists.isc.org [mailto:bind-users- > boun...@lists.isc.org] On Behalf Of Mark Andrews > Sent: Friday, 12 September 2014 8:58 AM > To: John Miller > Cc: Bind Users Mailing List > Subject: Re: Promoting slave to master DN

Re: Promoting slave to master DNS server with dynamic updates

2014-09-11 Thread Mark Andrews
In message , John Miller writes: > > Hi Eric, > > Depends on how long you can live without dynamic updates, and how many > dynamic updates it's acceptable to lose in the event of a master failure. > Journal files are synced every 15 minutes, so in the event of a master

RE: Promoting slave to master DNS server with dynamic updates

2014-09-11 Thread Eric.BERTHIAUME.external
would provide us with a safety net regarding a crash? But then again I’m pretty confident a 15 minutes lost of update data is acceptable for production. For your main solution let me get this… My master with VIP gets the dynamic updates and since I have an also-notify configured he pushes the

Re: Promoting slave to master DNS server with dynamic updates

2014-09-11 Thread John Miller
Hi Eric, Depends on how long you can live without dynamic updates, and how many dynamic updates it's acceptable to lose in the event of a master failure. Journal files are synced every 15 minutes, so in the event of a master failure (in a single-master situation), you've lost at most

Promoting slave to master DNS server with dynamic updates

2014-09-11 Thread Eric.BERTHIAUME.external
(admin’s, vmware, autosys) to use dynamic updates with nsupdate for all tasks. Everything works dandy but a simple question remains: If the primary goes down for whatever reason, how can we quickly continue to update our DNS records on the secondary? What are the options? - Classic

Re: Recursive server forwarding dynamic updates

2013-10-03 Thread Kevin Darcy
Oct 2, 2013 at 8:56 AM, Phil Mayers <mailto:p.may...@imperial.ac.uk>> wrote: On 10/02/2013 07:51 AM, Bojan Tomic wrote: Hi, I'm looking for a way to setup a recursive/forwarding named server to forward dynamic updates See "allow-update-forward

Re: Recursive server forwarding dynamic updates

2013-10-02 Thread Phil Mayers
On 02/10/13 11:31, Mark Andrews wrote: Also TSIG signatures are preserved when UPDATE requests are forwarded. TSIG was designed to allow signed messages to be forwarded. The ID field is not covered by the the TSIG to allow the message to be forwarded. The slave does NOT have to know the shared

Re: Recursive server forwarding dynamic updates

2013-10-02 Thread Mark Andrews
; On 10/02/2013 07:51 AM, Bojan Tomic wrote: > > > >> Hi, > >> > >> I'm looking for a way to setup a recursive/forwarding named server to > >> forward dynamic updates > >> > > > > See "allow-update-forwarding" in the ARM. Obviously

Re: Recursive server forwarding dynamic updates

2013-10-02 Thread Bojan Tomic
We are building an internal closed solution so source IP checking is not necessary. On Wed, Oct 2, 2013 at 8:56 AM, Phil Mayers wrote: > On 10/02/2013 07:51 AM, Bojan Tomic wrote: > >> Hi, >> >> I'm looking for a way to setup a recursive/forwarding named server to &g

Re: Recursive server forwarding dynamic updates

2013-10-01 Thread Phil Mayers
On 10/02/2013 07:51 AM, Bojan Tomic wrote: Hi, I'm looking for a way to setup a recursive/forwarding named server to forward dynamic updates See "allow-update-forwarding" in the ARM. Obviously you will lose source IP / TSIG key info, so will need to perform access checks at

Recursive server forwarding dynamic updates

2013-10-01 Thread Bojan Tomic
Hi, I'm looking for a way to setup a recursive/forwarding named server to forward dynamic updates. I know this is not something that RFC2136 allows, but wondering if it can be done or someone else needs this functionality? Basically, instead of returning NOTAUTH a recursive server (or forwa

Re: make zones default to frozen while allowing dynamic updates

2011-07-30 Thread Naveen Nathan
> > I'm running BIND 9.3.1. Is there a way to specify a zone should default > > to frozen if an allow-update { ... } statement is specified? [snip] > 2) no > > I'm curious as to why you would want to do this. The operators of this specific BIND instance manually edit the zone files. I would l

Re: make zones default to frozen while allowing dynamic updates

2011-07-30 Thread Alan Clegg
On 7/30/2011 6:22 PM, Naveen Nathan wrote: > I'm running BIND 9.3.1. Is there a way to specify a zone should default > to frozen if an allow-update { ... } statement is specified? 1) upgrade 2) no I'm curious as to why you would want to do this. AlanC signature.asc Description: OpenPGP dig

make zones default to frozen while allowing dynamic updates

2011-07-30 Thread Naveen Nathan
Hi, I'm running BIND 9.3.1. Is there a way to specify a zone should default to frozen if an allow-update { ... } statement is specified? Thanks, Naveen Nathan ___ Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe from this

Re: dynamic updates via libbind.

2010-11-22 Thread Doug Barton
On 11/22/2010 13:57, Jack Tavares wrote: And the answer to that is, apparently, no. I don't speak for ISC so you should not take my statement(s) as relevant to the future of what may or may not happen with libbind. Meanwhile, is your question based on idle curiosity, or is there some specif

RE: dynamic updates via libbind.

2010-11-22 Thread Jack Tavares
age- > From: Doug Barton [mailto:do...@dougbarton.us] > Sent: Sunday, November 21, 2010 1:41 PM > To: Jack Tavares > Cc: bind-users@lists.isc.org > Subject: Re: dynamic updates via libbind. > > On Fri, 12 Nov 2010, Jack Tavares wrote: > > > I am currently using li

Re: dynamic updates via libbind.

2010-11-21 Thread Doug Barton
On Fri, 12 Nov 2010, Jack Tavares wrote: I am currently using libbind to do dynamic updates in "C". I have looked in the bind 9.7.x source and I don't see a replacement mechanism for this. libbind is now its own package, separate from the BIND sources. Look carefully on t

Re: dynamic updates via libbind.

2010-11-12 Thread Nuno Paquete
It would be interesting to have an API that we could use to make changes dynamically to DNS zones. I don't know if there is already such a tool. No dia 12 de Nov de 2010, às 18:57, "Jack Tavares" escreveu: > I am currently using libbind to do dynamic updates in "C"

dynamic updates via libbind.

2010-11-12 Thread Jack Tavares
I am currently using libbind to do dynamic updates in "C". I have looked in the bind 9.7.x source and I don't see a replacement mechanism for this. Is there one or is there one planned in bind10? Thanks -- Jack. ___ bind-users mailing

dynamic updates originated in the localhost, where the localhost is part of another view

2010-06-10 Thread Regid Ichira
   grant test-key name m1.test.;             };         ...     };     ...     }; Is it reasonable to expect dynamic updates, originated in the localhost and signed correctly by the test-key, would manage to update m1.test.? 2. Consider:     view "int" {     match-clients { localho

Re: Multi-mastering with dynamic updates

2010-05-17 Thread Kevin Darcy
eloped as a more elegant solution to DNS change management than editing zone files. If one*really* needs this kind of availability, one ends up having to make Dynamic Update just a front-end to some other kind of database, which then replicates and synchronizes the dynamic changes, under some sort

Re: Multi-mastering with dynamic updates

2010-05-17 Thread Linux Addict
On Mon, May 17, 2010 at 12:48 PM, Phil Mayers wrote: > On 17/05/10 16:59, Arcan_- wrote: > >> Thanks for the reply. >> >> Interesting. What's the use-case for this? >>> >> >> I have a few hundreds of dhcp clients and a two nodes pseudo cluster (for >> the VIP). >> I need a solution that enable hi

Re: Multi-mastering with dynamic updates

2010-05-17 Thread Phil Mayers
On 17/05/10 16:59, Arcan_- wrote: Thanks for the reply. Interesting. What's the use-case for this? I have a few hundreds of dhcp clients and a two nodes pseudo cluster (for the VIP). I need a solution that enable high availability on the same level of service. That way, if one node fails, t

Re: Multi-mastering with dynamic updates

2010-05-17 Thread Gary Wallis
Phil Mayers wrote: On 17/05/10 16:02, arcan...@free.fr wrote: Hi all, Like a lot of people over the web, I am looking for a clean multi-master (multi-primary) solution that allow dynamic updates. Interesting. What's the use-case for this? From my personal experience the most common u

Re: Multi-mastering with dynamic updates

2010-05-17 Thread Arcan_-
Thanks for the reply. > Interesting. What's the use-case for this? I have a few hundreds of dhcp clients and a two nodes pseudo cluster (for the VIP). I need a solution that enable high availability on the same level of service. That way, if one node fails, the other can fully take over. > You

Re: Multi-mastering with dynamic updates

2010-05-17 Thread Phil Mayers
On 17/05/10 16:02, arcan...@free.fr wrote: Hi all, Like a lot of people over the web, I am looking for a clean multi-master (multi-primary) solution that allow dynamic updates. Interesting. What's the use-case for this? And like a lot of people over the web, I haven't foun

Multi-mastering with dynamic updates

2010-05-17 Thread arcan666
Hi all, Like a lot of people over the web, I am looking for a clean multi-master (multi-primary) solution that allow dynamic updates. And like a lot of people over the web, I haven't found anything interesting. Google hasn't been friendly for now :/ I have tried : - bind-dlz over br

Re: Bind-9.5 GSS-TSIG and dynamic updates.

2009-02-13 Thread Rob Austein
At Mon, 9 Feb 2009 20:11:20 -0500, Peter Fraser wrote: > > HI All > I have been working to get dynamic updates working with bind-9.5 and > FreeBSD 7 So far I have done the following: > > 1. COmpiled bind with GSSAPI enabled. > 2. Added these to na

Bind-9.5 GSS-TSIG and dynamic updates.

2009-02-09 Thread Peter Fraser
HI All I have been working to get dynamic updates working with bind-9.5 and FreeBSD 7 So far I have done the following: 1. COmpiled bind with GSSAPI enabled. 2. Added these to named.conf options { ... tkey-gssapi-credential "DNS/mydomain.com"; ... };

Re: dynamic updates

2008-12-23 Thread Chris Thompson
one created by editing the zone's master file. But one A record doesn't "override" another with the same name, anyway. If a dynamic update just adds a new A record, both would coexist. The old one could be dynamically deleted in the same update transaction. If so, can

dynamic updates

2008-12-23 Thread wes
Would a dynamically created A record override an explicitly established one in the zone file? If so, can I deny dynamic updates for specific hostnames? I would like to allow my Windows computers to dynamically update their names, but I don't want to have a situation where a computer named