1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-23 00:00:01 +01:00
VILLASnode/etc/examples/nodes/rtp.conf

40 lines
542 B
Text

nodes = {
rtp_node = {
type = "rtp"
rate = 10000,
rtcp = {
enabled = false,
mode = "aimd"
throttle_mode = "decimate"
}
aimd = {
a = 10,
b = 0.5
log = "aimd-rates-%Y_%m_%d_%s.log"
}
in = {
address = "0.0.0.0:12000",
signals = {
count = 3
type = "float"
}
}
out = {
address = "127.0.0.1:12000"
netem = { # Network emulation settings
enabled = false,
delay = 100000, # Additional latency in microseconds
loss = 10 # Packet loss in percent
}
}
}
}