BIND DNS

From Michael's Information Zone
Revision as of 12:28, 14 December 2020 by Michael.mast (talk | contribs) (Created page with "==zone file== I needed to create an A record for a specific server. This was done by *Editing named.conf <pre> zone "1.custom.net" { type master; file "/etc/named/db.1.cus...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

zone file

I needed to create an A record for a specific server. This was done by

  • Editing named.conf
zone "1.custom.net" {
  type master;
  file "/etc/named/db.1.custom.net";
};
  • Creating db.1.custom.net
$TTL    604800
@       IN      SOA     1.custom.net. root.1.custom.net. (
                              1         ; Serial
                         604800         ; Refresh
                          86400         ; Retry
                        2419200         ; Expire
                         604800 )       ; Negative Cache TTL

        IN      NS      ns
@     IN     A       192.168.1.2
ns      IN      A       192.168.1.1