How do I setup primary dns name server using tinydns under FreeBSD operating systems?
You need to create a zone file for your domain which will provide the following data:
- Your name server IP address.
- Your mail server IP address and pointer to mx.
- Your AAAA and A records etc.
Step # 1: Create Directory For Your Zone File
Type the following command:
# mkdir /var/ns1.nixcraft.in
Step # 2: Set Up a DNS Publication Service
You need to use your IP 202.54.1.1 and directory /var/ns1.nixcraft.in as follows
# tinydns-conf tinydns dnslog /var/ns1.nixcraft.in 202.54.1.1
Above will create all required directories and default zone data file.
Step # 3: Start TinyDNS Server
Type the following command:
# ln -s /var/ns1.nixcraft.in /var/service/
Verify that UDP port # 53, opened:
# sockstat -4
# sockstat -4 -p 53
Now, all you've to do is create a zone file for your domain nixcraft.in.
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop












{ 1 comment… read it below or add one }
I am running FreeBSD 8. When following this guide I noticed a few things:
Step 1 – Do not create the directory as it will conflict with Step 2.
Step 2 – Use the directory in the command, if it exists, it won’t work. If it dosen’t exist, it will create it.
Example:
[root@vps ~]# mkdir /var/ns1.example.com
[root@vps ~]# tinydns-conf tinydns dnslog /var/ns1.example.com 192.168.0.10
tinydns-conf: fatal: unable to create /var/ns1.example.com: file already exists