June 2016
Intermediate to advanced
152 pages
3h 30m
English
Setting up a nameserver for a public domain works the same way as setting up a DNS server for an internal hostname, just with a few additional parts that we'll want to make sure are in a good state.
Let's set up a nameserver for a public domain:
example.org. IN SOA ns1.example.org. admin.example.org. ( 2015081401 28800 3600 604800 38400 )
NS hosts:Ns1 IN A 192.168.1.1
$ORIGIN example.org
IN NS ns1.example.org.
Ns1 IN A 192.168.1.1The first step is to configure the start of authority (SOA) for your domain. The SOA provides basic information about the zone itself. It contains a number of fields, ...
Read now
Unlock full access