https://github.com/ssrlive/s5proxy
A SOCKS5 proxy server powered by libuv
https://github.com/ssrlive/s5proxy
Last synced: 2 months ago
JSON representation
A SOCKS5 proxy server powered by libuv
- Host: GitHub
- URL: https://github.com/ssrlive/s5proxy
- Owner: ssrlive
- Created: 2017-10-23T15:35:13.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-05-31T10:30:56.000Z (about 3 years ago)
- Last Synced: 2025-03-21T03:34:44.786Z (3 months ago)
- Language: C
- Homepage:
- Size: 162 KB
- Stars: 20
- Watchers: 2
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
s5proxy
===============
A SOCKS5 proxy server powered by libuv# Features
- [x] Full implimentation without user name / password
- [x] UDP associate supported.
- [x] Public IP deployment supported.# How to build in ubuntu
```bash
sudo su # using root account
apt-get install --no-install-recommends build-essential autoconf libtool asciidoc xmlto -y
apt-get install git gcc g++ cmake automake -y
apt-get -f install -y
apt-get update -y
apt-get upgrade -ygit clone --recursive https://github.com/ssrlive/s5proxy.git
cd s5proxy
mkdir build && cd build
cmake .. && make
```# Usage
```bash
] [-d] [-h] [-t ] [-p ] [-u]
s5proxy [-bOptions:
-b Bind to this address or hostname. Default: "0.0.0.0"
-h Show this help message.
-p Bind to this port number. Default: 1080
-t Idle timeout. Default: 60
-d Run in background as a daemon.
-u This host has a public IP.```
For example: `./s5proxy -p 1080 -d`