summaryrefslogtreecommitdiffstats
path: root/network/nsd/README
diff options
context:
space:
mode:
author Sergei Fedosoff2016-11-04 14:01:26 +0100
committer Willy Sudiarto Raharjo2016-11-04 14:01:39 +0100
commit11ec04b39d0cce1eea0f923f900e260fe1de717f (patch)
treeeb1b3813007efe715d641902e5c69201b494c3a0 /network/nsd/README
parentf857558fa04e8119a86c69c6d1591c7868c6b408 (diff)
downloadslackbuilds-11ec04b39d0cce1eea0f923f900e260fe1de717f.tar.gz
network/nsd: Added (Name Server Daemon).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/nsd/README')
-rw-r--r--network/nsd/README19
1 files changed, 19 insertions, 0 deletions
diff --git a/network/nsd/README b/network/nsd/README
new file mode 100644
index 0000000000..1b774e071e
--- /dev/null
+++ b/network/nsd/README
@@ -0,0 +1,19 @@
+NSD is being developed with the purpose of creating more diversity in the
+DNS landscape. Secondly we want to create a fast, modern, RFC compliant
+nameserver.
+
+NSD requires its own user in order to run securely. It is not advised to
+run services as root user without special reason.
+
+
+To add NSD user in system run as root:
+
+# groupadd -g 336 nsd
+# useradd -u 336 -d /var/lib/nsd -g nsd -s /bin/false nsd
+
+
+In order to run NSD during boot process, add to /etc/rc.d/rc.local :
+
+if [ -x /etc/rc.d/rc.nsd ]; then
+ /etc/rc.d/rc.nsd start
+fi