Shadowsocks安裝和配置simple-obfs服務端
本帖最後由 solexkey 於 2018-6-30 10:37 編輯
Shadowsocks安裝和配置simple-obfs服務端
SS-libev 版服務端可以加入 simple obfs 插件來二次混淆,進一步分散特徵,降低被探測出的機率
個failover功能可以port forward到自家嘅真實webserver出個真實網頁
https://zengwh.com/blog/shadowsocks-with-obfs/
https://teddysun.com/511.html
https://dcamero.azurewebsites.net/shadowsocks-simple-obfs.html
https://ttz.im/2017/08/1415
https://bbs.letitfly.me/d/301
https://github.com/shadowsocks/simple-obfs
https://github.com/aa65535/openwrt-simple-obfs
喺lede起咗隻webserver (listening port 81), ss-server 加 openwrt-simple-obfs plug-in(listening port 80), 所以lede嘅luci原本行80要改行8080
就咁用單browser 連server ip後, 就轉接到 port 81嘅webserver出個普通網頁,即喺obfs plug-in操作中
IOS client 行shadowrocket(obfuscation-http, 接 server ip 嘅port 80),啓動連接後,obfs server就會將收到嘅嘢轉接到ss-server作正常翻墙
成功實現同port共用
ss-server config file :- {
- "server": "0.0.0.0",
- "server_port":80,
- "local_port": 1080,
- "password": <<ss-server password>>,
- "timeout": 60,
- "method": <<your encryption>>,
- "plugin":"/usr/bin/obfs-server",
- "plugin_opts":"obfs=http;failover=127.0.0.1:81"
- }
複製代碼 |
|
|