Debian 上开启 Obfs 混淆 - 详细步骤及配置
要在 Debian 上开启 Obfs 混淆,请按照以下步骤进行操作:
- 安装 Shadowsocks-libev
sudo apt-get install shadowsocks-libev
- 创建一个配置文件
sudo nano /etc/shadowsocks-libev/config.json
- 添加以下内容:
{
'server':'your_server_ip',
'server_port':your_server_port,
'local_address':'127.0.0.1',
'local_port':1080,
'password':'your_password',
'timeout':60,
'method':'your_encryption_method',
'mode':'tcp_and_udp',
'plugin':'obfs-server',
'plugin_opts':'obfs=http'
}
这里,'your_server_ip' 和 'your_server_port' 是你的 Shadowsocks 服务器的 IP 地址和端口号,'your_password' 是你的 Shadowsocks 密码,'your_encryption_method' 是你选择的加密方法,例如 'aes-256-cfb'。
-
保存并关闭文件。
-
重启 Shadowsocks 服务
sudo systemctl restart shadowsocks-libev
现在,你已经成功地在 Debian 上启用了 Obfs 混淆。
原文地址: https://www.cveoy.top/t/topic/nIbi 著作权归作者所有。请勿转载和采集!