Sign inSign up

pioneerm/bind9

By pioneerm

•Updated about 2 years ago

Image
0

112

pioneerm/bind9 repository overview

'named.conf.options':

options {
	directory "/var/cache/bind";

	// If there is a firewall between you and nameservers you want
	// to talk to, you may need to fix the firewall to allow multiple
	// ports to talk.  See http://www.kb.cert.org/vuls/id/800113

	// 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 {
		8.8.4.4;
		8.8.8.8;
	};
	allow-query {127.0.0.1; 10.0.0.0/8; 172.17.0.0/16;};
	//========================================================================
	// If BIND logs error messages about the root key being expired,
	// you will need to update your keys.  See https://www.isc.org/bind-keys
	//========================================================================
	dnssec-validation yes;
	dnssec-must-be-secure cluster.local no;

	listen-on-v6 { any; };
};

named.conf.local:

//
// Do any local configuration here
//

// Consider adding the 1918 zones here, if they are not used in your
// organization
//include "/etc/bind/zones.rfc1918";

zone "cluster.local" {
        type forward;
	forward only;
        forwarders { 10.43.0.10; };
};

Tag summary

Content type

Image

Digest

sha256:c62bf9c1e…

Size

110.7 MB

Last updated

about 2 years ago

docker pull pioneerm/bind9:9.18