Bogon

Ralf Hildebrandt R.Hildebrandt at tu-bs.de
Thu Jul 6 15:37:10 UTC 2000


On Thu, Jul 06, 2000 at 04:13:49PM +0100, Daws, Phil wrote:
> 
> Hi ...
> 
> When using ACL with the blackhole function I keep getting errors ... eg.
> 
> acl "bogon" {
> 	0.0.0.0/8;
> };
> 
> options {
> 	directory "/var/dns";
> 	blackhole bogon;
> };
> 
> What is wrong with this ?

You're missing brackets:
options {
   directory "/var/dns";                     
   blackhole {
      bogon;
   };                                                                       
};

acl "bogon" {
   0.0.0.0/8;     // Null address
   1.0.0.0/8;     // IANA reserved, popular fakes
   2.0.0.0/8;
   192.0.2.0/24;  // Test address
   224.0.0.0/3;   // Multicast addresses
   // Enterprise networks may or may not be bogus.
   10.0.0.0/8;
   172.16.0.0/12;
   192.168.0.0/16;
};                                                                       



More information about the bind-users mailing list