blksocks

Crates.ioblksocks
lib.rsblksocks
version1.0.0
sourcesrc
created_at2024-04-06 15:37:52.811262
updated_at2024-04-06 15:37:52.811262
descriptionA transparent TCP redirector.
homepage
repositoryhttps://github.com/mitnk/blksocks
max_upload_size
id1198355
size26,041
Hugo Wang (mitnk)

documentation

README

blksocks: Black Sockets

A minimal redsocks clone in Rust.

This tool allows you to redirect any TCP connection to a SOCKS v5 proxy using your firewall.

Build

Only support Linux, not work for Mac etc.

Config

NOTE: May need to listen on 0.0.0.0 to make tproxy system work.

$ cat /etc/blksocks/config.toml
listen = "127.0.0.1:12345"
socks5 = "192.168.1.107:1080"

Use system env TOKIO_WORKER_THREADS to config the worker count, which the default is the number of CPU cores.

$ export TOKIO_WORKER_THREADS=16
Commit count: 7

cargo fmt