also-notify

FUJITA Kazutoshi fujita at soum.co.jp
Mon Dec 10 08:51:50 UTC 2001


From: Oleg Prokopyev <riiki at gu.net>
Subject: also-notify
Date: Mon, 10 Dec 2001 10:36:06 +0200
Message-ID: <3C1473F6.19B10CC3 at gu.net>

> I got  question about "also-notify"
> 
> i have the following :
> 
> zone "xxx.xxx" {
>         type master;
>         file "xxx.xxx";
>         allow-transfer {
>                 x.x.x.x;
>         };
>         also-notify y.y.y.y;
> };
> 
> but NOTIFY is not sent to y.y.y.y
> 
> whats the reason?

it requires '{ ip_addr; [ ip_addr; ... ] };' clause.
try followings

zone "xxx.xxx" {
	type master;
	file "xxx.xxx";
	allow-transfer {
		x.x.x.x;
	};
	also-notify {
		y.y.y.y;
	};
};


Regards,


More information about the bind-users mailing list