From e42f165ef5a9e63a334b4b6b25682bcf3d9b3729 Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Fri, 30 Jul 2021 22:55:38 +0200 Subject: [PATCH] Added some example regex for UDP forward. Signed-off-by: Toni Uhlig --- example.cfg | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/example.cfg b/example.cfg index 1d5167d..4b70d48 100644 --- a/example.cfg +++ b/example.cfg @@ -97,6 +97,11 @@ protocols: { name: "regex"; host: "localhost"; is_udp: true; port: "123"; udp_timeout: 20; # Time after which the "connection" is forgotten regex_patterns: [ "hello" ]; }, +# Forward Teamspeak3 (Voice only) + { name: "regex"; host: "localhost"; is_udp: true; port: "9987"; regex_patterns: [ "TS3INIT1" ]; }, +# Forward IETF QUIC-50 ("Q050" -> "\x51\x30\x35\x30") +# Remember that the regex needs to be adjusted for every supported QUIC version. + { name: "regex"; host: "localhost"; is_udp: true; port: "4433"; regex_patterns: [ "\x51\x30\x35\x30" ]; }, # Regex examples -- better use the built-in probes for real-world use! # OpenVPN