Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- acl trusted {
- 10.0.0.0/8;
- };
- acl my_addresses {
- 127.0.0.1/32;
- ::1/128;
- 10.27.0.65;
- };
- options {
- directory "/var/cache/bind";
- recursion yes;
- allow-query {
- localhost;
- trusted;
- };
- allow-recursion { 127.0.0.1; trusted; };
- empty-zones-enable yes;
- deny-answer-addresses { my_addresses; };
- forwarders {
- 10.27.0.1;
- 90.255.255.254;
- 90.255.255.90;
- 8.8.8.8;
- 8.8.4.4;
- 1.1.1.1;
- 1.0.0.1;
- };
- dnssec-validation auto;
- listen-on-v6 { any; };
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement