Advertisement
Guest User

Untitled

a guest
May 23rd, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. ; This is the Start of Authority (SOA) record. Contains contact
  2. ; & other information about the name server. The serial number
  3. ; must be changed whenever the file is updated (to inform secondary
  4. ; servers that zone information has changed).
  5. $TTL 1H
  6. @ IN SOA launchapollo.com. postmaster.launchapollo.net. (
  7. 20091135 ; Serial number
  8. 3600 ; 1 hour refresh
  9. 300 ; 5 minutes retry
  10. 172800 ; 2 days expiry
  11. 43200 ) ; 12 hours minimum
  12.  
  13. ; List the name servers in use. Unresolved (entries in other zones)
  14. ; will go to our ISP's name server isp.domain.name.com
  15. IN NS ns1.starpoundtech.net.
  16. IN NS ns2.starpoundtech.net.
  17. ;// IN NS isp.domain.name.com.
  18.  
  19. ; This is the mail-exchanger. You can list more than one (if
  20. ; applicable), with the integer field indicating priority (lowest
  21. ; being a higher priority)
  22. ; IN MX 0 mail
  23. ; IN MX 10 ASPMX.L.GOOGLE.COM.
  24. ; IN MX 20 ALT1.ASPMX.L.GOOGLE.COM.
  25. ; IN MX 20 ALT2.ASPMX.L.GOOGLE.COM.
  26. ; IN MX 30 ASPMX2.GOOGLEMAIL.COM.
  27. ; IN MX 30 ASPMX3.GOOGLEMAIL.COM.
  28. ; IN MX 30 ASPMX4.GOOGLEMAIL.COM.
  29. ; IN MX 30 ASPMX5.GOOGLEMAIL.COM.
  30. ;
  31. ; Provides optional information on the machine type & operating system
  32. ; used for the server
  33. ;// IN HINFO Pentium/350 LINUX
  34.  
  35. ; domain IP
  36. IN A 74.3.224.69
  37.  
  38. ; A list of machine names & addresses
  39. ;;<name> IN 1H A <ip>
  40.  
  41. ; Alias (canonical) names
  42. ;www IN CNAME @
  43. ;mail IN CNAME @
  44. www IN CNAME ghs.google.com
  45. mail IN CNAME ghs.google.com
  46. googleeaf83fd558536d67 IN CNAME google.com.
  47. ; sub-domains
  48. ; $INCLUDE launchapollo_com/name.sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement