create zone file URL

http://www.zonefile.org/?lang=en#zonefile

; google.com
$TTL 3600
google.com. IN     SOA    a.root-servers.net. dnsmaster@trashmail.com. (
    2018071501  ; Serial
    3H          ; refresh after 3 hours
    1H          ; retry after 1 hour
    1W          ; expire after 1 week
    1D)         ; minimum TTL of 1 day

 ; Name Server
 IN NS a.root-servers.net. ; VeriSign verteilt (anycast)
 IN NS e.root-servers.net. ; ns.nasa.gov, Mountain View, Kalifornien, USA
 IN NS l.root-servers.net. ; ICANN verteilt (anycast)

 ; Mail Exchanger
 IN MX 50 mx1.mail.com. ; Your Mail Server

google.com.   IN A  85.214.123.64
www   IN CNAME  85.214.123.64

; Resource Record - veryfy the IP where your mails come from(disable if not needed)
; @ IN TXT  "v=spf1 ip4:85.214.123.0/24 -all"

; EOF

named.conf

zone "google.com" {
  type master;
  file "/etc/master/google.com.zone";
  allow-transfer {
   127.0.0.1;   # localhost
   198.41.0.4;   # VeriSign verteilt (anycast)
   192.203.230.10;   # ns.nasa.gov, Mountain View, Kalifornien, USA
   199.7.83.42;   # ICANN verteilt (anycast)
  };
  notify yes;
};

Comments

Popular posts from this blog

HAproxy logging

tomcat catalina coyote jasper cluster

NFS mount add in fstab _netdev instead of default | firewall-cmd --list-all