Penguin

Differences between current version and previous revision of DNSHowto.

Other diffs: Previous Major Revision, Previous Author, or view the Annotated Edit History

Newer page: version 4 Last edited on Friday, February 23, 2007 2:47:19 pm by AlastairPorter
Older page: version 3 Last edited on Saturday, February 17, 2007 11:04:03 pm by AlastairPorter Revert
@@ -71,9 +71,9 @@
  zone "127.in-addr.arpa" { 
 </pre> 
 This starts declaring a zone for reverse lookups on 127.*. Now, the way [ReverseLookup]s are handled is by looking up the IP reversed followed by ".in-addr.arpa". For instance, if you want to look up what name the IP "1.2.3.4" has, you look up "4.3.2.1.in-addr.arpa". If you think this is messy, don't even ask what they do for [IPv6] :) 
 <pre> 
- type " master"
+ type master; 
 </pre> 
 We are the master for this zone. ie: we provide the information to slave zones, and we know all about it. 
 <pre> 
  file "/etc/bind/db.127.x"; 
@@ -93,9 +93,9 @@
  
 First we declare a block for it. 
  
 <pre> 
- type " master"
+ type master; 
 </pre> 
  
 This name server is going to be the master for this domain. 
  
@@ -117,9 +117,9 @@
  
 The block again 
  
 <pre> 
- type " slave"
+ type slave; 
 </pre> 
  
 Ok, this is new. This means that the zone will be downloaded using a ZoneTransfer from a primary name server.