// ********************************************************************
// This is where you define global BIND DNS server options.
//
// Only instructions that are placed on the options {} directive must
// be included here.
// ********************************************************************

options {
	directory "/etc/bind";
	pid-file "/var/run/named/named.pid";

	auth-nxdomain no;     # conform to RFC1035
	datasize default;

	// If there is a firewall between you and nameservers you want
	// to talk to, you might need to uncomment the query-source
	// directive below.  Previous versions of BIND always asked
	// questions using port 53, but BIND 8.1 and later use an unprivileged
	// port by default.

	// query-source address * port 53;

	// Uncoment these to enable IPv6 connections support
	// IPv4 will still work
	//   listen-on { none; };
	//   listen-on-v6 { any; };

        // If your ISP provided one or more IP addresses for stable
        // nameservers, you probably want to use them as forwarders.
        // Uncomment the following block, and insert the addresses replacing
        // the all-0's placeholder.

        // forwarders {
        //      0.0.0.0;
        // };

        // Disable recursion.  Uncomment  this for authoritative only
        // name server.  Also need to remove or comment out the root zone
        // hints in named.conf
        // recursion no;
        // fetch-glue no;

	// Uncoment the next line to hide bind version info (recommended)
	//   version "No version info available";
};
