|
|
发表于 2021-3-14 12:39:57
|
显示全部楼层
- {
- "inbounds": [
- {
- "port": 9999,
- "protocol": "vmess",
- "settings": {
- "clients": [
- {
- "id": "b831381d-6324-4d53-ad4f-8cda48b30811",
- "alterId": 0
- }
- ]
- },
- "sniffing": {
- "enabled": true, //一定要开启 sniffing,V2Ray 才能识别 Netflix 的流量
- "destOverride": ["http", "tls"]
- },
- }
- ],
- "outbounds": [
- {
- "tag":"IP4_out",
- "protocol": "freedom",
- "settings": {}
- },
- {
- "tag":"IP6_out",
- "protocol": "freedom",
- "settings": {
- "domainStrategy": "UseIPv6" // 指定使用 IPv6
- }
- }
- ],
- "routing": {
- "rules": [
- {
- "type": "field",
- "outboundTag": "IP6_out",
- "domain": ["geosite:netflix"] // netflix 走 IPv6
- },
- {
- "type": "field",
- "outboundTag": "IP4_out",
- "network": "udp,tcp"// 其余走 IPv4
- }
- ]
- }
- }
复制代码 |
|