Re: Psuedo-Master Zones

2009-03-25 Thread dev_null
> I would use a #include in the zone file on the internal machine to include > the contents of zone file on the external machine. (NFS mount, or > cron'ed rsync copy.) > > You could use views/split horizon dns and run them both off of one server, > but this seems unneeded and n

multi-named instance exist?

2009-03-25 Thread dev_null
Hello, I found a strange case on bind server. when one named was running, I started another one or more (the same) named server again, they all got started successsfully. this is the ps output: nobody28312 1 0 10:10 ?00:00:00 /usr/local/bind/sbin/named -u nobody nobody2835

Re: multi-named instance exist?

2009-03-25 Thread dev_null
That's the good idea, I have written a script to archive that: start() { if ! ps -efw|grep 'named -u nobody'|grep -v grep >/dev/null 2>&1;then /usr/local/bind/sbin/named -u nobody fi } Thanks. > dev_n...@zoho.com wrote: > > Hello, > > > > I found a strange case on bind

Re: multi-named instance exist?

2009-03-25 Thread dev_null
I don't agree so much. some time when a system is reboot unnormally, named doesn't have the chance to remove its pid file. (when OS is shutdown normally, OS sends SIGTERM to named, named can exit and remove its own pid file.) after system is started, the pid number in name's pid file is maybe an

Re: multi-named instance exist?

2009-03-25 Thread dev_null
> If named is invoked successfully on startup, then the contents of the > PID file will be overwritten with the new PID value. > > If named *isn't* invoked successfully on startup, then that's a separate > error condition that should be detected and dealt with, within the whole > sta

PTR for localhost

2009-03-26 Thread dev_null
Hello, In recent version of Bind-9.6, is it needed for reverse parsing config of localhost? for example, zone "0.0.127.IN-ADDR.ARPA" { type master; file "local.rev"; }; thanks.___ bind-users mailing list bind-users@lists.isc.org https

config for views

2009-03-26 Thread dev_null
Hello, I want to config a named for two networks, using the view. for example, neta is for internal users, netb is for any other users. I got the named.conf below, do you have any suggestion on it? thanks. options { directory "/usr/local/bind"; recursion no; zone-statistics yes

Re: config for views

2009-03-26 Thread dev_null
2009 19:36:54 -0700 Kevin Darcy > > }; > That's the general idea, yes, but "someip" can't be used literally > unless it's defined as an ACL somewhere else in the config, of course, > and "recursion no" in "options" means that *neither* of these views can > be used for your own clients