Quick start
Automatically connect
The easiest way to run this tool is just type
ssct in terminal, and ssct will acquire available shadowsocks servers from ishadowsocks and connect to it automatically.Connect to a specific server
First, show all ss servers by
--list option.ssct --listThen, connect to a specific server by -n option.ssct -n 5Alternatively, you can connect a custom server.ssct -s <server_addr> -p <server_port> -l <local_port> -k <password> -m <method>Usage
Requirements
1 Install shadowsocks
# for python2
pip install shadowsocks
# for python3
pip3 install shadowsocksNote: You can also install shadowsocks with system package manager (apt, yum, dnf, etc) or just chrome app version shadowsocks. However, the chrom app version can't connect automatically.2 Install python3 modules
pip3 install requests
pip3 install prettytableNote: The module prettytable is optional, but would be better if installed.Configuration for google chrome
- Install chrome extension SwitchyOmega.
- Open the options of SwitchyOmega, and configure as below.
- List servers and select one to connect, or just type
ssctto connect automatically.
- Select proxy option in chrome and enjoy it.
Configuration for firefox
- Install firefox extension AutoProxy.
- AotoProxy preferences: Proxy Server --> Edit proxy server, and add shadowsocks item.
- Start ssct and select the shadowsocks proxy.
More options
optional arguments:
-h, --help show this help message and exit
ssct options:
-n <num> connect server number
--ss <ss> path to shadowsocks, assumed in the PATH
--list list all ss servers
--stop stop running servers
--version show program's version number and exit
--morehelp show this help message and exit
shadowsocks options:
-c <config> path to config file
-s <addr> server address, auto crawl online
-p <port> server port, auto crawl online
-b <addr> local binding address [default: 127.0.0.1]
-l <port> local port [default: 1080]
-k <password> password, auto crawl online
-m <method> encryption method, auto crawl online
-t <timeout> timeout in seconds [default: 300]
--fast-open use TCP_FASTOPEN, requires Linux 3.7+
-d <daemon> daemon mode, one of start, stop and restart
--pid-file <file> pid file for daemon mode
--log-file <file> log file for daemon mode
--user <user> username to run as
-v, -vv verbose mode
-q, -qq quiet mode, only show warnings/errorsConnect to the available server automatically without any argument.


