Skip to content

Instantly share code, notes, and snippets.

@codexss
Last active September 22, 2017 06:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codexss/6674b9218242e3a5a02b0111fa5487d3 to your computer and use it in GitHub Desktop.
Save codexss/6674b9218242e3a5a02b0111fa5487d3 to your computer and use it in GitHub Desktop.
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.13.3/linux-image-4.13.3-041303-generic_4.13.3-041303.201709200606_amd64.deb && dpkg -i linux-image-*.deb && rm linux-image-*.deb
sed -i '/net.core.default_qdisc/d' /etc/sysctl.conf
sed -i '/net.ipv4.tcp_congestion_control/d' /etc/sysctl.conf
echo "net.core.default_qdisc = fq" >> /etc/sysctl.conf
echo "net.ipv4.tcp_congestion_control = bbr" >> /etc/sysctl.conf
sysctl -p
echo "deb http://ftp.debian.org/debian jessie-backports main" > /etc/apt/sources.list.d/jessie-backports.list
apt update
apt -t jessie-backports install shadowsocks-libev
nano /etc/shadowsocks-libev/config.json
{
"server":"0.0.0.0",
"server_port":443,
"local_port":1080,
"password":"foobar",
"timeout":60,
"fast_open":true,
"method":"chacha20"
}
services shadowsocks-libev restart
reboot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment