mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-29 21:47:59 +00:00
Add synonym configuration options for catalog zones
This commit adds 'primaries' and 'default-primaries' catalog zones configuration options synonyms for 'masters' and 'default-masters' respectively.
This commit is contained in:
parent
c50301f3c7
commit
ae53919154
@ -190,9 +190,12 @@ OPTIONS
|
||||
catalog-zones { zone string [ default-masters [ port integer ]
|
||||
[ dscp integer ] { ( remote-servers | ipv4_address [ port
|
||||
integer ] | ipv6_address [ port integer ] ) [ key
|
||||
string ] [ tls string ]; ... } ] [ zone-directory
|
||||
quoted_string ] [ in-memory boolean ] [ min-update-interval
|
||||
duration ]; ... };
|
||||
string ] [ tls string ]; ... } ] [ default-primaries [ port
|
||||
integer ] [ dscp integer ] { ( remote-servers |
|
||||
ipv4_address [ port integer ] | ipv6_address [ port
|
||||
integer ] ) [ key string ] [ tls string ]; ... } ] [
|
||||
zone-directory quoted_string ] [ in-memory boolean ] [
|
||||
min-update-interval duration ]; ... };
|
||||
check-dup-records ( fail | warn | ignore );
|
||||
check-integrity boolean;
|
||||
check-mx ( fail | warn | ignore );
|
||||
@ -621,9 +624,12 @@ VIEW
|
||||
catalog-zones { zone string [ default-masters [ port integer ]
|
||||
[ dscp integer ] { ( remote-servers | ipv4_address [ port
|
||||
integer ] | ipv6_address [ port integer ] ) [ key
|
||||
string ] [ tls string ]; ... } ] [ zone-directory
|
||||
quoted_string ] [ in-memory boolean ] [ min-update-interval
|
||||
duration ]; ... };
|
||||
string ] [ tls string ]; ... } ] [ default-primaries [ port
|
||||
integer ] [ dscp integer ] { ( remote-servers |
|
||||
ipv4_address [ port integer ] | ipv6_address [ port
|
||||
integer ] ) [ key string ] [ tls string ]; ... } ] [
|
||||
zone-directory quoted_string ] [ in-memory boolean ] [
|
||||
min-update-interval duration ]; ... };
|
||||
check-dup-records ( fail | warn | ignore );
|
||||
check-integrity boolean;
|
||||
check-mx ( fail | warn | ignore );
|
||||
|
@ -3085,6 +3085,9 @@ configure_catz_zone(dns_view_t *view, const cfg_obj_t *config,
|
||||
opts = dns_catz_zone_getdefoptions(zone);
|
||||
|
||||
obj = cfg_tuple_get(catz_obj, "default-masters");
|
||||
if (obj == NULL || !cfg_obj_istuple(obj)) {
|
||||
obj = cfg_tuple_get(catz_obj, "default-primaries");
|
||||
}
|
||||
if (obj != NULL && cfg_obj_istuple(obj)) {
|
||||
result = named_config_getipandkeylist(
|
||||
config, "primaries", obj, view->mctx, &opts->masters);
|
||||
|
@ -32,7 +32,7 @@ options {
|
||||
in-memory no
|
||||
zone-directory "zonedir";
|
||||
zone "catalog2.example"
|
||||
default-masters { 10.53.0.1 port @EXTRAPORT1@; }
|
||||
default-primaries { 10.53.0.1 port @EXTRAPORT1@; }
|
||||
in-memory yes;
|
||||
zone "catalog3.example"
|
||||
default-masters { 10.53.0.1; }
|
||||
@ -40,7 +40,7 @@ options {
|
||||
#T1 zone "catalog4.example"
|
||||
#T1 default-masters { 10.53.0.1; };
|
||||
#T2 zone "catalog5.example"
|
||||
#T2 default-masters { 10.53.0.1; };
|
||||
#T2 default-primaries { 10.53.0.1; };
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -470,7 +470,7 @@ echo_i "adding dom6.example. and an invalid global masters option (TSIG without
|
||||
ret=0
|
||||
$NSUPDATE -d <<END >> nsupdate.out.test$n 2>&1 || ret=1
|
||||
server 10.53.0.1 ${PORT}
|
||||
update add label1.masters.catalog1.example. 3600 IN TXT "tsig_key"
|
||||
update add label1.primaries.catalog1.example. 3600 IN TXT "tsig_key"
|
||||
update add 4346f565b4d63ddb99e5d2497ff22d04e878e8f8.zones.catalog1.example. 3600 IN PTR dom6.example.
|
||||
send
|
||||
END
|
||||
@ -490,7 +490,7 @@ echo_i "removing dom6.example. ($n)"
|
||||
ret=0
|
||||
$NSUPDATE -d <<END >> nsupdate.out.test$n 2>&1 || ret=1
|
||||
server 10.53.0.1 ${PORT}
|
||||
update delete label1.masters.catalog1.example. 3600 IN TXT "tsig_key"
|
||||
update delete label1.primaries.catalog1.example. 3600 IN TXT "tsig_key"
|
||||
update delete 4346f565b4d63ddb99e5d2497ff22d04e878e8f8.zones.catalog1.example. 3600 IN PTR dom6.example.
|
||||
send
|
||||
END
|
||||
@ -704,8 +704,8 @@ ret=0
|
||||
$NSUPDATE -d <<END >> nsupdate.out.test$n 2>&1 || ret=1
|
||||
server 10.53.0.1 ${PORT}
|
||||
update add f0f989bc71c5c8ca3a1eb9c9ab5246521907e3af.zones.catalog1.example. 3600 IN PTR dom9.example.
|
||||
update add label1.masters.f0f989bc71c5c8ca3a1eb9c9ab5246521907e3af.zones.catalog1.example. 3600 IN A 10.53.0.1
|
||||
update add label1.masters.f0f989bc71c5c8ca3a1eb9c9ab5246521907e3af.zones.catalog1.example. 3600 IN TXT "tsig_key"
|
||||
update add label1.primaries.f0f989bc71c5c8ca3a1eb9c9ab5246521907e3af.zones.catalog1.example. 3600 IN A 10.53.0.1
|
||||
update add label1.primaries.f0f989bc71c5c8ca3a1eb9c9ab5246521907e3af.zones.catalog1.example. 3600 IN TXT "tsig_key"
|
||||
send
|
||||
END
|
||||
if [ $ret -ne 0 ]; then echo_i "failed"; fi
|
||||
@ -732,8 +732,8 @@ ret=0
|
||||
$NSUPDATE -d <<END >> nsupdate.out.test$n 2>&1 || ret=1
|
||||
server 10.53.0.1 ${PORT}
|
||||
update delete f0f989bc71c5c8ca3a1eb9c9ab5246521907e3af.zones.catalog1.example. 3600 IN PTR dom9.example.
|
||||
update delete label1.masters.f0f989bc71c5c8ca3a1eb9c9ab5246521907e3af.zones.catalog1.example. 3600 IN A 10.53.0.1
|
||||
update delete label1.masters.f0f989bc71c5c8ca3a1eb9c9ab5246521907e3af.zones.catalog1.example. 3600 IN TXT "tsig_key"
|
||||
update delete label1.primaries.f0f989bc71c5c8ca3a1eb9c9ab5246521907e3af.zones.catalog1.example. 3600 IN A 10.53.0.1
|
||||
update delete label1.primaries.f0f989bc71c5c8ca3a1eb9c9ab5246521907e3af.zones.catalog1.example. 3600 IN TXT "tsig_key"
|
||||
send
|
||||
END
|
||||
if [ $ret -ne 0 ]; then echo_i "failed"; fi
|
||||
@ -761,7 +761,7 @@ ret=0
|
||||
$NSUPDATE -d <<END >> nsupdate.out.test$n 2>&1 || ret=1
|
||||
server 10.53.0.1 ${PORT}
|
||||
update add f0f989bc71c5c8ca3a1eb9c9ab5246521907e3af.zones.catalog1.example. 3600 IN PTR dom9.example.
|
||||
update add label1.masters.f0f989bc71c5c8ca3a1eb9c9ab5246521907e3af.zones.catalog1.example. 3600 IN TXT "tsig_key"
|
||||
update add label1.primaries.f0f989bc71c5c8ca3a1eb9c9ab5246521907e3af.zones.catalog1.example. 3600 IN TXT "tsig_key"
|
||||
send
|
||||
END
|
||||
if [ $ret -ne 0 ]; then echo_i "failed"; fi
|
||||
@ -781,7 +781,7 @@ ret=0
|
||||
$NSUPDATE -d <<END >> nsupdate.out.test$n 2>&1 || ret=1
|
||||
server 10.53.0.1 ${PORT}
|
||||
update delete f0f989bc71c5c8ca3a1eb9c9ab5246521907e3af.zones.catalog1.example. 3600 IN PTR dom9.example.
|
||||
update delete label1.masters.f0f989bc71c5c8ca3a1eb9c9ab5246521907e3af.zones.catalog1.example. 3600 IN TXT "tsig_key"
|
||||
update delete label1.primaries.f0f989bc71c5c8ca3a1eb9c9ab5246521907e3af.zones.catalog1.example. 3600 IN TXT "tsig_key"
|
||||
send
|
||||
END
|
||||
if [ $ret -ne 0 ]; then echo_i "failed"; fi
|
||||
|
25
bin/tests/system/checkconf/bad-catz-zone-primary-dup.conf
Normal file
25
bin/tests/system/checkconf/bad-catz-zone-primary-dup.conf
Normal file
@ -0,0 +1,25 @@
|
||||
/*
|
||||
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
||||
*
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*
|
||||
* See the COPYRIGHT file distributed with this work for additional
|
||||
* information regarding copyright ownership.
|
||||
*/
|
||||
|
||||
options {
|
||||
catalog-zones {
|
||||
zone "catalog.example"
|
||||
default-masters { 10.53.0.1; }
|
||||
default-primaries { 10.53.0.1 port 5304; }
|
||||
in-memory yes;
|
||||
};
|
||||
};
|
||||
|
||||
zone "catalog.example" {
|
||||
type secondary;
|
||||
file "catalog.example.db";
|
||||
primaries { 10.53.0.1; };
|
||||
};
|
@ -104,6 +104,9 @@ The options following the zone name are not required, and may be
|
||||
specified in any order.
|
||||
|
||||
``default-masters``
|
||||
Synonym for ``default-primaries``.
|
||||
|
||||
``default-primaries``
|
||||
This option defines the default primaries for member
|
||||
zones listed in a catalog zone, and can be overridden by options within
|
||||
a catalog zone. If no such options are included, then member zones
|
||||
@ -182,6 +185,8 @@ BIND currently supports the following options:
|
||||
either an A or AAAA record. If multiple primaries are set, the order in
|
||||
which they are used is random.
|
||||
|
||||
Note: ``masters`` can be used as a synonym for ``primaries``.
|
||||
|
||||
- A ``primaries`` with a TSIG key defined:
|
||||
|
||||
::
|
||||
@ -194,6 +199,8 @@ BIND currently supports the following options:
|
||||
key set. The TSIG key must be configured in the configuration file.
|
||||
``label`` can be any valid DNS label.
|
||||
|
||||
Note: ``masters`` can be used as a synonym for ``primaries``.
|
||||
|
||||
- ``allow-query`` and ``allow-transfer`` ACLs:
|
||||
|
||||
::
|
||||
|
@ -257,9 +257,12 @@ options {
|
||||
catalog\-zones { zone string [ default\-masters [ port integer ]
|
||||
[ dscp integer ] { ( remote\-servers | ipv4_address [ port
|
||||
integer ] | ipv6_address [ port integer ] ) [ key
|
||||
string ] [ tls string ]; ... } ] [ zone\-directory
|
||||
quoted_string ] [ in\-memory boolean ] [ min\-update\-interval
|
||||
duration ]; ... };
|
||||
string ] [ tls string ]; ... } ] [ default\-primaries [ port
|
||||
integer ] [ dscp integer ] { ( remote\-servers |
|
||||
ipv4_address [ port integer ] | ipv6_address [ port
|
||||
integer ] ) [ key string ] [ tls string ]; ... } ] [
|
||||
zone\-directory quoted_string ] [ in\-memory boolean ] [
|
||||
min\-update\-interval duration ]; ... };
|
||||
check\-dup\-records ( fail | warn | ignore );
|
||||
check\-integrity boolean;
|
||||
check\-mx ( fail | warn | ignore );
|
||||
@ -724,9 +727,12 @@ view string [ class ] {
|
||||
catalog\-zones { zone string [ default\-masters [ port integer ]
|
||||
[ dscp integer ] { ( remote\-servers | ipv4_address [ port
|
||||
integer ] | ipv6_address [ port integer ] ) [ key
|
||||
string ] [ tls string ]; ... } ] [ zone\-directory
|
||||
quoted_string ] [ in\-memory boolean ] [ min\-update\-interval
|
||||
duration ]; ... };
|
||||
string ] [ tls string ]; ... } ] [ default\-primaries [ port
|
||||
integer ] [ dscp integer ] { ( remote\-servers |
|
||||
ipv4_address [ port integer ] | ipv6_address [ port
|
||||
integer ] ) [ key string ] [ tls string ]; ... } ] [
|
||||
zone\-directory quoted_string ] [ in\-memory boolean ] [
|
||||
min\-update\-interval duration ]; ... };
|
||||
check\-dup\-records ( fail | warn | ignore );
|
||||
check\-integrity boolean;
|
||||
check\-mx ( fail | warn | ignore );
|
||||
|
@ -182,6 +182,9 @@ OPTIONS
|
||||
blackhole { address_match_element; ... };
|
||||
cache-file quoted_string;
|
||||
catalog-zones { zone string [ default-masters [ port integer ]
|
||||
[ dscp integer ] { ( masters | ipv4_address [ port
|
||||
integer ] | ipv6_address [ port integer ] ) [ key
|
||||
string ]; ... } ] [ default-primaries [ port integer ]
|
||||
[ dscp integer ] { ( masters | ipv4_address [ port
|
||||
integer ] | ipv6_address [ port integer ] ) [ key
|
||||
string ]; ... } ] [ zone-directory quoted_string ] [
|
||||
@ -557,6 +560,9 @@ VIEW
|
||||
auto-dnssec ( allow | maintain | off );
|
||||
cache-file quoted_string;
|
||||
catalog-zones { zone string [ default-masters [ port integer ]
|
||||
[ dscp integer ] { ( masters | ipv4_address [ port
|
||||
integer ] | ipv6_address [ port integer ] ) [ key
|
||||
string ]; ... } ] [ default-primaries [ port integer ]
|
||||
[ dscp integer ] { ( masters | ipv4_address [ port
|
||||
integer ] | ipv6_address [ port integer ] ) [ key
|
||||
string ]; ... } ] [ zone-directory quoted_string ] [
|
||||
|
@ -114,9 +114,12 @@ options {
|
||||
catalog-zones { zone <string> [ default-masters [ port <integer> ]
|
||||
[ dscp <integer> ] { ( <remote-servers> | <ipv4_address> [ port
|
||||
<integer> ] | <ipv6_address> [ port <integer> ] ) [ key
|
||||
<string> ] [ tls <string> ]; ... } ] [ zone-directory
|
||||
<quoted_string> ] [ in-memory <boolean> ] [ min-update-interval
|
||||
<duration> ]; ... };
|
||||
<string> ] [ tls <string> ]; ... } ] [ default-primaries [ port
|
||||
<integer> ] [ dscp <integer> ] { ( <remote-servers> |
|
||||
<ipv4_address> [ port <integer> ] | <ipv6_address> [ port
|
||||
<integer> ] ) [ key <string> ] [ tls <string> ]; ... } ] [
|
||||
zone-directory <quoted_string> ] [ in-memory <boolean> ] [
|
||||
min-update-interval <duration> ]; ... };
|
||||
check-dup-records ( fail | warn | ignore );
|
||||
check-integrity <boolean>;
|
||||
check-mx ( fail | warn | ignore );
|
||||
@ -500,9 +503,12 @@ view <string> [ <class> ] {
|
||||
catalog-zones { zone <string> [ default-masters [ port <integer> ]
|
||||
[ dscp <integer> ] { ( <remote-servers> | <ipv4_address> [ port
|
||||
<integer> ] | <ipv6_address> [ port <integer> ] ) [ key
|
||||
<string> ] [ tls <string> ]; ... } ] [ zone-directory
|
||||
<quoted_string> ] [ in-memory <boolean> ] [ min-update-interval
|
||||
<duration> ]; ... };
|
||||
<string> ] [ tls <string> ]; ... } ] [ default-primaries [ port
|
||||
<integer> ] [ dscp <integer> ] { ( <remote-servers> |
|
||||
<ipv4_address> [ port <integer> ] | <ipv6_address> [ port
|
||||
<integer> ] ) [ key <string> ] [ tls <string> ]; ... } ] [
|
||||
zone-directory <quoted_string> ] [ in-memory <boolean> ] [
|
||||
min-update-interval <duration> ]; ... };
|
||||
check-dup-records ( fail | warn | ignore );
|
||||
check-integrity <boolean>;
|
||||
check-mx ( fail | warn | ignore );
|
||||
|
@ -113,9 +113,12 @@ options {
|
||||
catalog-zones { zone <string> [ default-masters [ port <integer> ]
|
||||
[ dscp <integer> ] { ( <remote-servers> | <ipv4_address> [ port
|
||||
<integer> ] | <ipv6_address> [ port <integer> ] ) [ key
|
||||
<string> ] [ tls <string> ]; ... } ] [ zone-directory
|
||||
<quoted_string> ] [ in-memory <boolean> ] [ min-update-interval
|
||||
<duration> ]; ... };
|
||||
<string> ] [ tls <string> ]; ... } ] [ default-primaries [ port
|
||||
<integer> ] [ dscp <integer> ] { ( <remote-servers> |
|
||||
<ipv4_address> [ port <integer> ] | <ipv6_address> [ port
|
||||
<integer> ] ) [ key <string> ] [ tls <string> ]; ... } ] [
|
||||
zone-directory <quoted_string> ] [ in-memory <boolean> ] [
|
||||
min-update-interval <duration> ]; ... };
|
||||
check-dup-records ( fail | warn | ignore );
|
||||
check-integrity <boolean>;
|
||||
check-mx ( fail | warn | ignore );
|
||||
@ -497,9 +500,12 @@ view <string> [ <class> ] {
|
||||
catalog-zones { zone <string> [ default-masters [ port <integer> ]
|
||||
[ dscp <integer> ] { ( <remote-servers> | <ipv4_address> [ port
|
||||
<integer> ] | <ipv6_address> [ port <integer> ] ) [ key
|
||||
<string> ] [ tls <string> ]; ... } ] [ zone-directory
|
||||
<quoted_string> ] [ in-memory <boolean> ] [ min-update-interval
|
||||
<duration> ]; ... };
|
||||
<string> ] [ tls <string> ]; ... } ] [ default-primaries [ port
|
||||
<integer> ] [ dscp <integer> ] { ( <remote-servers> |
|
||||
<ipv4_address> [ port <integer> ] | <ipv6_address> [ port
|
||||
<integer> ] ) [ key <string> ] [ tls <string> ]; ... } ] [
|
||||
zone-directory <quoted_string> ] [ in-memory <boolean> ] [
|
||||
min-update-interval <duration> ]; ... };
|
||||
check-dup-records ( fail | warn | ignore );
|
||||
check-integrity <boolean>;
|
||||
check-mx ( fail | warn | ignore );
|
||||
|
@ -33,9 +33,12 @@
|
||||
catalog-zones { zone <string> [ default-masters [ port <integer> ]
|
||||
[ dscp <integer> ] { ( <remote-servers> | <ipv4_address> [ port
|
||||
<integer> ] | <ipv6_address> [ port <integer> ] ) [ key
|
||||
<string> ] [ tls <string> ]; ... } ] [ zone-directory
|
||||
<quoted_string> ] [ in-memory <boolean> ] [ min-update-interval
|
||||
<duration> ]; ... };
|
||||
<string> ] [ tls <string> ]; ... } ] [ default-primaries [ port
|
||||
<integer> ] [ dscp <integer> ] { ( <remote-servers> |
|
||||
<ipv4_address> [ port <integer> ] | <ipv6_address> [ port
|
||||
<integer> ] ) [ key <string> ] [ tls <string> ]; ... } ] [
|
||||
zone-directory <quoted_string> ] [ in-memory <boolean> ] [
|
||||
min-update-interval <duration> ]; ... };
|
||||
check-dup-records ( fail | warn | ignore );
|
||||
check-integrity <boolean>;
|
||||
check-mx ( fail | warn | ignore );
|
||||
|
@ -4557,6 +4557,50 @@ check_rpz_catz(const char *rpz_catz, const cfg_obj_t *rpz_obj,
|
||||
return (result);
|
||||
}
|
||||
|
||||
static isc_result_t
|
||||
check_catz(const cfg_obj_t *catz_obj, const char *viewname, isc_log_t *logctx) {
|
||||
const cfg_listelt_t *element;
|
||||
const cfg_obj_t *obj, *nameobj, *primariesobj;
|
||||
const char *zonename;
|
||||
const char *forview = " for view ";
|
||||
isc_result_t result;
|
||||
|
||||
if (viewname == NULL) {
|
||||
viewname = "";
|
||||
forview = "";
|
||||
}
|
||||
|
||||
result = ISC_R_SUCCESS;
|
||||
|
||||
obj = cfg_tuple_get(catz_obj, "zone list");
|
||||
|
||||
for (element = cfg_list_first(obj); element != NULL;
|
||||
element = cfg_list_next(element))
|
||||
{
|
||||
obj = cfg_listelt_value(element);
|
||||
nameobj = cfg_tuple_get(obj, "zone name");
|
||||
zonename = cfg_obj_asstring(nameobj);
|
||||
|
||||
primariesobj = cfg_tuple_get(obj, "default-primaries");
|
||||
if (primariesobj != NULL && cfg_obj_istuple(primariesobj)) {
|
||||
primariesobj = cfg_tuple_get(obj, "default-masters");
|
||||
if (primariesobj != NULL &&
|
||||
cfg_obj_istuple(primariesobj)) {
|
||||
cfg_obj_log(nameobj, logctx, ISC_LOG_ERROR,
|
||||
"catalog zone '%s'%s%s: "
|
||||
"'default-primaries' and "
|
||||
"'default-masters' can not be both "
|
||||
"defined",
|
||||
zonename, forview, viewname);
|
||||
result = ISC_R_FAILURE;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return (result);
|
||||
}
|
||||
|
||||
/*%
|
||||
* Data structure used for the 'callback_data' argument to check_one_plugin().
|
||||
*/
|
||||
@ -4736,6 +4780,19 @@ check_viewconf(const cfg_obj_t *config, const cfg_obj_t *voptions,
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Check catalog-zones configuration.
|
||||
*/
|
||||
if (opts != NULL) {
|
||||
obj = NULL;
|
||||
if ((cfg_map_get(opts, "catalog-zones", &obj) ==
|
||||
ISC_R_SUCCESS) &&
|
||||
(check_catz(obj, viewname, logctx) != ISC_R_SUCCESS))
|
||||
{
|
||||
result = ISC_R_FAILURE;
|
||||
}
|
||||
}
|
||||
|
||||
isc_symtab_destroy(&symtab);
|
||||
|
||||
/*
|
||||
|
@ -899,7 +899,8 @@ static catz_opt_t
|
||||
catz_get_option(const dns_label_t *option) {
|
||||
if (catz_opt_cmp(option, "zones")) {
|
||||
return (CATZ_OPT_ZONES);
|
||||
} else if (catz_opt_cmp(option, "masters")) {
|
||||
} else if (catz_opt_cmp(option, "masters") ||
|
||||
catz_opt_cmp(option, "primaries")) {
|
||||
return (CATZ_OPT_MASTERS);
|
||||
} else if (catz_opt_cmp(option, "allow-query")) {
|
||||
return (CATZ_OPT_ALLOW_QUERY);
|
||||
|
@ -48,7 +48,7 @@ struct dns_catz_entry_options {
|
||||
/*
|
||||
* Options that can be overridden in catalog zone
|
||||
*/
|
||||
/* default-masters definition */
|
||||
/* default-masters/default-primaries definition */
|
||||
dns_ipkeylist_t masters;
|
||||
|
||||
/* both as text in config format, NULL if none */
|
||||
|
@ -1842,6 +1842,7 @@ static cfg_type_t cfg_type_catz_zone = { "zone", parse_keyvalue,
|
||||
static cfg_tuplefielddef_t catz_zone_fields[] = {
|
||||
{ "zone name", &cfg_type_catz_zone, 0 },
|
||||
{ "default-masters", &cfg_type_namesockaddrkeylist, 0 },
|
||||
{ "default-primaries", &cfg_type_namesockaddrkeylist, 0 },
|
||||
{ "zone-directory", &cfg_type_qstring, 0 },
|
||||
{ "in-memory", &cfg_type_boolean, 0 },
|
||||
{ "min-update-interval", &cfg_type_duration, 0 },
|
||||
|
Loading…
x
Reference in New Issue
Block a user