35 lines
735 B
Text
35 lines
735 B
Text
http local {
|
|
endpoints { "/dns-query"; };
|
|
};
|
|
|
|
acl bogusnets {
|
|
};
|
|
|
|
acl trusted {
|
|
192.168.0.0/16;
|
|
};
|
|
|
|
options {
|
|
directory "/var/cache/bind";
|
|
|
|
version "not currently available";
|
|
|
|
listen-on { any; };
|
|
listen-on-v6 { any; };
|
|
listen-on tls ephemeral { any; };
|
|
listen-on-v6 tls ephemeral { any; };
|
|
listen-on tls ephemeral http local { any; };
|
|
listen-on-v6 tls ephemeral http local { any; };
|
|
|
|
recursion yes;
|
|
forwarders {
|
|
9.9.9.9;
|
|
149.112.112.112;
|
|
};
|
|
forward only;
|
|
|
|
allow-query { any; };
|
|
allow-recursion { any; };
|
|
allow-transfer { none; };
|
|
blackhole { bogusnets; };
|
|
};
|