Home | History | Annotate | Line # | Download | only in conf
      1 /*
      2  * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
      3  *
      4  * SPDX-License-Identifier: MPL-2.0
      5  *
      6  * This Source Code Form is subject to the terms of the Mozilla Public
      7  * License, v. 2.0.  If a copy of the MPL was not distributed with this
      8  * file, you can obtain one at https://mozilla.org/MPL/2.0/.
      9  *
     10  * See the COPYRIGHT file distributed with this work for additional
     11  * information regarding copyright ownership.
     12  */
     13 
     14 // NS2
     15 
     16 controls { /* empty */ };
     17 
     18 options {
     19 	query-source address 10.53.0.2;
     20 	notify-source 10.53.0.2;
     21 	transfer-source 10.53.0.2;
     22 	port 5300;
     23 	pid-file "named.pid";
     24 	listen-on { 10.53.0.2; };
     25 	listen-on-v6 { none; };
     26 	recursion no;
     27 	geoip-directory "data";
     28 	allow-query {
     29 		geoip netspeed 100;
     30 		geoip metro 828;
     31 		geoip metrocode 828;
     32 		geoip tz "America/Los_Angeles";
     33 		geoip timezone "America/Los_Angeles";
     34 		geoip postal 95060;
     35 		geoip postalcode 95060;
     36 	};
     37 };
     38