blob: 001311ed5422db8f800c9adcd61b7e3fa6bd7e6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# example verbose tinydns data file
# from http://www.pjvenda.org/linux/doc/tinydns/
# Copyright (C) 2001-2009 by Pedro Venda
# licensed under a Creative Commons Attribution 2.5 License
#
# REVERSE ZONE
#
# (reverse) dns servers: primary and secondary
Z45.168.192.in-addr.arpa:ns.example.net:hostmaster.example.net::::::::
# NS records
&45.168.192.in-addr.arpa::ns.example.net:::
&45.168.192.in-addr.arpa::ns2.example.net:::
# MX handlers
@45.168.192.in-addr.arpa::relay.example.net:10
@45.168.192.in-addr.arpa::relay2.example.net:20
#
# FORWARD ZONE:
#
# SOA record: primary nameserver is ns.example.net and hostmaster
# mail address is hostmaster@example.net
# (the 'Z' configuration line is the only one that
# allows specifying the hostmaster mail address)
Zexample.net:ns.example.net:hostmaster.example.net::::::::
# NS records: primary and secondary nameservers
&example.net::ns.example.net:::
&example.net::ns2.example.net:::
# MX records: relay.example.net, distance = 10
# relay2.example.net, distance = 20
@example.net::relay.example.net:10
@example.net::relay2.example.net:20
# A records: ns.example.net, ns2.example.net
=ns.example.net:192.168.45.1:::
=ns2.example.net:192.168.45.2:::
# PTR records: relays are in the same hosts as dns servers
+relay.example.net:192.168.45.1:::
+relay2.example.net:192.168.45.2:::
# more A records: gateway.example.net
=gateway.example.net:192.168.45.254:::
# CNAME record: nscache.example.net is alias to gateway.example.net
Cnscache.example.net:gateway.example.net:::
#
# SUB DOMAIN DELEGATION
#
# NS record
&dmz.example.net::ns.dmz.example.net:::
# A/PTR record for nameserver
=ns.dmz.example.net:192.168.90.1:::
|