Home | History | Annotate | Line # | Download | only in ns1
      1 options {
      2 	query-source address 10.53.0.1;
      3 	notify-source 10.53.0.1;
      4 	transfer-source 10.53.0.1;
      5 	port @PORT@;
      6 	pid-file "named.pid";
      7 	listen-on { 10.53.0.1; };
      8 	listen-on-v6 { none; };
      9 };
     10 
     11 key rndc_key {
     12 	secret "1234abcd8765";
     13 	algorithm @DEFAULT_HMAC@;
     14 };
     15 
     16 controls {
     17 	inet 10.53.0.1 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
     18 };
     19 
     20 view chaos ch {
     21 	match-clients { any; };
     22 	recursion yes;
     23 	zone "." {
     24 		type hint;
     25 		file "chaos.db";
     26 	};
     27 	zone "version.bind" {
     28 		type primary;
     29 		database "_builtin version";
     30 	};
     31 };
     32