1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
| # 电信和联通的定向流量是可以免流的,移动基本不能免流。有些地区是全端口免流,而有的地区只有80/443/8080端口免 # 免流节点协议一般都是VMess的,而该协议的认证基于时间,要求服务器和客户端时间差绝对值不能超过90秒,但并不要求时区一致 # 免流传输协议用 tcp + http 或 ws 均可,头部伪装混淆域名即为运营商会免流的域名,路径path一般默认或:/
# 服务端通过 VMess + TCP + HTTP 组合来混淆免流的配置文件参考内容,request请求头和response响应头是免流的关键 { "log": { "loglevel": "warning" }, "routing": { "domainStrategy": "AsIs", "rules": [ { "type": "field", "ip": [ "geoip:private" ], "outboundTag": "block" } ] }, "inbounds": [ { "listen": "0.0.0.0", "port": 80, "protocol": "vmess", "settings": { "clients": [ { "email": "admin", "id": "ab638e0f-bcda-cd9a-debd-ef9693a837ad" } ] }, "streamSettings": { "network": "tcp", "security": "none", "tcpSettings": { "header": { "type": "http", "request": { "headers": {}, "method": "GET", "path": [ "/" ], "version": "1.1" }, "response": { "headers": {}, "reason": "OK", "status": "200", "version": "1.1" } } } } } ], "outbounds": [ { "protocol": "freedom", "tag": "direct" }, { "protocol": "blackhole", "tag": "block" } ] }
# Android v2rayNG客户端配置: 别名(remarks) ML 服务器地址(ip) ml.test.com 或者 [240e:47c:890:5052::1] 服务器端口(port) 80 用户ID(id) ab638e0f-bcda-cd9a-debd-ef9693a837ad 加密方式(security) none 底层传输方式(transport): 传输协议(network) tcp 伪装类型(type) http 伪装域名(http host) tjdownload.pan.wo.cn 伪装路径(path) / 传输层安全(TLS)
# 联通云盘混淆,可任选一个填到客户端中的【伪装域名(host)】中即可: tjtn.pan.wo.cn tjupload.pan.wo.cn tjdownload.pan.wo.cn
|