mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-30 22:15:20 +00:00
3725. [contrib] Updated zkt and nslint to newest versions, cleaned up and rearranged the contrib directory, added a README.
44 lines
1.0 KiB
Plaintext
44 lines
1.0 KiB
Plaintext
;-----------------------------------------------------------------
|
|
;
|
|
; @(#) example.net/zone.db
|
|
;
|
|
;-----------------------------------------------------------------
|
|
|
|
$TTL 7200
|
|
|
|
; Ensure that the serial number below is left
|
|
; justified in a field of at least 10 chars!!
|
|
; 0123456789;
|
|
; It's also possible to use the date format e.g. 2005040101
|
|
@ IN SOA ns1.example.net. hostmaster.example.net. (
|
|
386 ; Serial
|
|
43200 ; Refresh
|
|
1800 ; Retry
|
|
2W ; Expire
|
|
7200 ) ; Minimum
|
|
|
|
IN NS ns1.example.net.
|
|
IN NS ns2.example.net.
|
|
|
|
ns1 IN A 1.0.0.5
|
|
IN AAAA 2001:db8::53
|
|
ns2 IN A 1.2.0.6
|
|
|
|
localhost IN A 127.0.0.1
|
|
|
|
a IN A 1.2.3.1
|
|
b IN MX 10 a
|
|
;c IN A 1.2.3.2
|
|
d IN A 1.2.3.3
|
|
IN AAAA 2001:0db8::3
|
|
|
|
; Delegation to secure zone; The DS resource record will
|
|
; be added by dnssec-signzone automatically if the
|
|
; keyset-sub.example.net file is present (run dnssec-signzone
|
|
; with option -g or use the dnssec-signer tool) ;-)
|
|
sub IN NS ns1.example.net.
|
|
|
|
; this file will contain all the zone keys
|
|
$INCLUDE dnskey.db
|
|
|