🚀 ProxiFyre 2.2.0
✨ New Feature: LAN Bypass for SOCKS5 Proxy
ProxiFyre 2.2.0 adds an optional LAN bypass feature that allows local network traffic to bypass the SOCKS5 proxy. This improves performance and prevents routing issues when accessing LAN resources such as local services, NAS devices, or printers.
🔧 Changes
- Added a configurable
bypassLanoption to exclude local network traffic from proxying - Implemented LAN pass-through filters for private IPv4 subnets:
10.0.0.0/8172.16.0.0/12192.168.0.0/16169.254.0.0/16(link-local)224.0.0.0/24(local multicast)
- Introduced
set_bypass_lan()in the SOCKS local router - Propagated LAN bypass functionality through:
socksify_unmanaged- C++/CLI
Socksifierwrapper
- Updated
app-config.jsonschema and settings parsing
🧩 Configuration
Enable LAN bypass by setting bypassLan in app-config.json:
{
"logLevel": "Info",
"bypassLan": true,
"proxies": [
...
]
}✅ Benefits
- Faster access to local network resources
- Avoids proxy-related issues with LAN-only services
- Fully optional and disabled by default
Full Changelog:
- feat: Add LAN bypass option to exclude local network traffic from proxying (#116)