From 90cb5392cd7f6f623529d62988bc4afdde011820 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Fri, 5 Feb 2016 12:12:02 +0100 Subject: Change EDI configuration for multi-output --- doc/example.mux | 40 ++++++++++++++++++++++++++-------------- 1 file changed, 26 insertions(+), 14 deletions(-) (limited to 'doc') diff --git a/doc/example.mux b/doc/example.mux index 456e046..82c5685 100644 --- a/doc/example.mux +++ b/doc/example.mux @@ -321,22 +321,34 @@ outputs { ; The edi output has a different syntax edi { - ; 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 + destinations { + ; The names you give to the destinations have no meaning, + ; but have to be unique. You can give them meaningful names to help + ; you identify the outputs. + example_unicast { + ; example for unicast EDI + ; for unicast EDI, do not set source + destination "192.168.23.23" + sourceport 13000 + } + example_multicast { + ; 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 + + sourceport 13000 + } + } + + ; The settings below apply to all destinations + ; The destination port cannot be set independently for + ; different outputs because it is encoded in the transport + ; header of the PFT layer. port 12000 - sourceport 13000 ; Enable the PFT subsystem. If false, AFPackets are sent. enable_pft true -- cgit v1.2.3