From 6971f815f622b9aa75e7466034442c5b344d3105 Mon Sep 17 00:00:00 2001 From: dragonbreath2000 <168475359+dragonbreath2000@users.noreply.github.com> Date: Fri, 30 Aug 2024 01:08:11 -0700 Subject: [PATCH] add noise options for freedom --- docs/en/config/outbounds/freedom.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/en/config/outbounds/freedom.md b/docs/en/config/outbounds/freedom.md index 5b11ab7..6f65b51 100644 --- a/docs/en/config/outbounds/freedom.md +++ b/docs/en/config/outbounds/freedom.md @@ -14,6 +14,10 @@ Freedom is an outbound protocol that can be used to send (normal) TCP or UDP dat "length": "100-200", "interval": "10-20" // ms }, + "noise": { + "packet": "rand:5-10", + "delay": "10-20" // ms + }, "proxyProtocol": 0 } ``` @@ -57,6 +61,14 @@ A key-value map used to control TCP fragmentation,under some circumstances it `"interval"`: time between fragments(ms) +> `noise`: map + +A key-value map used to control UDP noise,under some circumstances it can bypass some udp based protocol restrictions. + +`"packet"`:support two different methods."rand:min-max" generates random bytes with min and max length provided for noise."str:Customstring" will use user input string as noise. + +`"delay"`:delay before sending real data (ms).If not specified, the default value is 0. + > `proxyProtocol`: number -The value of `proxyProtocol` represents the PROXY Protocol version. default value is `0`. \ No newline at end of file +The value of `proxyProtocol` represents the PROXY Protocol version. default value is `0`.