Debian 上安装 Shadowsocks 并启用 HTTP 混淆
在 Debian 上安装 Shadowsocks 并启用 HTTP 混淆
本指南将引导您在 Debian 系统上安装 Shadowsocks,并使用 simple-obfs 插件启用 HTTP 混淆,以增强网络安全和匿名性。
步骤 1:安装 Shadowsocks
sudo apt-get update
sudo apt-get install shadowsocks-libev
步骤 2:安装 HTTP 混淆插件
sudo apt-get install simple-obfs
步骤 3:编辑 Shadowsocks 配置文件
sudo nano /etc/shadowsocks-libev/config.json
在文件中添加以下内容:
{
'server': 'your_server_ip',
'server_port': your_server_port,
'local_port': 1080,
'password': 'your_password',
'timeout': 60,
'method': 'your_encryption_method',
'plugin': 'obfs-server',
'plugin_opts': 'obfs=http'
}
其中,your_server_ip 和 your_server_port 是您的 Shadowsocks 服务器地址和端口,your_password 是您的 Shadowsocks 密码,your_encryption_method 是您的加密方式。
步骤 4:启动 Shadowsocks
sudo systemctl start shadowsocks-libev
步骤 5:启动 HTTP 混淆
sudo obfs-server --listen 127.0.0.1:8443 --obfs http &
步骤 6:配置 iptables 重定向流量
sudo iptables -t nat -A OUTPUT -p tcp -j REDIRECT --to-ports 8443
步骤 7:测试连接
curl --socks5-hostname 127.0.0.1:1080 https://www.google.com
如果能够成功访问 Google,则说明您已经成功启用 HTTP 混淆。
原文地址: https://www.cveoy.top/t/topic/nfO1 著作权归作者所有。请勿转载和采集!