blob: cf6b3150c1cbad631208fa0d5f505545f33e572b (
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
[rps]
#PREFIX = valgrind --leak-check=full --show-leak-kinds=all --log-file=/tmp/rps/valgrind!gnunet-service-rps!%p
#BINARY = gnunet-service-rps
UNIXPATH = $GNUNET_TMP/gnunet-service-rps.sock
HOME = $SERVICEHOME
# PORT = 2106
#@UNIXONLY@ PORT = 2087
FORCESTART = YES
AUTOSTART = NO
NOARMBIND = YES
#OPTIONS=-l /tmp/rps_profiler_logs/rps-[]-%Y-%m-%d.log
# This is the timeinterval between the rounds
ROUNDINTERVAL = 2 s
FILENAME_VALID_PEERS = $GNUNET_DATA_HOME/rps/valid_peers.txt
# This is the 'estimate' in the beginning.
# This determines the size of the peers we keep in memory
# until we receive the first estimate from NSE.
# Keep in mind, that (networksize)^(1/3) should be enough.
# So, 50 is enough for a network of size 50^3 = 125000
MINSIZE = 4
[testbed]
HOSTNAME = localhost
# OPERATION_TIMEOUT = 60 s
# MAX_PARALLEL_TOPOLOGY_CONFIG_OPERATIONS = 100
OVERLAY_TOPOLOGY = CLIQUE
#OVERLAY_TOPOLOGY = SMALL_WORLD
#SCALE_FREE_TOPOLOGY_CAP =
# OVERLAY_RANDOM_LINKS = 25
# SETUP_TIMEOUT = 2 m
[nse]
WORKBITS = 0
[nat]
# Use addresses from the local network interfaces (inluding loopback, but also others)
USE_LOCALADDR = YES
# Do we use addresses from localhost address ranges? (::1, 127.0.0.0/8)
RETURN_LOCAL_ADDRESSES = YES
[transport]
PLUGINS = udp
[ats]
# Network specific inbound/outbound quotas
UNSPECIFIED_QUOTA_IN = unlimited
UNSPECIFIED_QUOTA_OUT = unlimited
# LOOPBACK
LOOPBACK_QUOTA_IN = unlimited
LOOPBACK_QUOTA_OUT = unlimited
# LAN
LAN_QUOTA_IN = unlimited
LAN_QUOTA_OUT = unlimited
#WAN
WAN_QUOTA_OUT = unlimited
WAN_QUOTA_IN = unlimited
# WLAN
WLAN_QUOTA_IN = unlimited
WLAN_QUOTA_OUT = unlimited
# BLUETOOTH
BLUETOOTH_QUOTA_IN = unlimited
BLUETOOTH_QUOTA_OUT = unlimited
[dht]
DISABLE_TRY_CONNECT = YES
[cadet]
DISABLE_TRY_CONNECT = YES
#OPTIONS=-l /tmp/rps_profiler_logs/cadet-[]-%Y-%m-%d.log
#PREFIX = valgrind
#[arm]
#GLOBAL_POSTFIX=-l /tmp/rps_profiler_logs/other-[]-%Y-%m-%d.log
#[statistics]
#FORCESTART = NO
#AUTOSTART = NO
[peerinfo]
NO_IO = YES
[hostlist]
FORCESTART = NO
AUTOSTART = NO
[zonemaster]
FORCESTART = NO
AUTOSTART = NO
[namecache]
FORCESTART = NO
AUTOSTART = NO
[namestore]
FORCESTART = NO
AUTOSTART = NO
[topology]
FORCESTART = NO
AUTOSTART = NO
[vpn]
FORCESTART = NO
AUTOSTART = NO
[revocation]
FORCESTART = NO
AUTOSTART = NO
[gns]
FORCESTART = NO
AUTOSTART = NO
[fs]
FORCESTART = NO
AUTOSTART = NO
|