@
evemoo #14
我用的是 singbox+vless ,你可以参考一下:
```
{
"type": "vless",
"tag": "vless-in",
"tcp_fast_open": true,
"listen": "0.0.0.0",
"listen_port": xxxx,
"users": [
{
"name": "xxxx",
"uuid": "xxxx"
}
],
"transport": {
"type": "ws",
"path": "/xxxx"
}
}
```
如果没有公网 ipv4 的话可以选择监听"::",然后用 nginx+ddns 防止 ipv6 前缀变化,手机上对应着配置就好了。
QuantumultX 配置参考:
```
# 放在"[server_local]"里:
vless=
example.com:443, method=none, password=xxxx, obfs=wss, obfs-host=
example.com, obfs-uri=/xxxx, tls-verification=true, fast-open=false, udp-relay=false, tag=example_tag
# 放在"[policy]"里:
static=vless-out, example_tag
# 放在"[filter_local]"里:
ip-cidr, 10.0.0.0/8, vless-out # 家里的局域网网段
```
之后打开代理软件的开关后就可以直接在外网访问家里的局域网网段了。