README 534 B

123456789101112131415161718
  1. NSD is being developed with the purpose of creating more diversity
  2. in the DNS landscape. Secondly we want to create a fast, modern, RFC
  3. compliant nameserver.
  4. NSD requires its own user in order to run securely. It is not advised
  5. to run services as root user without special reason.
  6. To add NSD user in system run as root:
  7. # groupadd -g 336 nsd
  8. # useradd -u 336 -d /var/lib/nsd -g nsd -s /bin/false nsd
  9. In order to run NSD during boot process, add to /etc/rc.d/rc.local:
  10. if [ -x /etc/rc.d/rc.nsd ]; then
  11. /etc/rc.d/rc.nsd start
  12. fi