From 5fcb4a801292c8e5da6fc3208e5ee84d772a621f Mon Sep 17 00:00:00 2001 From: Vadim Vetrov Date: Thu, 19 Dec 2024 02:14:14 +0300 Subject: [PATCH] Update documentation for udp --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 7a1ae50..ea390b5 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ - [IPv6](#ipv6) - [Check it](#check-it) - [Flags](#flags) + - [UDP](#udp) - [Troubleshooting](#troubleshooting) - [TV](#tv) - [Troubleshooting EPERMS (Operation not permitted)](#troubleshooting-eperms-operation-not-permitted) @@ -266,6 +267,10 @@ Available flags: - `--fbegin` and `--fend` flags: youtubeUnblock supports multiple sets of strategies for specific filters. You may want to initiate a new set after the default one, like: `--sni-domains=googlevideo.com --faking-strategy=md5sum --fbegin --sni-domains=youtube.com --faking-strategy=tcp_check --fbegin --sni-domains=l.google.com --faking-strategy=pastseq`. Note, that the priority of these sets goes backwards: last is first, default (one that does not start with --fbegin) is last. If you start the new section, the default settings are implemented just like youtubeUnblock without any parameters. Note that the config above is just an example and won't work for you. +## UDP + +UDP is another communication protocol. Well-known technologies that use it are DNS, QUIC, voice chats. UDP does not provide reliable connection and its header is much simpler than TCP thus fragmentation is limited. The support provided primarily by faking. For QUIC faking may not work well, so use `--quic-drop` if you want to drop all quic traffic. For other technologies I recommend to configure UDP support in the separate section from TCP, like `--fbegin --udp-dport-filter=50000-50099 --tls=disabled`. See more in flags related to udp and [issues tagged with udp label](https://github.com/Waujito/youtubeUnblock/issues?q=label%3Audp+is%3Aclosed). + ## Troubleshooting Check up [this issue](https://github.com/Waujito/youtubeUnblock/issues/148) for useful configs.