From c5ec56908ae11f74c2b297b5d1dd70c46b803c5b Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 21 Jan 2019 15:50:33 +0100 Subject: [PATCH] rtp: add netem config to example config --- etc/rtp.conf | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/etc/rtp.conf b/etc/rtp.conf index 1c111d58e..a60487f37 100644 --- a/etc/rtp.conf +++ b/etc/rtp.conf @@ -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 + } } } }