这是shadowsocks的一个端口。
Shadowsocks 是一个快速隧道代理,可以帮助您绕过防火墙。
图书馆 | 描述 |
---|---|
影子袜子 | Shadowsocks核心协议 |
Shadowsocks 服务 | 提供 Shadowsocks 的服务 |
Shadowsocks-Rust | 运行常见 Shadowsocks 服务的二进制文件 |
相关项目:
sslocal
GUI,讨论sslocal
的 OpenWRT 解决方案,讨论hickory-dns
- 使用hickory-resolver
作为 DNS 解析器,而不是tokio
的内置解析器。
local-http
- 允许使用 HTTP 协议进行sslocal
local-http-native-tls
- 使用native-tls
支持 HTTPS
local-http-rustls
- 使用rustls
支持 HTTPS
local-tunnel
- 允许使用sslocal
隧道协议
local-socks4
- 允许对sslocal
使用 SOCKS4/4a 协议
local-redir
- 允许对sslocal
使用 redir(透明代理)协议
local-dns
- 允许使用sslocal
的 dns 协议,充当 DNS 服务器,通过 ACL 规则代理查询本地或远程 DNS 服务器
local-fake-dns
- FakeDNS,为特定 IP 池中的每个单独查询分配 IP 地址
local-tun
- sslocal
的 TUN 接口支持
local-online-config
- SIP008在线配置下发
stream-cipher
- 启用已弃用的流密码。警告:流密码不安全!
aead-cipher-extra
- 启用非标准 AEAD 密码
aead-cipher-2022
- 启用 AEAD-2022 密码 (SIP022)
aead-cipher-2022-extra
- 启用 AEAD-2022 额外密码(非标准密码)
该项目使用系统(libc)内存分配器(Rust 的默认值)。但它还允许您按功能使用其他著名的分配器:
jemalloc
- 使用 jemalloc 作为全局内存分配器mimalloc
- 使用 mi-malloc 作为全局内存分配器tcmalloc
- 使用 TCMalloc 作为全局内存分配器。默认情况下,它尝试链接系统范围的 tcmalloc,使用tcmalloc-vendored
的源供应商。snmalloc
- 使用 snmalloc 作为全局内存分配器rpmalloc
- 使用 rpmalloc 作为全局内存分配器从 crates.io 安装:
# Install from crates.io
cargo install shadowsocks-rust
然后你可以在$CARGO_HOME/bin
中找到sslocal
和ssserver
。
对于 macOS 和 Linux,您可以使用 Homebrew 安装它:
brew install shadowsocks-rust
# Install from snapstore
snap install shadowsocks-rust
# List services
snap services shadowsocks-rust
# Enable and start shadowsocks-rust.sslocal-daemon snap service
snap start --enable shadowsocks-rust.sslocal-daemon
# Show generated systemd service status
systemctl status snap.shadowsocks-rust.sslocal-daemon.service
# Override generated systemd service (configure startup options)
systemctl edit snap.shadowsocks-rust.sslocal-daemon.service
# # NOTE: you can pass args to sslocal:
# # [Service]
# # ExecStart=
# # ExecStart=/usr/bin/snap run shadowsocks-rust.sslocal-daemon -b "127.0.0.1:1080" --server-url "ss://...."
# Restart generated systemd service to apply changes
systemctl restart snap.shadowsocks-rust.sslocal-daemon.service
# ... and show service status
systemctl status snap.shadowsocks-rust.sslocal-daemon.service
在这里下载静态链接版本。
build-windows
:为x86_64-pc-windows-msvc
构建build-linux
: 为x86_64-unknown-linux-gnu
、Debian 9 (Stretch)、GLIBC 2.18 构建build-docker
:为x86_64-unknown-linux-musl
、 x86_64-pc-windows-gnu
构建,...(静态链接)该项目为linux/i386
和linux/amd64
以及linux/arm64/v8
架构提供了 Docker 镜像。
⚠️ 默认情况下,Docker 容器无法访问 IPv6 :请确保在客户端中禁用 IPv6 路由或启用对 Docker 容器的 IPv6 访问。
Docker 将从我们的 GitHub 包中提取适当架构的镜像。
docker pull ghcr.io/shadowsocks/sslocal-rust:latest
docker pull ghcr.io/shadowsocks/ssserver-rust:latest
如果您想自己构建Docker镜像,则需要使用BuildX。
docker buildx build -t shadowsocks/ssserver-rust:latest -t shadowsocks/ssserver-rust:v1.15.2 --target ssserver .
docker buildx build -t shadowsocks/sslocal-rust:latest -t shadowsocks/sslocal-rust:v1.15.2 --target sslocal .
您需要将配置文件挂载到容器中,并创建外部端口映射以供容器连接到它。
docker run --name sslocal-rust
--restart always
-p 1080:1080/tcp
-v /path/to/config.json:/etc/shadowsocks-rust/config.json
-dit ghcr.io/shadowsocks/sslocal-rust:latest
docker run --name ssserver-rust
--restart always
-p 8388:8388/tcp
-p 8388:8388/udp
-v /path/to/config.json:/etc/shadowsocks-rust/config.json
-dit ghcr.io/shadowsocks/ssserver-rust:latest
该项目提供了用于部署到 Kubernetes 的 yaml 清单。
您可以利用 k8s 服务将流量暴露到外部,例如 LoadBalancer 或 NodePort,与固定主机或端口相比,它们获得更细粒度的流量。
对于更有趣的用例,您可以使用 Ingress(Istio、nginx 等),它将匹配的流量与真实的 Web 服务一起路由到 Shadowsocks。
kubectl
kubectl apply -f https://github.com/shadowsocks/shadowsocks-rust/raw/master/k8s/shadowsocks-rust.yaml
您可以通过编辑名为shadowsocks-rust
的 ConfigMap 来更改配置。
要进行更细粒度的控制,请使用helm
。
helm
helm install my-release k8s/chart -f my-values.yaml
以下是您可以更改的常见默认值:
# This is the shadowsocks config which will be mount to /etc/shadowocks-rust.
# You can put arbitrary yaml here, and it will be translated to json before mounting.
servers :
- server : " :: "
server_port : 8388
service_port : 80 # the k8s service port, default to server_port
password : mypassword
method : aes-256-gcm
fast_open : true
mode : tcp_and_udp
# plugin: v2ray-plugin
# plugin_opts: server;tls;host=github.com
# Whether to download v2ray and xray plugin.
downloadPlugins : false
# Name of the ConfigMap with config.json configuration for shadowsocks-rust.
configMapName : " "
service :
# Change to LoadBalancer if you are behind a cloud provider like aws, gce, or tke.
type : ClusterIP
# Bind shadowsocks port port to host, i.e., we can use host:port to access shawdowsocks server.
hostPort : false
replicaCount : 1
image :
repository : ghcr.io/shadowsocks/ssserver-rust
pullPolicy : IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag : " latest "
使用货物来建造。注意: RAM >= 2GiB
cargo build --release
然后sslocal
和ssserver
将出现在./target/(debug|release)/
中,其工作方式与官方 ShadowSocks 实现中的两个二进制文件类似。
make install TARGET=release
然后sslocal
、 ssserver
、 ssmanager
和ssurl
将被安装到/usr/local/bin
(变量 PREFIX)。
对于Windows用户,如果您在构建过程中遇到任何问题,请在#102中查看并讨论。
如果您正在针对当前的 CPU 平台进行构建(例如,在个人计算机上构建并运行),建议设置target-cpu=native
功能,让rustc
为运行编译器的 CPU 生成和优化代码。
export RUSTFLAGS= " -C target-cpu=native "
要求:
./build/build-release
然后sslocal
, ssserver
, ssmanager
和ssurl
将被打包在
./build/shadowsocks-${VERSION}-stable.x86_64-unknown-linux-musl.tar.xz
./build/shadowsocks-${VERSION}-stable.x86_64-pc-windows-gnu.zip
阅读Cargo.toml
了解更多详细信息。
使用以下命令为特定加密方法(示例中的aes-128-gcm
)生成安全密码:
ssservice genkey -m " aes-128-gcm "
创建 ShadowSocks 的配置文件。例子
{
"server" : "my_server_ip" ,
"server_port" : 8388 ,
"password" : "rwQc8qPXVsRpGx3uW+Y3Lj4Y42yF9Bs0xg1pmx8/+bo=" ,
"method" : "aes-256-gcm" ,
// ONLY FOR `sslocal`
// Delete these lines if you are running `ssserver` or `ssmanager`
"local_address" : "127.0.0.1" ,
"local_port" : 1080
}
配置文件的详细解释可以在shadowsocks的文档中找到。 (原始项目的链接,不再维护!)
⚠️ 对于 snap 安装,配置文件很可能位于/var/snap/shadowsocks-rust/common/etc/shadowsocks-rust/config.json
中(参见 #621 / #1146)
在shadowsocks-rust中,我们还有一种扩展的配置文件格式,它能够定义多个服务器。您还可以禁用单个服务器。
{
"servers" : [
{
"server" : "127.0.0.1" ,
"server_port" : 8388 ,
"password" : "rwQc8qPXVsRpGx3uW+Y3Lj4Y42yF9Bs0xg1pmx8/+bo=" ,
"method" : "aes-256-gcm" ,
"timeout" : 7200
} ,
{
"server" : "127.0.0.1" ,
"server_port" : 8389 ,
"password" : "/dliNXn5V4jg6vBW4MnC1I8Jljg9x7vSihmk6UZpRBM=" ,
"method" : "chacha20-ietf-poly1305"
} ,
{
"disabled" : true ,
"server" : "eg.disable.me" ,
"server_port" : 8390 ,
"password" : "mGvbWWay8ueP9IHnV5F1uWGN2BRToiVCAWJmWOTLU24=" ,
"method" : "chacha20-ietf-poly1305"
}
] ,
// ONLY FOR `sslocal`
// Delete these lines if you are running `ssserver` or `ssmanager`
"local_port" : 1080 ,
"local_address" : "127.0.0.1"
}
sslocal
自动选择具有最低延迟和最高可用性的最佳服务器。
使用以下命令启动 Shadowsocks 客户端和服务器:
sslocal -c config.json
ssserver -c config.json
如果你用 Cargo 构建它:
cargo run --bin sslocal -- -c config.json
cargo run --bin ssserver -- -c config.json
使用-h
列出所有可用参数。
使用配置文件启动本地客户端
# Read local client configuration from file
sslocal -c /path/to/shadowsocks.json
# Pass all parameters via command line
sslocal -b " 127.0.0.1:1080 " -s " [::1]:8388 " -m " aes-256-gcm " -k " hello-kitty " --plugin " v2ray-plugin " --plugin-opts " server;tls;host=github.com "
# Pass server with SIP002 URL
sslocal -b " 127.0.0.1:1080 " --server-url " ss://[email protected]:8388/?plugin=v2ray-plugin%3Bserver%3Btls%3Bhost%3Dgithub.com "
sslocal -b " 127.0.0.1:3128 " --protocol http -s " [::1]:8388 " -m " aes-256-gcm " -k " hello-kitty "
所有参数与 Socks5 客户端相同,除了--protocol http
。
# Set 127.0.0.1:8080 as the target for forwarding to
sslocal --protocol tunnel -b " 127.0.0.1:3128 " -f " 127.0.0.1:8080 " -s " [::1]:8388 " -m " aes-256-gcm " -k " hello-kitty "
--protocol tunnel
启用本地客户端隧道模式-f "127.0.0.1:8080
设置隧道目标地址注意:目前仅支持
iptables
目标REDIRECT
和TPROXY
)pf
),例如 OS X 10.10+、FreeBSD,... sslocal -b " 127.0.0.1:60080 " --protocol redir -s " [::1]:8388 " -m " aes-256-gcm " -k " hello-kitty " --tcp-redir " redirect " --udp-redir " tproxy "
将具有iptables
配置的连接重定向到sslocal
正在侦听的端口。
--protocol redir
启用本地客户端 Redir 模式--tcp-redir
将 TCP 模式设置为REDIRECT
(Linux)--udp-redir
将 UDP 模式设置为TPROXY
(Linux)注意:目前仅支持
创建名为tun0
的 Tun 接口
ip tuntap add mode tun tun0
ifconfig tun0 inet 10.255.0.1 netmask 255.255.255.0 up
使用--protocol tun
启动sslocal
并绑定到tun0
sslocal --protocol tun -s " [::1]:8388 " -m " aes-256-gcm " -k " hello-kitty " --outbound-bind-interface lo0 --tun-interface-name tun0
sslocal --protocol tun -s " [::1]:8388 " -m " aes-256-gcm " -k " hello-kitty " --outbound-bind-interface lo0 --tun-interface-address 10.255.0.1/24
它将创建一个地址为10.255.0.1
和网络掩码255.255.255.0
的 Tun 接口。
从Wintun下载wintun.dll
,并将其放置在shadowsocks可运行二进制文件所在的文件夹中,或者放置在系统PATH中。
sslocal -- protocol tun - s " [::1]:8388 " - m " aes-256-gcm " - k " hello-kitty " -- outbound - bind - interface " Ethernet 0 " -- tun - interface - name " shadowsocks "
通过启用--features "winservice"
来编译它(不包含在默认构建中):
cargo build --release --bin " sswinservice " --features " winservice "
将其安装为 Windows 服务 (PowerShell):
New-Service - Name " shadowsocks-local-service " `
- DisplayName " Shadowsocks Local Service " `
- BinaryPathName " <Pathto>sswinservice.exe local -c <Pathto>local_config.json "
还有其他方法可以将sswinservice
安装为 Windows 服务,例如sc
命令。
您可能已经注意到, -BinaryPathName
不仅包含sswinservice.exe
,还包含local -c local_config.json
。这些命令行参数将作为 Windows 服务启动时的默认参数。您还可以使用自定义参数启动服务。
从微软的文档中了解更多信息。
sswinservice
的参数的工作方式与ssservice
完全相同。它支持local
、 server
和manager
命令。
# Read server configuration from file
ssserver -c /path/to/shadowsocks.json
# Pass all parameters via command line
ssserver -s " [::]:8388 " -m " aes-256-gcm " -k " hello-kitty " --plugin " v2ray-plugin " --plugin-opts " server;tls;host=github.com "
支持的管理多用户 API:
add
- 启动服务器实例remove
- 删除现有的服务器实例list
- 列出所有当前正在运行的服务器ping
- 列出所有服务器的统计数据注意:不支持stat
命令。因为服务器与管理器本身运行在同一进程中。
# Start it just with --manager-address command line parameter
ssmanager --manager-address " 127.0.0.1:6100 "
# For *nix system, manager can bind to unix socket address
ssmanager --manager-address " /tmp/shadowsocks-manager.sock "
# You can also provide a configuration file
#
# `manager_address` key must be provided in the configuration file
ssmanager -c /path/to/shadowsocks.json
# Create one server by UDP
echo ' add: {"server_port":8388,"password":"hello-kitty"} ' | nc -u ' 127.0.0.1 ' ' 6100 '
# Close one server by unix socket
echo ' remove: {"server_port":8388} ' | nc -Uu ' /tmp/shadowsocks-manager.sock '
对于管理器 UI,请查看 Shadowsocks-manager 项目中的更多详细信息。
配置示例:
{
// Required option
// Address that ssmanager is listening on
"manager_address" : "127.0.0.1" ,
"manager_port" : 6100 ,
// Or bind to a Unix Domain Socket
"manager_address" : "/tmp/shadowsocks-manager.sock" ,
"servers" : [
// These servers will be started automatically when ssmanager is started
] ,
// Outbound socket binds to this IP address
// For choosing different network interface on the same machine
"local_address" : "xxx.xxx.xxx.xxx" ,
// Other options that may be passed directly to new servers
}
{
// LOCAL: Listen address. This is exactly the same as `locals[0]`
// SERVER: Bind address for remote sockets, mostly used for choosing interface
// Don't set it if you don't know what's this for.
"local_address" : "127.0.0.1" ,
"local_port" : 1080 ,
// Extended multiple local configuration
"locals" : [
{
// Basic configuration, a SOCKS5 local server
"local_address" : "127.0.0.1" ,
"local_port" : 1080 ,
// OPTIONAL. Setting the `mode` for this specific local server instance.
// If not set, it will derive from the outer `mode`
"mode" : "tcp_and_udp" ,
// OPTIONAL. Authentication configuration file
// Configuration file document could be found in the next section.
"socks5_auth_config_path" : "/path/to/auth.json" ,
// OPTIONAL. Instance specific ACL
"acl" : "/path/to/acl/file.acl" ,
// OPTIONAL. macOS launchd activate socket
"launchd_tcp_socket_name" : "TCPListener" ,
"launchd_udp_socket_name" : "UDPListener"
} ,
{
// SOCKS5, SOCKS4/4a local server
"protocol" : "socks" ,
// Listen address
"local_address" : "127.0.0.1" ,
"local_port" : 1081 ,
// OPTIONAL. Enables UDP relay
"mode" : "tcp_and_udp" ,
// OPTIONAL. Customizing the UDP's binding address. Depending on `mode`, if
// - TCP is enabled, then SOCKS5's UDP Association command will return this address
// - UDP is enabled, then SOCKS5's UDP server will listen to this address.
"local_udp_address" : "127.0.0.1" ,
"local_udp_port" : 2081 ,
// OPTIONAL. macOS launchd activate socket
"launchd_tcp_socket_name" : "TCPListener" ,
"launchd_udp_socket_name" : "UDPListener"
} ,
{
// Tunnel local server (feature = "local-tunnel")
"protocol" : "tunnel" ,
// Listen address
"local_address" : "127.0.0.1" ,
"local_port" : 5353 ,