The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Net::DNS::Create::Bind - Bind backend for Net::DNS::Create

SYNOPSIS

 use Net::DNS::Create qw(Bind), default_ttl => "1h", conf_prefix => "local_", dest_dir => "./bind";

 domain "example.com", { %records };

 master "master.conf", "/etc/bind/";

DESCRIPTION

You should never use Net::DNS::Create::Bind directly. Instead pass "Bind" to Net::DNS::Create in the "use" line.

OPTIONS

The following options are specific to Net::DNS::Create::Bind:

conf_prefix

This controls how the file names for each zone file are created. If you have 2 domains, "example.com" and "example.net", and the conf_prefix is "local_" then the zone files will be named "local_example.com.zone" and "local_example.net.zone".

The default conf_prefix is ''.

dest_dir

This controls where the master and zone files are put. It defaults to ''.

MASTER PARAMETERS

 master "filename", "prefix", @extra_lines;
filename

The file name for the master file. The file will be placed in the directory specified by the dest_dir option, described above.

prefix

Bind requires absolute path names. This parameter controls the include path for the zone files inside the master file. You will probably want '/etc/bind' or '/etc/named'.

@extra_lines

This lets you add extra configuration lines to the master.conf file, if you need to for some reason.

SEE ALSO

The Bind Home Page

Net::DNS::Create

The Net::DNS::Create Home Page

AUTHOR

David Caldwell <david@porkrind.org>

COPYRIGHT AND LICENSE

Copyright (C) 2013 by David Caldwell

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.12.4 or, at your option, any later version of Perl 5 you may have available.