Untitled

 avatar
unknown
plain_text
a year ago
1.1 kB
4
Indexable
//
// 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 "curatumprivate.com" {
	type master;
	file "/etc/bind/curatumprivate.com.zone";
	};

zone "122.0.10.in-addr.arpa." {
	type master;
	file "/etc/bind/curatumprivate.com.rev.zone";
	};



$TTL 604800
@	IN	SOA	ns.curatumprivate.com. hostmaster. (
		1
		21600
		3600
		604800
		86400 )
;

@   IN  NS  ns.curatumprivate.com.
@   IN  A   10.0.122.234
www IN  A   10.0.122.234
ns  IN  A   10.0.122.235



$TTL 604800
@	IN	SOA	ns.curatumprivate.com. hostmaster. (
		1
		21600
		3600
		604800
		86400 )
;

@   IN  NS  ns.curatumprivate.com.
235 IN  PTR ns.curatumprivate.com.
234 IN  PTR www.curatumprivate.com.
234 IN  PTR curatumprivate.com.
244 IN  PTR dhcp.curatumprivate.com.



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

	listen-on port 53 {127.0.0.1; 10.0.122.235;};

	listen-on-v6 port 53 { ::1; };
	
	allow-query { any; };

	recursion yes;

	forwarders {
	   8.8.8.8;
	   8.8.4.4;
	   1.1.1.1;
	};

	dnssec-validation auto;
	
	listen-on-v6 { any; };
};
Editor is loading...
Leave a Comment