- distribute peers equally among island nodes on SuperMUC
[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 # What services should be shared among peers.  
53 # Format is "[<service:share>] [<service:share>] ...".  The shared services are
54 # started standalone without any other peer services or a hostkey.  For this
55 # reason, only services which doesn't depend on other services can only be
56 # shared.  Example: To share peerinfo among every 10 peers.  The following spec
57 # will start 5 peerinfo services when 50 peers are started:
58 #
59 #   SHARED_SERVICES = peerinfo:10
60 #
61 # To share multiple services
62 #
63 #   SHARED_SERVICES = service1:n_share1 service2:n_share2 ...
64 #
65 # Default is to share no services
66 SHARED_SERVICES =
67
68
69 [testbed-logger]
70 AUTOSTART = NO
71 @UNIXONLY@ PORT = 2102
72 HOSTNAME = localhost
73 BINARY = gnunet-service-testbed-logger
74 UNIXPATH = /tmp/gnunet-gnunet-testbed-logger.sock
75 DIR = /tmp
76 UNIX_MATCH_UID = YES
77 UNIX_MATCH_GID = YES