The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
; mostly stolen from http://www.zytrax.com/books/dns/ch6/mydomain.html
$TTL	86400 ; 24 hours could have been written as 24h or 1d
$ORIGIN example.com.
@  1D  IN	 SOA ns1.example.com.	hostmaster.example.com. (
			      2002022401 ; serial
			      3H ; refresh
			      15 ; retry
			      1w ; expire
			      3h ; minimum
			     )
; SPF
@  0   IN  SPF "v=spf1 +mx a:colo.example.com/28 -all"
       IN  NS     ns1.example.com. ; in the domain
       IN  NS     ns2.smokeyjoe.com. ; external to domain
       IN  MX  10 mail.another.com. ; external mail provider
; server host definitions
ns1    IN  A      192.168.0.1  ;name server definition
www        A      192.168.0.2  ;web server definition
ftp    IN  CNAME  www.example.com.  ;ftp server definition
; non server domain hosts
bill   IN  A      192.168.0.3
fred       A      192.168.0.4
; cname for kicks
tess       CNAME  dne.other.com.