List: > named.conf as below. Had tested with and without "notify yes;" > > options { > directory "/var/named"; > }; > zone "." IN { > type hint; > file "named.local"; > }; > zone "dns1.domain.com" IN { > type master; > file "dns1.domain.com"; > notify yes; > }; > include "/etc/rndc.key"; Mine works, I have entries like this (other zones snipped out) in my named.conf file: options { directory "/var/named"; dump-file "/var/named/data/cache_dump.db"; statistics-file "/var/named/data/named_stats.txt"; query-source address * port 53; allow-query { lan; }; listen-on { 127.0.0.1; }; listen-on { 192.168/16; }; notify no; also-notify { 192.168.1.1; 192.168.1.4; }; dialup yes; cleaning-interval 15; heartbeat-interval 120; interface-interval 15; }; controls { inet 127.0.0.1 allow { localhost; } keys { rndckey; }; }; acl lan { 192.168/16; 127.0.0.1; }; zone "localdomain" { type master; file "localdomain.zone"; allow-update { key "rndckey"; }; allow-transfer { lan; }; notify yes; }; include "/etc/rndc.key"; -- Don't send private replies to my address, the mailbox is ignored. I read messages from the public lists.