Why is BIND DNS zone transfer update not displaying on terminal screen but showing in logs as up to date?

Clash Royale CLAN TAG#URR8PPP
I have configured a master/Slave zone, the zone transfer happens but does not display on the terminal screen, on the terminal screen it shows notifies ONLY, but when I check the /var/log/named the zone is up to date, is there a setting for it to display on screen.
MASTER NAMED.CONF FILE
acl internals 192.168.102.0/24; ;
options
listen-on port 53 127.0.0.1; 192.168.102.191; ;
listen-on-v6 port 53 ::1; ;
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
memstatistics-file "/var/named/data/named_mem_stats.txt";
recursing-file "/var/named/data/named.recursing";
secroots-file "/var/named/data/named.secroots";
allow-transfer 192.168.102.192; ;
allow-query localhost; internals; ;
recursion yes;
dnssec-enable yes;
dnssec-validation yes;
bindkeys-file "/etc/named.iscdlv.key";
managed-keys-directory "/var/named/dynamic";
pid-file "/run/named/named.pid";
session-keyfile "/run/named/session.key";
;
logging
channel default_debug
file "data/named.run";
severity dynamic;
;
;
zone "." IN
type hint;
file "named.ca";
;
zone "L00144445.local" type master; file "L00144445.db"; allow-transfer 192.168.102.192; ; notify yes; ;
zone "102.168.192.IN-ADDR.ARPA" type master; file "54444100L.db"; allow-transfer 192.168.102.192; ; notify yes; ;
include "/etc/named.rfc1912.zones";
include "/etc/named.root.key";
FORWARD LOOKUP FILE
$TTL 10
$ORIGIN L00144445.local.
@ IN SOA ns1.L00144445.local. admin.L00144445.local. (
0 ; serial
10 ; refresh
10 ; retry
10 ; expire
10 ) ; minimum
IN NS ns1.L00144445.local.
IN NS ns2.L00144445.local.
ns1 IN A 192.168.102.191
ns2 IN A 192.168.102.192
REVERSE LOOKUP FILE
$TTL 10
$ORIGIN 102.168.192.IN-ADDR.ARPA.
@ IN SOA ns1.L00144445.local. admin.L00144445.local. (
0 ; serial
10 ; refresh
10 ; retry
10 ; expire
10 ) ; minimum
IN NS ns1.L00144445.local.
IN NS ns2.L00144445.local.
191 IN PTR ns1.L00144445.local.
192 IN PTR ns2.L00144445.local.
SLAVE NAMED.CONF FILE
acl internals 192.168.102.0/24; ;
options
listen-on port 53 127.0.0.1; 192.168.102.192; ;
listen-on-v6 port 53 ::1; ;
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
memstatistics-file "/var/named/data/named_mem_stats.txt";
recursing-file "/var/named/data/named.recursing";
secroots-file "/var/named/data/named.secroots";
allow-notify 192.168.102.191; ;
allow-query localhost; internals; ;
recursion yes;
dnssec-enable yes;
dnssec-validation yes;
bindkeys-file "/etc/named.iscdlv.key";
managed-keys-directory "/var/named/dynamic";
pid-file "/run/named/named.pid";
session-keyfile "/run/named/session.key";
;
logging
channel default_debug
file "data/named.run";
severity dynamic;
;
;
zone "." IN
type hint;
file "named.ca";
;
zone "L00144445.local" type slave; masters 192.168.102.191; ; file "L00144445.db";;
zone "102.168.192.IN-ADDR.ARPA" type slave; masters 192.168.102.191; ; file "54444100L.db"; allow-transfer 192.168.102.191; ; notify yes; ;
include "/etc/named.rfc1912.zones";
include "/etc/named.root.key";

centos dns
add a comment |
I have configured a master/Slave zone, the zone transfer happens but does not display on the terminal screen, on the terminal screen it shows notifies ONLY, but when I check the /var/log/named the zone is up to date, is there a setting for it to display on screen.
MASTER NAMED.CONF FILE
acl internals 192.168.102.0/24; ;
options
listen-on port 53 127.0.0.1; 192.168.102.191; ;
listen-on-v6 port 53 ::1; ;
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
memstatistics-file "/var/named/data/named_mem_stats.txt";
recursing-file "/var/named/data/named.recursing";
secroots-file "/var/named/data/named.secroots";
allow-transfer 192.168.102.192; ;
allow-query localhost; internals; ;
recursion yes;
dnssec-enable yes;
dnssec-validation yes;
bindkeys-file "/etc/named.iscdlv.key";
managed-keys-directory "/var/named/dynamic";
pid-file "/run/named/named.pid";
session-keyfile "/run/named/session.key";
;
logging
channel default_debug
file "data/named.run";
severity dynamic;
;
;
zone "." IN
type hint;
file "named.ca";
;
zone "L00144445.local" type master; file "L00144445.db"; allow-transfer 192.168.102.192; ; notify yes; ;
zone "102.168.192.IN-ADDR.ARPA" type master; file "54444100L.db"; allow-transfer 192.168.102.192; ; notify yes; ;
include "/etc/named.rfc1912.zones";
include "/etc/named.root.key";
FORWARD LOOKUP FILE
$TTL 10
$ORIGIN L00144445.local.
@ IN SOA ns1.L00144445.local. admin.L00144445.local. (
0 ; serial
10 ; refresh
10 ; retry
10 ; expire
10 ) ; minimum
IN NS ns1.L00144445.local.
IN NS ns2.L00144445.local.
ns1 IN A 192.168.102.191
ns2 IN A 192.168.102.192
REVERSE LOOKUP FILE
$TTL 10
$ORIGIN 102.168.192.IN-ADDR.ARPA.
@ IN SOA ns1.L00144445.local. admin.L00144445.local. (
0 ; serial
10 ; refresh
10 ; retry
10 ; expire
10 ) ; minimum
IN NS ns1.L00144445.local.
IN NS ns2.L00144445.local.
191 IN PTR ns1.L00144445.local.
192 IN PTR ns2.L00144445.local.
SLAVE NAMED.CONF FILE
acl internals 192.168.102.0/24; ;
options
listen-on port 53 127.0.0.1; 192.168.102.192; ;
listen-on-v6 port 53 ::1; ;
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
memstatistics-file "/var/named/data/named_mem_stats.txt";
recursing-file "/var/named/data/named.recursing";
secroots-file "/var/named/data/named.secroots";
allow-notify 192.168.102.191; ;
allow-query localhost; internals; ;
recursion yes;
dnssec-enable yes;
dnssec-validation yes;
bindkeys-file "/etc/named.iscdlv.key";
managed-keys-directory "/var/named/dynamic";
pid-file "/run/named/named.pid";
session-keyfile "/run/named/session.key";
;
logging
channel default_debug
file "data/named.run";
severity dynamic;
;
;
zone "." IN
type hint;
file "named.ca";
;
zone "L00144445.local" type slave; masters 192.168.102.191; ; file "L00144445.db";;
zone "102.168.192.IN-ADDR.ARPA" type slave; masters 192.168.102.191; ; file "54444100L.db"; allow-transfer 192.168.102.191; ; notify yes; ;
include "/etc/named.rfc1912.zones";
include "/etc/named.root.key";

centos dns
1
What's in your picture? It's illegible here on my phone.
– roaima
Jan 1 at 20:47
Sorry, justbthe last 3 lines in both the terminal windows matter, since the right windows says ZONE UP TO DATE, while the left window still shows SENDING NOTIFIES
– Huud Rych
Jan 1 at 21:16
1
Ditto, illegible in my phone. Please avoid posting text as images.
– Rui F Ribeiro
Jan 2 at 8:49
Avoid using TLD.localas it will clash with mDNS.
– Patrick Mevzek
Jan 4 at 17:41
What do you mean by "displaying on screen"? In your configuration, you are specifically logging to a file, so everything that counts should be in that file.
– Patrick Mevzek
Jan 4 at 17:42
add a comment |
I have configured a master/Slave zone, the zone transfer happens but does not display on the terminal screen, on the terminal screen it shows notifies ONLY, but when I check the /var/log/named the zone is up to date, is there a setting for it to display on screen.
MASTER NAMED.CONF FILE
acl internals 192.168.102.0/24; ;
options
listen-on port 53 127.0.0.1; 192.168.102.191; ;
listen-on-v6 port 53 ::1; ;
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
memstatistics-file "/var/named/data/named_mem_stats.txt";
recursing-file "/var/named/data/named.recursing";
secroots-file "/var/named/data/named.secroots";
allow-transfer 192.168.102.192; ;
allow-query localhost; internals; ;
recursion yes;
dnssec-enable yes;
dnssec-validation yes;
bindkeys-file "/etc/named.iscdlv.key";
managed-keys-directory "/var/named/dynamic";
pid-file "/run/named/named.pid";
session-keyfile "/run/named/session.key";
;
logging
channel default_debug
file "data/named.run";
severity dynamic;
;
;
zone "." IN
type hint;
file "named.ca";
;
zone "L00144445.local" type master; file "L00144445.db"; allow-transfer 192.168.102.192; ; notify yes; ;
zone "102.168.192.IN-ADDR.ARPA" type master; file "54444100L.db"; allow-transfer 192.168.102.192; ; notify yes; ;
include "/etc/named.rfc1912.zones";
include "/etc/named.root.key";
FORWARD LOOKUP FILE
$TTL 10
$ORIGIN L00144445.local.
@ IN SOA ns1.L00144445.local. admin.L00144445.local. (
0 ; serial
10 ; refresh
10 ; retry
10 ; expire
10 ) ; minimum
IN NS ns1.L00144445.local.
IN NS ns2.L00144445.local.
ns1 IN A 192.168.102.191
ns2 IN A 192.168.102.192
REVERSE LOOKUP FILE
$TTL 10
$ORIGIN 102.168.192.IN-ADDR.ARPA.
@ IN SOA ns1.L00144445.local. admin.L00144445.local. (
0 ; serial
10 ; refresh
10 ; retry
10 ; expire
10 ) ; minimum
IN NS ns1.L00144445.local.
IN NS ns2.L00144445.local.
191 IN PTR ns1.L00144445.local.
192 IN PTR ns2.L00144445.local.
SLAVE NAMED.CONF FILE
acl internals 192.168.102.0/24; ;
options
listen-on port 53 127.0.0.1; 192.168.102.192; ;
listen-on-v6 port 53 ::1; ;
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
memstatistics-file "/var/named/data/named_mem_stats.txt";
recursing-file "/var/named/data/named.recursing";
secroots-file "/var/named/data/named.secroots";
allow-notify 192.168.102.191; ;
allow-query localhost; internals; ;
recursion yes;
dnssec-enable yes;
dnssec-validation yes;
bindkeys-file "/etc/named.iscdlv.key";
managed-keys-directory "/var/named/dynamic";
pid-file "/run/named/named.pid";
session-keyfile "/run/named/session.key";
;
logging
channel default_debug
file "data/named.run";
severity dynamic;
;
;
zone "." IN
type hint;
file "named.ca";
;
zone "L00144445.local" type slave; masters 192.168.102.191; ; file "L00144445.db";;
zone "102.168.192.IN-ADDR.ARPA" type slave; masters 192.168.102.191; ; file "54444100L.db"; allow-transfer 192.168.102.191; ; notify yes; ;
include "/etc/named.rfc1912.zones";
include "/etc/named.root.key";

centos dns
I have configured a master/Slave zone, the zone transfer happens but does not display on the terminal screen, on the terminal screen it shows notifies ONLY, but when I check the /var/log/named the zone is up to date, is there a setting for it to display on screen.
MASTER NAMED.CONF FILE
acl internals 192.168.102.0/24; ;
options
listen-on port 53 127.0.0.1; 192.168.102.191; ;
listen-on-v6 port 53 ::1; ;
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
memstatistics-file "/var/named/data/named_mem_stats.txt";
recursing-file "/var/named/data/named.recursing";
secroots-file "/var/named/data/named.secroots";
allow-transfer 192.168.102.192; ;
allow-query localhost; internals; ;
recursion yes;
dnssec-enable yes;
dnssec-validation yes;
bindkeys-file "/etc/named.iscdlv.key";
managed-keys-directory "/var/named/dynamic";
pid-file "/run/named/named.pid";
session-keyfile "/run/named/session.key";
;
logging
channel default_debug
file "data/named.run";
severity dynamic;
;
;
zone "." IN
type hint;
file "named.ca";
;
zone "L00144445.local" type master; file "L00144445.db"; allow-transfer 192.168.102.192; ; notify yes; ;
zone "102.168.192.IN-ADDR.ARPA" type master; file "54444100L.db"; allow-transfer 192.168.102.192; ; notify yes; ;
include "/etc/named.rfc1912.zones";
include "/etc/named.root.key";
FORWARD LOOKUP FILE
$TTL 10
$ORIGIN L00144445.local.
@ IN SOA ns1.L00144445.local. admin.L00144445.local. (
0 ; serial
10 ; refresh
10 ; retry
10 ; expire
10 ) ; minimum
IN NS ns1.L00144445.local.
IN NS ns2.L00144445.local.
ns1 IN A 192.168.102.191
ns2 IN A 192.168.102.192
REVERSE LOOKUP FILE
$TTL 10
$ORIGIN 102.168.192.IN-ADDR.ARPA.
@ IN SOA ns1.L00144445.local. admin.L00144445.local. (
0 ; serial
10 ; refresh
10 ; retry
10 ; expire
10 ) ; minimum
IN NS ns1.L00144445.local.
IN NS ns2.L00144445.local.
191 IN PTR ns1.L00144445.local.
192 IN PTR ns2.L00144445.local.
SLAVE NAMED.CONF FILE
acl internals 192.168.102.0/24; ;
options
listen-on port 53 127.0.0.1; 192.168.102.192; ;
listen-on-v6 port 53 ::1; ;
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
memstatistics-file "/var/named/data/named_mem_stats.txt";
recursing-file "/var/named/data/named.recursing";
secroots-file "/var/named/data/named.secroots";
allow-notify 192.168.102.191; ;
allow-query localhost; internals; ;
recursion yes;
dnssec-enable yes;
dnssec-validation yes;
bindkeys-file "/etc/named.iscdlv.key";
managed-keys-directory "/var/named/dynamic";
pid-file "/run/named/named.pid";
session-keyfile "/run/named/session.key";
;
logging
channel default_debug
file "data/named.run";
severity dynamic;
;
;
zone "." IN
type hint;
file "named.ca";
;
zone "L00144445.local" type slave; masters 192.168.102.191; ; file "L00144445.db";;
zone "102.168.192.IN-ADDR.ARPA" type slave; masters 192.168.102.191; ; file "54444100L.db"; allow-transfer 192.168.102.191; ; notify yes; ;
include "/etc/named.rfc1912.zones";
include "/etc/named.root.key";

centos dns
centos dns
asked Jan 1 at 19:27
Huud RychHuud Rych
215
215
1
What's in your picture? It's illegible here on my phone.
– roaima
Jan 1 at 20:47
Sorry, justbthe last 3 lines in both the terminal windows matter, since the right windows says ZONE UP TO DATE, while the left window still shows SENDING NOTIFIES
– Huud Rych
Jan 1 at 21:16
1
Ditto, illegible in my phone. Please avoid posting text as images.
– Rui F Ribeiro
Jan 2 at 8:49
Avoid using TLD.localas it will clash with mDNS.
– Patrick Mevzek
Jan 4 at 17:41
What do you mean by "displaying on screen"? In your configuration, you are specifically logging to a file, so everything that counts should be in that file.
– Patrick Mevzek
Jan 4 at 17:42
add a comment |
1
What's in your picture? It's illegible here on my phone.
– roaima
Jan 1 at 20:47
Sorry, justbthe last 3 lines in both the terminal windows matter, since the right windows says ZONE UP TO DATE, while the left window still shows SENDING NOTIFIES
– Huud Rych
Jan 1 at 21:16
1
Ditto, illegible in my phone. Please avoid posting text as images.
– Rui F Ribeiro
Jan 2 at 8:49
Avoid using TLD.localas it will clash with mDNS.
– Patrick Mevzek
Jan 4 at 17:41
What do you mean by "displaying on screen"? In your configuration, you are specifically logging to a file, so everything that counts should be in that file.
– Patrick Mevzek
Jan 4 at 17:42
1
1
What's in your picture? It's illegible here on my phone.
– roaima
Jan 1 at 20:47
What's in your picture? It's illegible here on my phone.
– roaima
Jan 1 at 20:47
Sorry, justbthe last 3 lines in both the terminal windows matter, since the right windows says ZONE UP TO DATE, while the left window still shows SENDING NOTIFIES
– Huud Rych
Jan 1 at 21:16
Sorry, justbthe last 3 lines in both the terminal windows matter, since the right windows says ZONE UP TO DATE, while the left window still shows SENDING NOTIFIES
– Huud Rych
Jan 1 at 21:16
1
1
Ditto, illegible in my phone. Please avoid posting text as images.
– Rui F Ribeiro
Jan 2 at 8:49
Ditto, illegible in my phone. Please avoid posting text as images.
– Rui F Ribeiro
Jan 2 at 8:49
Avoid using TLD
.local as it will clash with mDNS.– Patrick Mevzek
Jan 4 at 17:41
Avoid using TLD
.local as it will clash with mDNS.– Patrick Mevzek
Jan 4 at 17:41
What do you mean by "displaying on screen"? In your configuration, you are specifically logging to a file, so everything that counts should be in that file.
– Patrick Mevzek
Jan 4 at 17:42
What do you mean by "displaying on screen"? In your configuration, you are specifically logging to a file, so everything that counts should be in that file.
– Patrick Mevzek
Jan 4 at 17:42
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f491910%2fwhy-is-bind-dns-zone-transfer-update-not-displaying-on-terminal-screen-but-showi%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f491910%2fwhy-is-bind-dns-zone-transfer-update-not-displaying-on-terminal-screen-but-showi%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
What's in your picture? It's illegible here on my phone.
– roaima
Jan 1 at 20:47
Sorry, justbthe last 3 lines in both the terminal windows matter, since the right windows says ZONE UP TO DATE, while the left window still shows SENDING NOTIFIES
– Huud Rych
Jan 1 at 21:16
1
Ditto, illegible in my phone. Please avoid posting text as images.
– Rui F Ribeiro
Jan 2 at 8:49
Avoid using TLD
.localas it will clash with mDNS.– Patrick Mevzek
Jan 4 at 17:41
What do you mean by "displaying on screen"? In your configuration, you are specifically logging to a file, so everything that counts should be in that file.
– Patrick Mevzek
Jan 4 at 17:42