更換 Shadowsocks 的加密演算法後可以提高金鑰加密和解密速度,同時可以規避 GFW 利用 OpenSSL 特性進行特徵封包追蹤的問題。
環境確認,安裝編譯工具
# Debian/Ubuntu
apt-get install build-essential
CentOS#
yum groupinstall "Development Tools"
下載、編譯和安裝 libsodium1.0.11,支援 chacha20
# 下載 libsodium
wget https://github.com/jedisct1/libsodium/releases/download/1.0.11/libsodium-1.0.11.tar.gz
tar xvf libsodium-1.0.11.tar.gz
編譯 & 安裝#
cd libsodium-1.0.11
./configure && make && make install
更新動態庫#
ldconfig
編輯伺服器配置檔案
vim /etc/shadowsocks/config.json
config.json 檔案配置
{
"server":"0.0.0.0",
"server_port":443,
"password":"password",
"method":"chacha20", //chacha20 加密演算法
"timeout":120,
"fast-open",
"workers":1
}
重啟伺服器,此時伺服器配置完成