### Installation and Directory Structure Source: https://context7.com/bdmanual/byedpimanager-manual/llms.txt Instructions for downloading the release archive and the required directory structure for ByeDPI Manager and its dependencies. ```bash # 1. Download release archive: https://github.com/romanvht/ByeDPIManager/releases/latest # 2. Extract to: C:\\APPS\\ByeDPIManager # 3. Install dependencies from redist folder: # - VC_redist.x64.exe # - Windows.Packet.Filter.3.6.1.1.x64.msi # Structure: # ByeDPIManager/ # ├── ByeDPI Manager.exe # ├── libs/ # │ ├── byedpi/ciadpi.exe # │ └── proxifyre/proxifyre.exe # └── redist/ ``` -------------------------------- ### ByeDPI Strategy Arguments Source: https://context7.com/bdmanual/byedpimanager-manual/llms.txt Examples of command-line arguments for ciadpi.exe to modify traffic packets for bypassing restrictions. ```bash # Basic strategy -s 1 --disorder 1 # TTL spoofing -s 1 --fake 1 --ttl 4 # OOB data strategy -s 1 --oob 1 # Combined strategy -s 1 --disorder 1 --fake 1 --ttl 5 --oob 1 # Custom port -p 1081 -s 1 --disorder 1 ``` -------------------------------- ### Настройка Брандмауэра Windows для ByeDPI Manager Source: https://github.com/bdmanual/byedpimanager-manual/blob/main/smarttv.md Команды PowerShell для открытия портов 53 (UDP), 80 (TCP) и 443 (TCP) в брандмауэре Windows. Эти порты необходимы для работы DNS, HTTP и HTTPS трафика, который будет обрабатываться ByeDPI Manager и V2ray. ```powershell netsh advfirewall firewall add rule name="Allow DNS (UDP 53)" dir=in action=allow protocol=UDP localport=53 netsh advfirewall firewall add rule name="Allow HTTP (TCP 80)" dir=in action=allow protocol=TCP localport=80 netsh advfirewall firewall add rule name="Allow HTTPS (TCP 443)" dir=in action=allow protocol=TCP localport=443 ``` -------------------------------- ### Manual Proxy Configuration Source: https://context7.com/bdmanual/byedpimanager-manual/llms.txt Manual SOCKS5 proxy settings for applications when running ByeDPI without ProxiFyre. ```bash # Protocol: SOCKS5 # Address: 127.0.0.1 # Port: 1080 # Example for Firefox: # Settings -> Network Settings -> Manual proxy configuration # SOCKS Host: 127.0.0.1 # Port: 1080 # SOCKS v5 ``` -------------------------------- ### Получение IP-адреса ПК в Windows Source: https://github.com/bdmanual/byedpimanager-manual/blob/main/smarttv.md Команда для отображения сетевых настроек компьютера, включая IP-адрес. Этот IP-адрес потребуется для настройки DNS на телевизоре и файла зоны MaraDNS. ```cmd ipconfig ``` -------------------------------- ### Component Path Configuration Source: https://context7.com/bdmanual/byedpimanager-manual/llms.txt Configuration snippet for setting paths to ByeDPI and ProxiFyre executables and defining network ports. ```ini [ByeDPI] Path=C:\\APPS\\ByeDPIManager\\libs\\byedpi\\ciadpi.exe Hotkey=[custom] Arguments=-s 1 --disorder 1 [ProxiFyre] Path=C:\\APPS\\ByeDPIManager\\libs\\proxifyre\\proxifyre.exe Port=1080 ``` -------------------------------- ### Automated Strategy Testing Configuration Source: https://context7.com/bdmanual/byedpimanager-manual/llms.txt Settings and file structure for the automated strategy testing feature (Beta). ```ini [Testing] DelaySeconds=1 RequestCount=5 # Files: # domains.txt (list of domains) # strategies.txt (list of strategies to test) ``` -------------------------------- ### Настройка V2ray для локальных сетей Source: https://github.com/bdmanual/byedpimanager-manual/blob/main/smarttv.md Пример конфигурации V2ray, где в секции 'routing' указаны разрешенные локальные IP-диапазоны. При необходимости, эти диапазоны можно изменить или дополнить для соответствия вашей сетевой адресации. ```json { "routing": { "domainStrategy": "AsIs", "rules": [ { "domain": [ "youtube.com", "googlevideo.com" ], "outboundTag": "direct" } ] }, "inbounds": [ { "port": 1080, "listenIP": "127.0.0.1", "protocol": "socks", "settings": { "auth": "noauth", "udp": true, "ip": "192.168.0.0/16, 172.16.0.0/12, 10.0.0.0/8" }, "tag": "socks" } ], "outbounds": [ { "protocol": "freedom" } ] } ``` -------------------------------- ### ProxiFyre Application Redirection Source: https://context7.com/bdmanual/byedpimanager-manual/llms.txt Methods for defining which applications should have their traffic redirected through the proxy. ```bash # Full path C:\\Program Files\\Vivaldi\\Application\\vivaldi.exe # Process name firefox.exe chrome # Directory path C:\\Users\\{user}\\AppData\\Local\\Discord\\ ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.