Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. $TTL 14400
  2. $ORIGIN example.com.
  3.  
  4. ; Specify the primary nameserver ns1.example.com in SOA
  5. @ 14400 IN SOA ns1.example.com. webmaster.example.com. (
  6. 2008092902 ; Serial in YYYYMMDDXX (XX is increment)
  7. 10800; refresh seconds
  8. 3600; retry
  9. 604800; expire
  10. 38400; minimum
  11. );
  12. ; Website IP Address specified in A record
  13.  
  14. IN A 11.11.11.11
  15.  
  16. ; TWO nameserver names
  17.  
  18. IN NS ns1.example.com.
  19. IN NS ns2.example.com.
  20.  
  21. ; Nameservers and their corresponding IPs
  22.  
  23. ns1 IN A 11.11.11.11
  24. ns2 IN A 22.22.22.22
  25.  
  26. ; Specify here any Aliases using CNAME record
  27.  
  28. www IN CNAME example.com.
  29. ftp IN CNAME example.com.
  30.  
  31. ; Set Mail Exchanger record with priority
  32.  
  33. mail IN MX 10 example.com.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement