1;-----------------------------------------------------------------
2;
3;       @(#)    extern/example.net/zone.db
4;
5;-----------------------------------------------------------------
6
7$TTL	7200
8
9@	IN SOA	ns1.example.net. hostmaster.example.net.  (
10				0       ; Serial
11				43200	; Refresh
12				1800	; Retry
13				2W	; Expire
14				7200 )	; Minimum
15
16		IN  NS		ns1.example.net.
17		IN  NS		ns2.example.net.
18
19ns1		IN  A		1.0.0.5
20		IN  AAAA	2001:db8::53
21ns2		IN  A		1.2.0.6
22
23localhost	IN  A		127.0.0.1
24
25; Delegation to secure zone; The DS resource record will
26; be added by dnssec-signzone automatically if the
27; keyset-sub.example.net file is present (run dnssec-signzone
28; with option -g or use the dnssec-signer tool) ;-)
29sub		IN NS      ns1.example.net.
30
31; this file will have all the zone keys
32$INCLUDE dnskey.db
33
34