AXFR

Ralf Hildebrandt Ralf.Hildebrandt at innominate.de
Thu Jul 20 11:46:21 UTC 2000


On Don, Jul 20, 2000 at 01:40:33 +0200, Thomas Gilbert-Jespersen wrote:
> 
> How do i allow AXFR i my bind ???

Normally AXFR (== zone transfer) is allowed per default for all.

In BIND-8.x I use:

options {                                         
   allow-transfer {
      none;
   };                                         
};
# I disallow all AXFR's

zone "169.134.in-addr.arpa" {
   type slave;
   file "slave/134.169";
   masters {
      134.169.9.40;
   };
   allow-transfer {
      tu-bs_primaries;
   };
};                                         

# I allow AXFRS for the ACL tu-bs_primaries

# The ACL:
acl tu-bs_primaries {
   134.169.9.40;
   134.169.9.107;
   134.169.10.20;
   134.169.32.1;
   134.95.100.209;
   192.76.176.9;
};                                         



More information about the bind-users mailing list