From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <68831c7860ecea6d621f0b3ef404702c@quanstro.net> From: erik quanstrom Date: Fri, 17 Mar 2006 07:44:17 -0600 To: 9fans@cse.psu.edu Subject: Re: [9fans] zonetransfer _from_ plan9 MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Topicbox-Message-UUID: 157ec482-ead1-11e9-9d60-3106f5b1d025 you're right. i'm suffering from yoda-think. your plan 9 server (master) should be sending the slaves a NOTIFY message for changes. dnstcp should get the AXFR that comes back from the unix slave. perhaps you could put a syslog line in dnstcp to make sure it's being run. i'd try this to make sure the AXFR is coming back: dblookup.c:197,202 - dblookup.c~steve:197,203 f = cnamerr; break; case Taxfr: + syslog(0, "dnsaxfr", "dnsaxfr(db=%s, name=%s)", db, name); case Tixfr: return doaxfr(db, name); default: (make sure you touch /sys/log/dnsaxfr first.) - erik On Fri Mar 17 02:56:25 CST 2006, steve@quintile.net wrote: > Thanks Eric, > > But from my reading of the manpages zonefresh is used for transfering > dns data into plan9 (Unix->Plan9). I am unable to transfer my zone out > of plan9 (Plan9->Unix). > > FYI I wrote zonefresh though I have only used it for debug rather than > in a live DNS system, see /n/sources/contrib/steve/zonefresh.tar.bz2. > > -Steve