vps交流

[疑问] 已解决!感谢各位老大!


本帖最后由 seamus 于 2021-11-18 18:09 编辑

已解决!解决方法是用本地V2RAY客户端config.json中的设置替换中转鸡config.json中"tag"到 "routing": 之间的设置!方便快捷!

Netflix落地机安装安装V2ray-VMESS+WS+TLS,配置为

  1. {
  2.   "inbounds": [{
  3.     "port": 33149,
  4.     "listen": "127.0.0.1",
  5.     "protocol": "vmess",
  6.     "settings": {
  7.       "clients": [
  8.         {
  9.           "id": "72609a0a-6492-49e1-bfb1-fb903ed2cab8",
  10.           "level": 1,
  11.           "alterId": 0
  12.         }
  13.       ],
  14.       "disableInsecureEncryption": false
  15.     },
  16.     "streamSettings": {
  17.         "network": "ws",
  18.         "wsSettings": {
  19.             "path": "/HzwrgX",
  20.             "headers": {
  21.                 "Host": "sgluodi.beian.xyz"
  22.             }
  23.         }
  24.     }
  25.   }],

复制代码

直接连接落地机是能够看Netflix的!

中转鸡也是安装V2ray-VMESS+WS+TLS,下面实我参照网上配置修改的

  1. {
  2.   "inbounds": [{
  3.     "port": 25374,
  4.     "listen": "127.0.0.1",
  5.     "protocol": "vmess",
  6.     "settings": {
  7.       "clients": [
  8.         {
  9.           "id": "8a3a02c2-441e-6617-aa46-3552ad5c9669",
  10.           "level": 1,
  11.           "alterId": 0
  12.         }
  13.       ],
  14.       "disableInsecureEncryption": false
  15.     },
  16.     "streamSettings": {
  17.         "network": "ws",
  18.         "wsSettings": {
  19.             "path": "/mgxX675L2l",
  20.             "headers": {
  21.                 "Host": "sg.beian.xyz"
  22.             }
  23.         }
  24.     },
  25.       "sniffing": {
  26.         "enabled": true, //一定要开启 sniffing,V2Ray 才能识别 Netflix 的流量
  27.         "destOverride": ["http", "tls"]
  28.       }
  29.   }],
  30. //  "outbounds": [{
  31. //    "protocol": "freedom",
  32. //    "settings": {}
  33. //  },{
  34. //    "protocol": "blackhole",
  35. //    "settings": {},
  36. //    "tag": "blocked"
  37. //  }],
  38. //  "routing": {
  39. //    "rules": [
  40. //      {
  41. //        "type": "field",
  42. //        "ip": ["geoip:private"],
  43. //        "outboundTag": "blocked"
  44. //      }
  45. //    ]
  46. //  }
  47. "outbounds": [
  48.     {
  49.       "protocol": "freedom",
  50.       "settings": {}
  51.     },
  52.     {
  53.       "tag": "sgluodiVPS",
  54.       "protocol": "vmess",
  55.       "settings": {
  56.         "vnext": [{
  57.           "address": "45.xxx.xxx.xxx",
  58.           "port": xxxxx,
  59.          "streamSettings": {
  60.         "network": "ws",
  61.         "wsSettings": {
  62.             "path": "/HzwrgX",
  63.             "headers": {
  64.                 "Host": "sgluodi.beian.xyz"
  65.             }
  66.         }
  67.     },
  68.           "users": [{
  69.             "id": "72609a0a-6492-49e1-bfb1-fb903ed2cab8",
  70.             "security": "auto",
  71.             "alterId": 0
  72.           }]
  73.         }]
  74.       }
  75.     }
  76.   ],
  77.   "routing": {
  78.     "rules": [
  79.       {
  80.         "type": "field",
  81.         "outboundTag": "sgluodiVPS",
  82.         "domain": ["geosite:netflix"]
  83.       }
  84.     ]
  85.   }
  86.   
  87. }

复制代码

设置好中转鸡“v-2-r-a-y”启动是成功的!但是客户端连接上去后Netflix就提示没网络!
也不知道哪里错了!所以上来请教一下各位大哥!

本帖最后由 游戏人生超 于 2021-11-18 17:48 编辑

现在门槛都很低,快餐时代,几个人能耐心读一读文档的。
入站

  1. inbounds

复制代码

出站

  1. outbounds

复制代码

路由规则

  1. routing

复制代码

实现套娃分流,即出站时,奈飞流量走指定出口。
就要完成
1.设置指定出口

  1.   "outbounds": [
  2.     {
  3.       "tag": "netflix",
  4.       "protocol": "vless",
  5.       "settings": {
  6.         "vnext": [
  7.           {
  8.             "address": "****.***",
  9.             "port": 443,
  10.             "users": [
  11.               {
  12.                 "id": "****",
  13.                 "alterId": 0,
  14.                 "email": "[email protected]",
  15.                 "security": "auto"
  16.               }
  17.             ]
  18.           }
  19.         ]
  20.       },

复制代码

2.在路由规则内规定哪些流量走“netfilx”标签

  1.   "routing": {
  2.     "domainStrategy": "IPIfNonMatch",
  3.     "domainMatcher": "linear",
  4.     "rules": [
  5.       {
  6.         "type": "field",
  7.         "outboundTag": "netflix",
  8.         "domain": [
  9.           "geosite:netflix"
  10.         ]
  11.       },
  12.       {
  13.         "type": "field",
  14.         "outboundTag": "direct",
  15.                 "network": "udp,tcp"
  16.       }
  17.     ]
  18.   }

复制代码

害怕伸手党直接粘贴,多说一句,outbounds里的 默认出口标签 “direct”我上面没写,还是要加上的。

你自己抓包看一下是哪个请求出去之后没回复
有图比搜搜一大堆教程。

今晚不吃饭 发表于 2021-11-18 17:37
有图比搜搜一大堆教程。

[疑问]  已解决!感谢各位老大!就是没找到哪里错了……

“v-2-r-a-y”这个配置文件简直**
中转鸡为啥要用“v-2-r-a-y”中转呢,用iptables、nginx啥的转发到落地鸡不就行
建议直接dns  搞个奈飞机
连 中专机器能上google吗?

游戏人生超 发表于 2021-11-18 17:46
现在门槛都很低,快餐时代,几个人能耐心读一读文档的。
入站
出站

感谢老大我已经处理好了!谢谢!