2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

4889. [func] Warn about the use of old root keys without the new

root key being present.  Warn about dlv.isc.org's
                        key being present. Warn about both managed and
                        trusted root keys being present. [RT #43670]
This commit is contained in:
Mark Andrews
2018-02-09 12:04:45 +11:00
parent 5d2b48f270
commit baef0ca988
8 changed files with 270 additions and 7 deletions

View File

@@ -7820,8 +7820,8 @@ load_configuration(const char *filename, named_server_t *server,
if (access(server->bindkeysfile, R_OK) == 0) {
isc_log_write(named_g_lctx, NAMED_LOGCATEGORY_GENERAL,
NAMED_LOGMODULE_SERVER, ISC_LOG_INFO,
"reading built-in trusted "
"keys from file '%s'", server->bindkeysfile);
"reading built-in trust anchors "
"from file '%s'", server->bindkeysfile);
CHECK(cfg_parser_create(named_g_mctx, named_g_lctx,
&bindkeys_parser));
@@ -7832,8 +7832,8 @@ load_configuration(const char *filename, named_server_t *server,
} else {
isc_log_write(named_g_lctx, NAMED_LOGCATEGORY_GENERAL,
NAMED_LOGMODULE_SERVER, ISC_LOG_INFO,
"unable to open '%s' using built-in keys",
server->bindkeysfile);
"unable to open '%s'; using built-in keys "
"instead", server->bindkeysfile);
}
/* Ensure exclusive access to configuration data. */