1;----------------------------------------------------------------- 2; 3; @(#) example.net/zone.db 4; 5;----------------------------------------------------------------- 6 7$TTL 7200 8 9; Ensure that the serial number below is left 10; justified in a field of at least 10 chars!! 11; 0123456789; 12; It's also possible to use the date format e.g. 2005040101 13@ IN SOA ns1.example.net. hostmaster.example.net. ( 14 396 ; Serial 15 43200 ; Refresh 16 1800 ; Retry 17 2W ; Expire 18 7200 ) ; Minimum 19 20 IN NS ns1.example.net. 21 IN NS ns2.example.net. 22 23ns1 IN A 1.0.0.5 24 IN AAAA 2001:db8::53 25ns2 IN A 1.2.0.6 26 27; Delegation to secure zone; The DS resource record will 28; be added by dnssec-signzone automatically if the 29; keyset-sub.example.net file is present (run dnssec-signzone 30; with option -g or use the dnssec-signer tool) ;-) 31sub IN NS ns1.example.net. 32 33; this file will contain all the zone keys 34$INCLUDE dnskey.db 35 36$INCLUDE zone.localhost 37$INCLUDE zone.hosts 38 39 40