diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-11-27 16:27:08 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-11-27 16:27:08 +0100 |
commit | 79a788b6139f121e30816c046f7ff2c4320d5a0b (patch) | |
tree | a39551dec8baa012d617e739ed13066b232c2c81 /doc | |
parent | c43aed07562dc2bd3d2dfd6065df3ce564cf3cfa (diff) | |
download | dabmux-79a788b6139f121e30816c046f7ff2c4320d5a0b.tar.gz dabmux-79a788b6139f121e30816c046f7ff2c4320d5a0b.tar.bz2 dabmux-79a788b6139f121e30816c046f7ff2c4320d5a0b.zip |
Add source and ttl settings for EDI
Diffstat (limited to 'doc')
-rw-r--r-- | doc/example.mux | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/doc/example.mux b/doc/example.mux index 9211631..456e046 100644 --- a/doc/example.mux +++ b/doc/example.mux @@ -321,17 +321,28 @@ outputs { ; The edi output has a different syntax edi { - destination "192.168.23.23" - port 12000 - sourceport 13000 + ; example for unicast EDI + ;destination "192.168.23.23" + ; for unicast EDI, do not set source + + ; example for multicast EDI, the source IP is required + ; so that the data is sent on the correct ethernet interface + destination "232.20.10.1" + source "192.168.0.50" + ; The multicast TTL has to be adapted according to your network + ttl 1 + + ; The settings below apply to both unicast and multicast ; EDI uses the UDP protocol + port 12000 + sourceport 13000 ; Enable the PFT subsystem. If false, AFPackets are sent. - enable_pft false + enable_pft true ; How many lost fragments can be recovered by Reed-Solomon - fec 3 + fec 2 ; Length of a RS chunk, can be overriden ;default=207 @@ -341,7 +352,7 @@ outputs { dump false ; show more debugging info - verbose true + verbose false ; (optional) set the kind of alignment to use in TAG Packets ; 0: no padding |