Re: [Bind-dlz-testers] How to allow zone transfer?
Brought to you by:
crodster
|
From: Graeme F. <gr...@gr...> - 2006-09-12 16:21:59
|
On 12/09/2006 16:08, Ronald Wiplinger wrote: > I inserted the line with the secondary's ip address. Than I reloaded > both dns and still get on the slave dns: > Sep 12 23:02:54 dns named[24445]: transfer of 'xxx.com/IN' from > xx.xx.xx.xx#53: failed while receiving responses: REFUSED > Sep 12 23:02:54 dns named[24445]: transfer of 'xxx.com/IN' from > xx.xx.xx.xx#53: end of transfer Aha. [cough] You need to massage your SQL query a bit to make it match properly: {select zone from xfr_table where (zone = '%zone%' or zone='*') and client = '%client%'} That way, if (( the zone matches it returns true, or if it matches the * it returns true ) AND ( the client matches it returns true )). The client is then permitted to transfer. Graeme |