db70f143a88330a844cdc9975de5137771588cce
[oweals/gnunet.git] / src / ats / ats.conf.in
1 [ats]
2 AUTOSTART = @AUTOSTART@
3 @UNIXONLY@ PORT = 2098
4 HOSTNAME = localhost
5 BINARY = gnunet-service-ats
6 ACCEPT_FROM = 127.0.0.1;
7 ACCEPT_FROM6 = ::1;
8 UNIXPATH = $GNUNET_RUNTIME_DIR/gnunet-service-ats.sock
9 UNIX_MATCH_UID = NO
10 UNIX_MATCH_GID = YES
11
12 # Designated assignment mode: PROPORTIONAL / MLP / RIL
13 MODE = PROPORTIONAL
14
15 # Network specific inbound/outbound quotas
16 UNSPECIFIED_QUOTA_IN = 64 KiB
17 UNSPECIFIED_QUOTA_OUT = 64 KiB
18 # LOOPBACK
19 LOOPBACK_QUOTA_IN = unlimited
20 LOOPBACK_QUOTA_OUT = unlimited
21 # LAN
22 LAN_QUOTA_IN = unlimited
23 LAN_QUOTA_OUT = unlimited
24 # WAN
25 WAN_QUOTA_IN = 64 KiB
26 WAN_QUOTA_OUT = 64 KiB
27 # WLAN
28 WLAN_QUOTA_IN = 1 MiB
29 WLAN_QUOTA_OUT = 1 MiB
30 # BLUETOOTH
31 BLUETOOTH_QUOTA_IN = 128 KiB
32 BLUETOOTH_QUOTA_OUT = 128 KiB
33 # ATS options
34
35 # Proportional specific settings
36 # How proportional to preferences is bandwidth distribution in a network
37 # 1: Fair with respect to addresses without preferences
38 # > 100: The bigger, the more respect is payed to preferences 
39 PROP_PROPORTIONALITY_FACTOR = 200
40 # Should we stick to existing connections are prefer to switch?
41 # [100...200], lower value prefers to switch, bigger value is more tolerant
42 PROP_STABILITY_FACTOR = 125
43
44 # MLP specific settings
45 # MLP defaults
46
47 # Maximum duration for a solution process
48 # MLP_MAX_DURATION = 3 s
49
50 # Maximum number of iterations for a solution process
51 # MLP_MAX_ITERATIONS = 1024
52 # MLP_COEFFICIENT_D = 1.0
53 # MLP_COEFFICIENT_U = 1.0
54 # MLP_COEFFICIENT_R = 1.0
55 # MLP_MIN_BANDWIDTH = 1024
56 # MLP_MIN_CONNECTIONS = 4
57
58 # MLP Log settings
59 # Dump all problems to disk
60 # MLP_DUMP_PROBLEM_ALL = YES
61 # Dump all solution to disk
62 # MLP_DUMP_SOLUTION_ALL = YES
63 # Print GLPK output
64 # MLP_GLPK_VERBOSE = YES
65
66 # Dump all problems to disk
67 MLP_DUMP_PROBLEM_ON_FAIL = YES
68 # Dump all solution to disk
69 MLP_DUMP_SOLUTION_ON_FAIL = YES
70
71 # RIL specifc settings
72 RIL_STEP_TIME_MIN = 500 ms
73 RIL_STEP_TIME_MAX = 1000 ms
74
75 RIL_ALGORITHM = Q
76 RIL_DISCOUNT_BETA = 0.7
77 RIL_GRADIENT_STEP_SIZE = 0.3
78 RIL_TRACE_DECAY = 0.2
79 RIL_EXPLORE_RATIO = 0.1
80 RIL_GLOBAL_REWARD_SHARE = 1