Set up a personal encrypted proxy server on a VPS to route traffic around firewall restrictions.
Run a local Shadowsocks client to send your internet traffic through a remote server securely.
Build on the core Rust library to add encrypted proxy support to your own application.
Deploy Shadowsocks on an OpenWRT router to route all household traffic through the proxy.
Requires a server on an unrestricted network plus Rust/Cargo toolchain to build, correct firewall port configuration needed on both client and server.
Shadowsocks is a proxy protocol designed to help users route their internet traffic through an encrypted tunnel and bypass network restrictions such as firewalls. This repository is a reimplementation of the original shadowsocks software, rewritten in Rust for better performance and reliability. The way it works is: you run a server component on a machine outside the restricted network, and a local client component on the machine you want to use. Traffic from the local machine passes through the encrypted tunnel to the server, then out to the open internet. From the outside, the traffic looks like ordinary encrypted data rather than a recognizable proxy connection, which is how it avoids detection by many firewall systems. This Rust version is organized as several separate libraries. The core protocol logic lives in one library, the service layer that manages running the client and server processes lives in another, and the final package bundles the command-line binaries together. You can install the binaries through Cargo, which is Rust's package manager, or through system package managers on Linux distributions like Arch Linux and NixOS. It is also available via Homebrew on macOS and as a Snap package. The README covers a range of optional build features, including different DNS resolver backends, support for the HTTP and QUIC protocols locally, and DNS-over-HTTPS and DNS-over-TLS. Several community-maintained graphical clients for Linux, Windows, and routers running OpenWRT are linked as related projects. The full README is longer than what was shown.
← shadowsocks on gitmyhub — every repo by this author, as a profile.
Verify against the repo before relying on details.