From 82df18d0a80869ea9671b625209bb07cc6bbca68 Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Sat, 29 Jan 2011 20:11:08 +0100 Subject: [PATCH] nsd: Add default config file. --- etc/nsd3/nsd.conf | 77 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 etc/nsd3/nsd.conf diff --git a/etc/nsd3/nsd.conf b/etc/nsd3/nsd.conf new file mode 100644 index 0000000..692421d --- /dev/null +++ b/etc/nsd3/nsd.conf @@ -0,0 +1,77 @@ +# +# nsd.conf -- the NSD(8) configuration file, nsd.conf(5). +# +# Copyright (c) 2001-2006, NLnet Labs. All rights reserved. +# +# See LICENSE for the license. +# + +# This is a comment. +# Sample configuration file + +# options for the nsd server +server: + # uncomment to specify specific interfaces to bind (default all). + # ip-address: 1.2.3.4 + # ip-address: 12fe::8ef0 + + # enable debug mode for nsd, does not fork daemon process. + # (debug mode disables slave zone functionalities) + # debug-mode: no + + # listen only on IPv4 connections + # ip4-only: no + + # listen only on IPv6 connections + # ip6-only: no + + # the database to use + # database: "/var/lib/nsd3/nsd.db" + + # identify the server (CH TXT ID.SERVER entry). + # identity: "unidentified server" + + # log messages to file. Default to stderr and syslog. + # logfile: "/var/log/nsd.log" + + # Number of NSD servers to fork. + # server-count: 1 + + # Maximum number of concurrent TCP connections per server. + # tcp-count: 10 + + # File to store pid for nsd in. + # pidfile: "/var/run/nsd3/nsd.pid" + + # port to answer queries on. default is 53. + # port: 53 + + # statistics are produced every number of seconds. + # statistics: 3600 + + # Run NSD in a chroot-jail. + # make sure to have pidfile and database reachable from there. + # chroot: "/etc/nsd3" + + # After binding socket, drop user privileges. + # can be a username, id or id.gid. + # username: nsd + + # The directory for zonefile: files. + # zonesdir: "/etc/nsd3" + + # The file where incoming zone transfers are stored. + # run nsd-patch to update zone files, then you can safely delete it. + # difffile: "/etc/nsd3/ixfr.db" + + # The file where secondary zone refresh and expire timeouts are kept. + # If you delete this file, all secondary zones are forced to be + # 'refreshing' (as if nsd got a notify). + # xfrdfile: "/var/lib/nsd3/xfrd.state" + + # Number of seconds between reloads triggered by xfrd. + # xfrd-reload-timeout: 10 + + # Verbosity level. + # verbosity: 0 + -- 2.30.2