Created
October 30, 2014 06:39
-
-
Save libbkmz/45b0ebcb60f4afeb5ed0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
options { | |
directory "/var/named"; | |
pid-file "/run/named/named.pid"; | |
// Uncomment these to enable IPv6 connections support | |
// IPv4 will still work: | |
// listen-on-v6 { any; }; | |
// Add this for no IPv4: | |
// listen-on { none; }; | |
forwarders { | |
192.168.1.1; | |
8.8.8.8; | |
8.8.4.4; | |
}; | |
allow-transfer { none; }; | |
allow-update { none; }; | |
version none; | |
hostname none; | |
server-id none; | |
auth-nxdomain no; | |
dnssec-enable yes; | |
dnssec-validation yes; | |
dnssec-lookaside auto; | |
listen-on port 53 { any; }; | |
allow-query { trusted; }; | |
allow-recursion { trusted; }; | |
recursion yes; | |
}; | |
acl "trusted" { | |
any; | |
}; | |
zone "pandora.com" { | |
type forward; | |
forward only; | |
forwarders { | |
107.170.15.247; | |
77.88.8.8; | |
}; | |
}; | |
zone "spotify.com" { | |
type forward; | |
forward only; | |
forwarders { | |
107.170.15.247; | |
77.88.8.8; | |
}; | |
}; | |
zone "rdio.com" { | |
type forward; | |
forward only; | |
forwarders { | |
107.170.15.247; | |
77.88.8.8; | |
}; | |
}; | |
zone "local" { | |
type forward; | |
forward only; | |
forwarders { | |
192.168.1.1; | |
}; | |
}; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment