| 
 | 
 
 本帖最后由 seamus 于 2021-11-18 18:09 编辑  
 
已解决!解决方法是用本地V2RAY客户端config.json中的设置替换中转鸡config.json中"tag"到 "routing": 之间的设置!方便快捷! 
 
 
Netflix落地机安装安装V2ray-VMESS+WS+TLS,配置为 
- {
 
 -   "inbounds": [{
 
 -     "port": 33149,
 
 -     "listen": "127.0.0.1",
 
 -     "protocol": "vmess",
 
 -     "settings": {
 
 -       "clients": [
 
 -         {
 
 -           "id": "72609a0a-6492-49e1-bfb1-fb903ed2cab8",
 
 -           "level": 1,
 
 -           "alterId": 0
 
 -         }
 
 -       ],
 
 -       "disableInsecureEncryption": false
 
 -     },
 
 -     "streamSettings": {
 
 -         "network": "ws",
 
 -         "wsSettings": {
 
 -             "path": "/HzwrgX",
 
 -             "headers": {
 
 -                 "Host": "sgluodi.beian.xyz"
 
 -             }
 
 -         }
 
 -     }
 
 -   }],
 
  复制代码 
直接连接落地机是能够看Netflix的! 
 
中转鸡也是安装V2ray-VMESS+WS+TLS,下面实我参照网上配置修改的 
- {
 
 -   "inbounds": [{
 
 -     "port": 25374,
 
 -     "listen": "127.0.0.1",
 
 -     "protocol": "vmess",
 
 -     "settings": {
 
 -       "clients": [
 
 -         {
 
 -           "id": "8a3a02c2-441e-6617-aa46-3552ad5c9669",
 
 -           "level": 1,
 
 -           "alterId": 0
 
 -         }
 
 -       ],
 
 -       "disableInsecureEncryption": false
 
 -     },
 
 -     "streamSettings": {
 
 -         "network": "ws",
 
 -         "wsSettings": {
 
 -             "path": "/mgxX675L2l",
 
 -             "headers": {
 
 -                 "Host": "sg.beian.xyz"
 
 -             }
 
 -         }
 
 -     },
 
 -       "sniffing": {
 
 -         "enabled": true, //一定要开启 sniffing,V2Ray 才能识别 Netflix 的流量
 
 -         "destOverride": ["http", "tls"]
 
 -       }
 
  
-   }],
 
 - //  "outbounds": [{
 
 - //    "protocol": "freedom",
 
 - //    "settings": {}
 
 - //  },{
 
 - //    "protocol": "blackhole",
 
 - //    "settings": {},
 
 - //    "tag": "blocked"
 
 - //  }],
 
 - //  "routing": {
 
 - //    "rules": [
 
 - //      {
 
 - //        "type": "field",
 
 - //        "ip": ["geoip:private"],
 
 - //        "outboundTag": "blocked"
 
 - //      }
 
 - //    ]
 
 - //  }
 
  
- "outbounds": [
 
 -     {
 
 -       "protocol": "freedom",
 
 -       "settings": {}
 
 -     },
 
 -     {
 
  
-       "tag": "sgluodiVPS",
 
 -       "protocol": "vmess",
 
 -       "settings": {
 
 -         "vnext": [{
 
 -           "address": "45.xxx.xxx.xxx", 
 
 -           "port": xxxxx,
 
  
-          "streamSettings": {
 
 -         "network": "ws",
 
 -         "wsSettings": {
 
 -             "path": "/HzwrgX",
 
 -             "headers": {
 
 -                 "Host": "sgluodi.beian.xyz"
 
 -             }
 
 -         }
 
 -     },
 
  
-           "users": [{
 
 -             "id": "72609a0a-6492-49e1-bfb1-fb903ed2cab8",
 
 -             "security": "auto",
 
 -             "alterId": 0
 
 -           }]
 
 -         }]
 
 -       }
 
 -     }
 
 -   ],
 
 -   "routing": {
 
 -     "rules": [
 
 -       {
 
 -         "type": "field",
 
 -         "outboundTag": "sgluodiVPS",
 
 -         "domain": ["geosite:netflix"]
 
 -       }
 
 -     ]
 
 -   }
 
 -   
 
 - }
 
  复制代码 
 
 
设置好中转鸡v2ray启动是成功的!但是客户端连接上去后Netflix就提示没网络! 
也不知道哪里错了!所以上来请教一下各位大哥! |   
 
 
 
 |