- simple test case for service sharing in testing deployments
[oweals/gnunet.git] / src / testbed / testbed.conf.in
1 [testbed]
2 AUTOSTART = NO
3 @UNIXONLY@ PORT = 2101
4 HOSTNAME = localhost
5 HOME = $SERVICEHOME
6 BINARY = gnunet-service-testbed
7
8 # How long should operations wait?
9 OPERATION_TIMEOUT = 30 s
10
11 # Set this to the path where the testbed helper is installed.  By default the
12 # helper binary is searched in @prefix@/lib/gnunet/libexec/
13 # HELPER_BINARY_PATH = @prefix@/lib/gnunet/libexec/gnunet-helper-testbed
14
15 # Add your local network address here. For example, if you want to running
16 # testbed on a group of hosts connected to network 192.168.1.0/24, then set
17 #   ACCEPT_FROM = 127.0.0.1; 192.168.1.0/24;
18 # Multiple network addresses can be given.  They should be separated by `;'
19 ACCEPT_FROM = 127.0.0.1;
20 ACCEPT_FROM6 = ::1;
21
22 UNIXPATH = /tmp/gnunet-service-testbed.sock
23 UNIX_MATCH_UID = YES
24 UNIX_MATCH_GID = YES
25
26 # How many maximum number of operations can be run in parallel.  This number
27 # should be decreased if the system is getting overloaded and to keep reduce the
28 # load of testbed.
29 MAX_PARALLEL_OPERATIONS = 1000
30 MAX_PARALLEL_TOPOLOGY_CONFIG_OPERATIONS = 1
31
32 # How many maximum number of handles to peers' services should be kept open at
33 # any time.  This number also keeps a check on the number of open descriptors as
34 # opening a service connection results in opening a file descriptor.
35 MAX_PARALLEL_SERVICE_CONNECTIONS = 256
36
37 # Size of the internal testbed cache.  It is used to cache handles to peers
38 # while trying to connect them.
39 CACHE_SIZE = 30
40
41 # Maximum number of file descriptors a testbed controller is permitted to keep
42 # open.
43 MAX_OPEN_FDS = 512
44
45 # How long should we wait for testbed to setup while using helper functions
46 # GNUNET_TESTBED_test_run() and GNUNET_TESTBED_run()
47 SETUP_TIMEOUT = 5 m
48
49 # Where should testbed write load statistics data
50 # STATS_DIR = /tmp/load
51
52 [testbed-logger]
53 AUTOSTART = NO
54 @UNIXONLY@ PORT = 2102
55 HOSTNAME = localhost
56 BINARY = gnunet-service-testbed-logger
57 UNIXPATH = /tmp/gnunet-gnunet-testbed-logger.sock
58 DIR = /tmp
59 UNIX_MATCH_UID = YES
60 UNIX_MATCH_GID = YES