1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

rtp: add netem config to example config

This commit is contained in:
Steffen Vogel 2019-01-21 15:50:33 +01:00
parent 8190227776
commit c5ec56908a

View file

@ -26,6 +26,15 @@ nodes = {
out = {
address = "127.0.0.1:12000"
netem = { # Network emulation settings
enabled = true,
# Those settings can be specified for each node invidually!
delay = 100000, # Additional latency in microseconds
jitter = 30000, # Jitter in uS
distribution = "normal", # Distribution of delay: uniform, normal, pareto, paretonormal
loss = 10 # Packet loss in percent
}
}
}
}