Debian 上搭建 Shadowsocks Obfs 服务器教程
要在 Debian 上创建 Shadowsocks obfs,请按照以下步骤进行操作:
- 安装 Shadowsocks
在 Debian 上安装 Shadowsocks,请使用以下命令:
sudo apt-get update
sudo apt-get install shadowsocks
- 安装 obfs 插件
在 Debian 上,您可以使用以下命令安装 obfs 插件:
sudo apt-get install libssl-dev git
git clone https://github.com/shadowsocks/simple-obfs.git
cd simple-obfs
git submodule update --init --recursive
sudo apt-get install automake libtool
./autogen.sh
./configure && make
sudo make install
- 配置 Shadowsocks
编辑 Shadowsocks 配置文件,添加以下内容:
'plugin': 'obfs-local',
'plugin_opts': 'obfs=http;obfs-host=www.bing.com'
这将启用 obfs 插件并将其与 http 混淆一起使用。obfs-host 参数设置混淆的目标主机。
- 启动 Shadowsocks
使用以下命令启动 Shadowsocks:
ssserver -c /etc/shadowsocks/config.json
现在,您的 Shadowsocks 服务器将使用 obfs 插件进行混淆。
原文地址: http://www.cveoy.top/t/topic/okeS 著作权归作者所有。请勿转载和采集!