TOPIC 9

Date: 4/2/2009
Doman Name Server (DNS)
Linux for Engineering and IT applications


Direct Zone file

; Zone file for linux.class
$TTL 604800 
linux.class.  IN      SOA     node18.linux.class. hostmaster.linux.class. (
                       2005042502    ; serial, todays date + todays serial
	               604800        ; Refresh (1 week)
	               86400         ; Retry   (1 day)
	               2419200       ; Expire  (4 weeks)
	               604800 )      ; Negative Cache (1 week)


gateway      IN   A       192.168.5.240
             IN   TXT     "The gateway in the machine room"

node18       IN   A       192.168.5.38
             IN   MX      10 node18.linux.class.
             IN   TXT     "DNS server"

desktop18    IN   A       192.168.5.18 
             IN   MX      10 node18.linux.class.
	     IN   TXT      "Desktop"

myhost       IN   CNAME   desktop18

@            IN   NS      node18.linux.class.




Take me to the Course Website