; Specify the time-to-live( TTL ) for the zone
$TTL 86400  ; 1 Day ( we could have used 1D )

; Begin Start Of Authority resource record
example.com. IN  SOA server1.example.com. root.server1.example.com. ( 
				2003040100	; serial number
				1H 		; refresh slave
				5M 		; retry query
				1W 		; expire
				1M 		; negative TTL 
)

; Specify our name servers 
; !!WARNING: You can not use CNAMEs for RDATA here !!
; owner			TTL	CL  type		RDATA
@				IN  NS		server1.example.com.

; Specify our mail exchangers
; !!WARNING: You can not use CNAMEs for RDATA here !!
; owner			TTL	CL  type  	RDATA
@				IN  MX  	10  server1.example.com.

; This is broken and against RFC but must be done to placate the masses
; owner			TTL	CL  type	RDATA
example.com.                	IN  A		192.168.0.254

; List our CNAME records ( aliases ) here
; owner			TTL	CL  type	RDATA
mail.example.com.	3600   	IN  CNAME	server1.example.com.
kerberos.example.com.	3600	IN  CNAME	server1.example.com.

; List our A records ( hosts ) here
; owner			TTL	CL  type	RDATA
server1.example.com.				IN  A		192.168.0.254

; Okay, my fingers are getting tired.  BIND 8.1 and BIND 9.1 and later supports 
; a shortcut.  $GENERATE creates a record for each value in the 
; numerical range specified in the first argument, replacing any $
; in the template with the current value of the iterator.  

; Set up the rest of the station records.


; Set up CNAMEs for www1.example.com and so on.


; Delegate owner1.example.com and so on to the individual stations.


; The $GENERATE shortcut is normally used to simplify delegating 
; subnets on a non-octet boundary.  (This is for non-traditional 
; network sizes -- everything but /8, /16, and /24 subnets.)

; For the RHEL5.1 RH253 changes:

gns1                    IN  A           192.168.0.152
gns3                    IN  A           192.168.0.154
gns5                    IN  A           192.168.0.156
gns7                    IN  A           192.168.0.158
gns9                    IN  A           192.168.0.160
gns11                    IN  A           192.168.0.162
gns13                    IN  A           192.168.0.164
gns15                    IN  A           192.168.0.166
gns17                    IN  A           192.168.0.168
gns19                    IN  A           192.168.0.170
gns21                    IN  A           192.168.0.172
gns23                    IN  A           192.168.0.174
gns25                    IN  A           192.168.0.176
gns27                    IN  A           192.168.0.178
gns29                    IN  A           192.168.0.180
gns31                    IN  A           192.168.0.182
gns33                    IN  A           192.168.0.184
gns35                    IN  A           192.168.0.186
gns37                    IN  A           192.168.0.188
@                                    IN  NS             gns1.example.com.
@                                    IN  NS             gns3.example.com.
@                                    IN  NS             gns5.example.com.
@                                    IN  NS             gns7.example.com.
@                                    IN  NS             gns9.example.com.
@                                    IN  NS             gns11.example.com.
@                                    IN  NS             gns13.example.com.
@                                    IN  NS             gns15.example.com.
@                                    IN  NS             gns17.example.com.
@                                    IN  NS             gns19.example.com.
@                                    IN  NS             gns21.example.com.
@                                    IN  NS             gns23.example.com.
@                                    IN  NS             gns25.example.com.
@                                    IN  NS             gns27.example.com.
@                                    IN  NS             gns29.example.com.
@                                    IN  NS             gns31.example.com.
@                                    IN  NS             gns33.example.com.
@                                    IN  NS             gns35.example.com.
@                                    IN  NS             gns37.example.com.
