Juergen Daubert
5f6063a052
Note ---- Version 2 of maradns is a authoritative only DNS server without the resolver part. The recursive and caching DNS resolver from the same author, called deadwood, is available as a separate port now. See the tutorial in [1] how both can work together. Using the DNSSEC capable unbound instead of deadwood might be an option as well. [1] http://maradns.samiam.org/tutorial/recursive.html
36 lines
634 B
Plaintext
36 lines
634 B
Plaintext
#
|
|
# /etc/mararc
|
|
#
|
|
|
|
# Base settings
|
|
hide_disclaimer = "YES"
|
|
chroot_dir = "/etc/maradns"
|
|
maradns_uid = 99
|
|
maradns_gid = 99
|
|
random_seed_file = "/dev/urandom"
|
|
|
|
# Timing and size settings
|
|
maximum_cache_elements = 2048
|
|
maxprocs = 96
|
|
timeout_seconds = 5
|
|
|
|
# Logging and debug settings
|
|
timestamp_type = 4
|
|
verbose_level = 3
|
|
debug_msg_level = 3
|
|
|
|
# The addresses mara bind to
|
|
ipv4_bind_addresses = "127.0.0.1"
|
|
|
|
# The various zones we support
|
|
csv2 = {}
|
|
csv2["localhost."] = "db.localhost"
|
|
# csv2["example.net."] = "db.example.net"
|
|
|
|
# ACL for localhost
|
|
ipv4_alias = {}
|
|
ipv4_alias["localhost"] = "127.0.0.0/8"
|
|
admin_acl = "localhost"
|
|
|
|
# End of file
|