1
|
#
|
2
|
# Configuration for control-services.pl. All variables are in perl syntax.
|
3
|
#
|
4
|
|
5
|
# zones we can manage
|
6
|
@main::zones = ( 'example.org.' );
|
7
|
|
8
|
# nameservers for the zone
|
9
|
@main::nameservers = ( 'ns1.example.org' );
|
10
|
|
11
|
# allowed record types
|
12
|
@main::types = ( 'A', 'PTR', 'CNAME', 'TXT' );
|
13
|
|
14
|
# allowed classes
|
15
|
@main::classes = ( 'IN' );
|
16
|
|
17
|
# default TTL for new records
|
18
|
$main::default_ttl = 86400;
|
19
|
|
20
|
# Location of the log file; must be writable by the hobbit user
|
21
|
$main::logfile = '/tmp/control-services.log';
|
22
|
|
23
|
# DDNS tsig info. Your key that you generated goes here:
|
24
|
$main::tsig_keyname = 'example';
|
25
|
$main::tsig_key = 'JUet5dbTvV9OOmWxc4cp8UUSSbct617swzaldieBZuF=';
|
26
|
|
27
|
# Hobbit configuration information
|
28
|
$main::hobbit_cgi = "http://www.example.org/hobbit-seccgi/bb-ack.sh";
|
29
|
$main::uname = 'cgiuser';
|
30
|
$main::password = 'some-cgi-password';
|