summaryrefslogtreecommitdiff
path: root/maradns/mararc
blob: 594615988ed89a0f33fe836ea2781a3f5f1dbd49 (plain)
    1 #
    2 # /etc/mararc
    3 #
    4 
    5 # Base settings
    6 hide_disclaimer = "YES"
    7 chroot_dir = "/etc/maradns"
    8 maradns_uid = 99
    9 maradns_gid = 99
   10 random_seed_file = "/dev/urandom"
   11 
   12 # Timing and size settings
   13 maximum_cache_elements = 2048
   14 maxprocs = 96
   15 timeout_seconds = 5
   16 
   17 # Logging and debug settings
   18 timestamp_type = 4
   19 verbose_level = 3
   20 debug_msg_level = 3
   21 
   22 # The addresses mara bind to
   23 # CHANGING THIS IS REQUIRED !
   24 ipv4_bind_addresses = "127.0.0.1,192.168.0.1"
   25 
   26 # The various zones we support
   27 csv2 = {}
   28 csv2["localhost."] = "db.localhost"
   29 # csv2["example.net."] = "db.example.net"
   30 
   31 # ACL for localhost, localnet
   32 # CHANGING THIS IS REQUIRED !
   33 ipv4_alias = {}
   34 ipv4_alias["localhost"] = "127.0.0.0/8"
   35 ipv4_alias["localnet"] = "192.168.0.0/24"
   36 recursive_acl = "localhost,localnet"
   37 zone_transfer_acl = "localnet"
   38 admin_acl = "localhost,localnet"
   39 
   40 # The root servers which we use when making recursive queries.
   41 # http://www.icann.org
   42 ipv4_alias["icann"]  = "198.41.0.4,192.228.79.201,192.33.4.12,128.8.10.90,"
   43 ipv4_alias["icann"] += "192.203.230.10,192.5.5.241,192.112.36.4,"
   44 ipv4_alias["icann"] += "128.63.2.53,192.36.148.17,192.58.128.30,"
   45 ipv4_alias["icann"] += "193.0.14.129,198.32.64.12,202.12.27.33"
   46 
   47 # ORSN, Open Root Server Network (http://www.orsn.org)
   48 ipv4_alias["orsn"]  = "217.146.128.77,193.238.157.7,212.7.160.13,195.226.7.66,"
   49 ipv4_alias["orsn"] += "213.161.0.90,193.138.173.218,82.102.0.9,213.144.148.130,"
   50 ipv4_alias["orsn"] += "194.116.123.194,193.93.167.222,217.173.157.225,"
   51 ipv4_alias["orsn"] += "192.83.249.100,213.145.82.34"
   52 
   53 root_servers = {}
   54 root_servers["."] = "orsn"
   55 
   56 # upstream_servers = {}
   57 # upstream_servers["."] = "usually_your_isps_dns_servers"
   58 # ORSN, puplic nameservers
   59 # upstream_servers["."] = "217.146.139.5,62.157.101.211"
   60 
   61 
   62 # End of file

Generated by cgit