forked from ANSSI-FR/lidi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlidi_10G.toml
48 lines (33 loc) · 1.23 KB
/
lidi_10G.toml
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
# Size of RaptorQ block, in bytes
encoding_block_size = 300000
# Size of repair data, in bytes
repair_block_size = 30000
# IP address on diode-receive side used to transfert UDP packets between diode-send and diode-receive
udp_addr = "127.0.0.1"
# List of ports used to transfert packets between diode-send and diode-receive. There must be one different port per thread.
udp_port = [ 5000, 5001, 5002, 5003 ]
# MTU of the to use one the UDP link
udp_mtu = 9000
# heartbeat period in ms
heartbeat = 100
# Path to log configuration file
# log_config = "./lidi_log4rs.yml"
# specific options for diode-send
[sender]
# TCP server socket to accept data
bind_tcp = "127.0.0.1:5001"
# ratelimit TCP session speed (in Mbit/s).
max_bandwidth = 9500
# prometheus port
metrics = "0.0.0.0:9001"
# specific options for diode-receive
[receiver]
# IP address and port of the TCP server
to_tcp = "127.0.0.1:5002"
# Timeout before forcing incomplete block recovery (in ms). Default is one time heartbeat interval.
# block_expiration_timeout = 500
# Session expiration delay. Time to wait before changing session (in ms). Default is 5 times heartbeat interval.
# session_expiration_timeout = 5000
# prometheus port
metrics = "0.0.0.0:9002"
# core_affinity = [ 1 ]