Named.Local
; refer to the file named.rev.127.local for explanation of this header
@ IN SOA local.sunyit.edu. root.local.sunyit.edu. (
971231 ; Serial
3600 ; Refresh
300 ; Retry
3600000 ; Expire
3600 ) ; Minimum
IN NS router.local.sunyit.edu.
; TXT records allow a more verbose info that can be seen using 'dig' or; NSLOOKUP
IN TXT "Local network."
; you MUST define localhost
localhost IN A 127.0.0.1
; these lines define our machine
; notice the lack of periods after machine names
; this way 'local.sunyit.edu' is appended to them
router IN A 192.168.0.5
server IN A 192.168.0.20
win95 IN A 192.168.0.6
; if you want 'aliases' for machines use this:
; anyone locally trying 'ftp' or 'ftp.local.sunyit.edu' will be given
; the IP number for 'server'
; again notice the lack of periods so i don't have to type any extra.
ftp IN CNAME server
www IN CNAME server
|
|
|
|