source: trunk/dnsdb.conf@ 856

Last change on this file since 856 was 856, checked in by Kris Deugau, 20 months ago

/trunk

BIND export, unwinding dev saves, 8 of many many

  • More minor naming convention fiddles
  • Start eying up removing zone split from SOA record publication, because we need a zone file for each formal .arpa zone in an aggregated metazone (eg /22 or /14)
  • Introduce bind_export_reverse_zone_path config variable, so we can use either the CIDR address or the formal .arpa name for reverse zone file paths
File size: 2.3 KB
Line 
1# System-wide config for DNSDB
2
3## Database connection info
4#dbname = dsndb
5#dbuser = dnsdb
6#dbpass = dnsdbpwd
7#dbhost = dnsdbhost
8
9## Mail settings
10#mailhost = smtp.example.com
11#mailnotify = dns@example.com
12#mailsender = hostmaster@example.com
13#mailname = Example Corp DNS Administrator
14#orgname = Example Corp
15#domain = example.com
16
17## session - note this is fed directly to CGI::Session
18## timeout supports (s)econds, (m)inutes, (h)ours, (d)ays, (w)eeks, (M)months, or (y)ears
19#timeout = 3h
20#sessiondir = /var/lib/dnsdb
21
22## Export caching
23# path for per-zone cache files for export
24#exportcache = /var/cache/dnsdb
25# always refresh the cache from the DB on export if 1/on
26# if 0/off, use the "changed" flag on a zone to determine if we export from
27# the DB or read from the existing cache file.
28#force_refresh = 1
29
30## BIND export options
31#bind_export_zone_path = /var/named/zones/%view/db.%zone
32# because they're fish of a different colour
33#bind_export_reverse_zone_path = /var/named/zones/%view/db.%arpazone
34
35## DNS data template options
36# publish .0 IP when expanding a template pattern
37#template_skip_0 = 0
38# publish .255 IP when expanding a template pattern
39#template_skip_255 = 0
40
41## misc
42
43# flag to indicate if failed changes should be logged
44#log_failures = 1
45
46# number of entries to display in lists
47#perpage = 25
48
49# fold domain names and hostnames to lowercase?
50# strictly speaking, DNS is case-insensitive, but some people insist on Capital Letters anyway.
51#lowercase = 0
52
53# Show formal .arpa zone name instead of the natural IP or CIDR for reverse zone names and records?
54# Valid values are none, zone, record, or all
55#showrev_arpa = zone
56
57# Let DNS server autosplit long TXT records however it pleases, or hand-generate the split points?
58#autosplit = 1
59
60## General RPC options
61# may already be obsolete. how do we want to run RPC requests?
62# bare socket, plain HTTP, or standard XMLRPC?
63#rpcmode = http
64# maximum number of FCGI requests to serve before reloading/restarting FCGI
65#maxfcgi = 10
66
67## RPC ACL
68# A comma-separated list starting with an abstract "system name"
69# (passed by an RPC caller), followed by a list of IP addresses
70# allowed to make RPC calls with that name.
71# Finer-grained access control must be handled by the caller.
72#rpc_iplist = billing, 192.168.0.11
73#rpc_iplist = billing, 172.12.12.12
74#rpc_iplist = custportal, 192.168.1.12, 192.168.1.13
Note: See TracBrowser for help on using the repository browser.