blob: 60b15b8a60917e25335c62ada3b98072f448b40a (
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
|
##
## DHTd is a distributed hash table daemon that uses the BitTorrent network.
##
config dhtd
option enabled 1
## Add hashes to announce them to the network
# list announce '00112233445566778899aabbcceeff0011223344'
## Load and store good nodes every 24h and on start/shutdown.
# option peerfile '/etc/dhtd/peers.txt'
## Add static peer addresses.
list peer 'bttracker.debian.org:6881'
list peer 'router.bittorrent.com:6881'
## Bind the DHT to this port.
# option port '6881'
## Limit DHT communication to this interface.
# option ifname 'lan'
## Verbosity: quiet, verbose or debug
# option verbosity 'quiet'
## Disable multicast peer discovery on the LAN.
# option lpd_disable '1'
## Path for dhtd-cli to connect to.
# option cli_path '/tmp/dhtd.sock'
|