Fixed authoritative zone ACL, enabled IPv6

svn path=/nixos/trunk/; revision=12234
This commit is contained in:
Michael Raskin 2008-07-01 12:31:47 +00:00
parent 7699aaad79
commit 4d0645acb1

View file

@ -10,6 +10,8 @@ let
acl badnetworks { ${concatMapStrings (entry: " ${entry}; ") cfg.blockedNetworks} };
options {
listen-on {any;};
listen-on-v6 {any;};
allow-query { cachenetworks; };
blackhole { badnetworks; };
forward first;
@ -39,6 +41,7 @@ let
};
''
}
allow-query { any; };
};
''
)