From 41534e5a19dc8350c1aa27ec926b34f779914ac4 Mon Sep 17 00:00:00 2001 From: Nick Hainke Date: Fri, 30 Apr 2021 23:57:09 +0200 Subject: samplicator: add samplicator Samplicator receives UDP datagrams on a given port and resends those datagrams to a specified set of receivers. Use Cases: - replicate Flow Samples to multiple receivers - use with conntrackd to synchronize via unicast to multiple targets Signed-off-by: Nick Hainke --- net/samplicator/files/samplicator.conf | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 net/samplicator/files/samplicator.conf (limited to 'net/samplicator/files/samplicator.conf') diff --git a/net/samplicator/files/samplicator.conf b/net/samplicator/files/samplicator.conf new file mode 100644 index 000000000..56864fd7a --- /dev/null +++ b/net/samplicator/files/samplicator.conf @@ -0,0 +1,18 @@ +# Samplicator Config File +# +# Format: +# a.b.c.d[/e.f.g.h]: destination +# a.b.c.d is the sender's IP address +# e.f.g.h is a mask to apply to the sender (default 255.255.255.255) +# +# Destination Format: +# [/[/[,ttl]]] +# IP address of the receiver +# port UDP number of the receiver (default 2000) +# number of received datagrams between successive +# copied datagrams for this receiver. +# The TTL (IPv4) or hop-limit (IPv6) for +# outgoing datagrams. +# +# Example: +# 10.0.0.1/255.255.255.0: 10.0.0.42/1025 -- cgit v1.2.3