# Socket address to bind the MADD server to bind = "127.0.0.1:3000" # DNS zone under which the hosts are registered zone = "lab.example.com" # List of subnets where hosts can register hostnames to networks = ["10.0.0.0/8"] # Maximum number of self-registrations allowed per host key registration_limit = 1 # DNS server to use for registration, must support RFC 2136 dns_server = "127.0.0.1:53" # TSIG key configuration for DNS updates tsig_key_name = "madd" tsig_key_file = "/etc/madd/madd.tsig" tsig_algorithm = "hmac-sha256" # Directory to store data files, must be writable by the user running MADD data_dir = "/var/lib/madd"