DNS-FLAG-Day

2019-01-27 Thread MEjaz
Hello sir, 

 

For the upcoming DNS Flag Day on February 1st, 2019. Is there any impact on
the user whose using bind name servers.  

 

As per the infoblox DNS service, they  will not be impacted on DNS Flag day.
So Do I need configure support for EDNS0 standards? In bind if yes how to do
that. 

 

Thanks in advance..

 

Ejaz 

___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users


Re: Bind has a database option instead of zone files?

2019-01-27 Thread Evan Hunt
On Sun, Jan 27, 2019 at 12:12:52PM +0530, rams wrote:
> Does Bind has a database option to read zones [if zones are in database]
> instead  of zone files? if yes , how to setup? can someone help me.

Yes, it does. Rather a lot of options for that, actually, some of which
are better than others. I'd need to know what database you're using and
what kind of zones you're serving (big or small, DNSSEC signed or not,
high-traffic or not) to be of much help.

-- 
Evan Hunt -- e...@isc.org
Internet Systems Consortium, Inc.
___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users


Re: Bind has a database option instead of zone files?

2019-01-27 Thread John Levine
In article  you write:
>-=-=-=-=-=-
>
>On 1/27/19 8:57 AM, John Levine wrote:
>> No.  If that's what you want to do, I'd suggest looking at PowerDNS.
>
>John, why would you recommend PowerDNS over BIND's DLZ options?

PowerDNS was designed to serve the data out of databases and its
database usage is a lot more mature, particularly if you use MySQL.

It's open source and well documented, so feel free to do your own research.

R's,
John
___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users


Re: Bind has a database option instead of zone files?

2019-01-27 Thread Grant Taylor via bind-users

On 1/27/19 8:57 AM, John Levine wrote:

No.  If that's what you want to do, I'd suggest looking at PowerDNS.


John, why would you recommend PowerDNS over BIND's DLZ options?

Rather what's wrong with DLZ that causes you to recommend a non-BIND 
solution?




--
Grant. . . .
unix || die



smime.p7s
Description: S/MIME Cryptographic Signature
___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users


Re: Bind has a database option instead of zone files?

2019-01-27 Thread Alan Clegg
On 1/27/19 1:42 AM, rams wrote:
> Does Bind has a database option to read zones [if zones are in database]
> instead  of zone files? if yes , how to setup? can someone help me.

A search with the terms "bind backend database" provides a number of
resources that might interest you.

Now, if you come back with a problem

AlanC
___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users


Re: Bind has a database option instead of zone files?

2019-01-27 Thread Rick Dicaire
I'm going to go out on a limb and say yes, databases are supported. I see
this in ./configure --help:

  --with-dlz-postgres=PATH
  Build with Postgres DLZ driver [yes|no|path].
  (Required to use Postgres with DLZ)
  --with-dlz-mysql=PATH   Build with MySQL DLZ driver [yes|no|path].
(Required
  to use MySQL with DLZ)
  --with-dlz-bdb=PATH Build with Berkeley DB DLZ driver [yes|no|path].
  (Required to use Berkeley DB with DLZ)
  --with-dlz-filesystem=ARG
  Build with filesystem DLZ driver [yes|no].
(Required
  to use file system driver with DLZ)
  --with-dlz-ldap=PATHBuild with LDAP DLZ driver [yes|no|path].
(Required
  to use LDAP with DLZ)
  --with-dlz-odbc=PATHBuild with ODBC DLZ driver [yes|no|path].
(Required
  to use ODBC with DLZ)
  --with-dlz-stub=ARG Build with stub DLZ driver [yes|no]. (Required to
  use stub driver with DLZ)

A look at Bind 9.12 ARM
https://ftp.isc.org/isc/bind9/9.12.0/doc/arm/Bv9ARM.pdf
shows in section 4.12:

4.12 DLZ (Dynamically Loadable Zones) . . . . . . . . . . . . . . . . . . .
. . . . . . . 41
Configuring DLZ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . 41
Sample DLZ Driver . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . 42

Curious, I used to use the sdb interface to postgres a number of years ago,
but I don't see any reference to sdb in ./configure anymore, guess its been
removed, deprecated in favor of dlz?

@bramesh See https://nlnet.nl/project/bind-dlz/200205-sane/paper.html

On Sun, Jan 27, 2019 at 10:58 AM John Levine  wrote:

> In article  you write:
> >-=-=-=-=-=-
> >
> >Greetings!!
> >Does Bind has a database option to read zones [if zones are in database]
> >instead  of zone files? if yes , how to setup? can someone help me.
>
> No.  If that's what you want to do, I'd suggest looking at PowerDNS.
>
>
>
> ___
> Please visit https://lists.isc.org/mailman/listinfo/bind-users to
> unsubscribe from this list
>
> bind-users mailing list
> bind-users@lists.isc.org
> https://lists.isc.org/mailman/listinfo/bind-users
>
___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users


Re: Bind has a database option instead of zone files?

2019-01-27 Thread John Levine
In article  you write:
>-=-=-=-=-=-
>
>Greetings!!
>Does Bind has a database option to read zones [if zones are in database]
>instead  of zone files? if yes , how to setup? can someone help me.

No.  If that's what you want to do, I'd suggest looking at PowerDNS.



___
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users