blob: 38c1842872b5643a8f874b0209b2c45b0e0f67e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# The zone name
ZONE=rbl.example.com
# Specify the IP addresses to which the daemon should bind
# The default port is 53. If you have to specify an other port
# then you will add "/<port>" behind the IP address
BIND=(127.0.0.1/53 127.0.0.1/31453)
# Set interval between checking for zone file changes to be <seconds>.
# rbldnsd will check zone file’s last modification time every so often,
# and if it detects a change, zone will be automatically reloaded.
# Setting this value to 0 disables automatic zone change detection.
CHECK_TIME=60
# Set default reply time−to−live (TTL) value to be defttl, and set
# constraints for TTL to minttl and maxttl.
# TTL=defttl:minttl:maxttl or TTL=defttl
TTL=3600
# Other options
# OPTIONS="$OPTIONS -l query.log"
# OPTIONS="$OPTIONS -s stats.log"
|