Przykładowy plik strefowy dla domeny localhost
          
 1$TTL 1W                                     
 2localhost.    IN SOA  localhost. root.localhost. (
 3                                2006011401  
 4                                10800       
 5                                3600        
 6                                604800      
 7                                86400       
 8              )
 9localhost.    IN NS   localhost.            
10localhost.    IN A    127.0.0.1             
[show source file] [download file] go on top
         
        
          Przykładowy plik strefowy dla domeny odwrotnej
          
 1$TTL 1W                                    
 20.0.127.in-addr.arpa.   IN SOA  localhost. root.localhost. (
 3                                2006011401 
 4                                10800      
 5                                3600       
 6                                604800     
 7                                86400      
 8                        )
 9                        
100.0.127.in-addr.arpa.   IN NS   localhost. 
111.0.0.127.in-addr.arpa. IN PTR  localhost. 
[show source file] [download file] go on top
         
        
          Jak uzyskać plik root.hint
          
user@host> ftp ftp.internic.org
  ...
  Name (ftp.internic.org:kobus): anonymous
  ...
  Password: **** 
  ...
  ftp>  asc 
  ...
  ftp>  cd domain 
  ...
  ftp>  get named.cache 
  ...
  ftp>  bye 
  221 Goodbye.
user@host>  mv named.cache root.hint 
          
          
user@host>  dig @a.root-servers.net . ns > root.hint 
} 
go on top