vps交流

某v可以同一台机器,跳转两个不同解锁吗


连配置A跳转1号解锁
连配置B跳转2号解锁

config.json 在路由那怎么配置啊,都是看奈飞的话

可以,如果解锁用代理,就i两个nbound和outbound分别对应
如果用DNS来解锁,就写两个config,不同端口就行了
两个inbound+两个outbound,最后在routing规则里面一一对应就可

c7J8 发表于 2022-7-10 10:47
两个inbound+两个outbound,最后在routing规则里面一一对应就可

能给个例子吗大佬

厂弟 发表于 2022-7-10 10:45
可以,如果解锁用代理,就i两个nbound和outbound分别对应
如果用DNS来解锁,就写两个config,不同端口就行 …

不同端口的话,在哪配置端口啊

卤蛋 发表于 2022-7-10 10:54
能给个例子吗大佬

大概就是这样,我举例的inbound和outbound都是用的  "ws+tls"+"tcp",根据你实际修改

  1. {
  2.   "log": {
  3.         "access": "/var/log/“v-2-r-a-y”/access.log",
  4.         "error": "/var/log/“v-2-r-a-y”/error.log",
  5.         "loglevel": "warning"
  6.     },
  7.   "dns": {
  8.     "servers": [
  9.       "https+local://1.1.1.1/dns-query",
  10.           "1.1.1.1",
  11.           "1.0.0.1",
  12.           "8.8.8.8",
  13.           "8.8.4.4",
  14.           "localhost"
  15.     ]
  16.   },
  17.   "inbounds": [
  18.     {                                                                                   ##1号inbound,tls+ws为例
  19.     "port":11800,
  20.       "listen": "127.0.0.1",
  21.       "tag": "vmess-in-1",                                                     ##1号inbound tag
  22.       "protocol": "vmess",
  23.       "settings": {
  24.         "clients": [
  25.           {
  26.           "id":"uuidxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",          ##uuid
  27.           "alterId":0
  28.           }
  29.         ]
  30.       },
  31.        "streamSettings": {
  32.         "network": "ws",
  33.         "wsSettings": {
  34.             "path": "/path/",              ##反代路径
  35.             "headers": {
  36.                 "Host": "test.test.com"     ##你的站点域名
  37.             }
  38.         }
  39.     }
  40.   },
  41. {                                                                                    ##2号inbound tcp为例
  42.         "listen": "127.0.0.1",
  43.         "port": 8080,
  44.         "tag": "vmess-in-2",                                                ##2号inbound tag
  45.         "protocol": "vmess",
  46.         "settings": {
  47.             "clients": [
  48.                 {
  49.                     "id": "uuidxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",  ##uuid
  50.             "alterId":0
  51.                 }
  52.             ]
  53.         },
  54.         "streamSettings": {
  55.             "network": "tcp",
  56.             "tcpSettings": {
  57.                 "header": {
  58.                     "type": "http",
  59.                     "response": {
  60.                         "version": "1.1",
  61.                         "status": "200",
  62.                         "reason": "OK",
  63.                         "headers": {
  64.                             "Content-Type": ["application/octet-stream", "video/mpeg"],
  65.                             "Transfer-Encoding": ["chunked"],
  66.                             "Connection": ["keep-alive"],
  67.                             "Pragma": "no-cache"
  68.                         }
  69.                     }
  70.                 }
  71.             }
  72.         }
  73.     }
  74. ],
  75.   "outbounds": [
  76.     {                                                             ##1号解锁机outbound,以tls+ws为例,站内大佬提供的nf解锁sg区,真实可用
  77.       "tag": "nf-1",                                        ##1号outbound解锁机tag
  78.       "protocol": "vmess",
  79.       "settings": {
  80.         "vnext": [
  81.           {
  82.             "address": "free-sg-01.gonetflix.xyz",
  83.             "port": 443,
  84.             "users": [
  85.               {
  86.                 "id": "402d7490-6d4b-42d4-80ed-e681b0e6f1f9",
  87.                 "alterId": 0,
  88.                 "email": "[email protected]",
  89.                 "security": "auto"
  90.               }
  91.             ]
  92.           }
  93.         ]
  94.       },
  95.       "streamSettings": {
  96.         "network": "ws",
  97.         "security": "tls",
  98.         "tlsSettings": {
  99.           "allowInsecure": false
  100.         },
  101.         "wsSettings": {
  102.           "path": "ws"
  103.         }
  104.       },
  105.       "mux": {
  106.         "enabled": true,
  107.         "concurrency": 8
  108.       }
  109.     },
  110.     {                                                                            ##2号解锁机outbound,以tcp协议为例
  111.       "tag": "nf-2",                                                       ##2号outbound解锁机tag
  112.       "protocol": "vmess",
  113.       "settings": {
  114.         "vnext": [
  115.           {
  116.             "address": "ip地址",                                        ## 2号机ip地址
  117.             "port": 8080,
  118.             "users": [
  119.               {
  120.                 "id": "uuidxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",                        ##uuid
  121.                 "alterId": 0,
  122.                 "email": "[email protected]",
  123.                 "security": "auto"
  124.               }
  125.             ]
  126.           }
  127.         ]
  128.       },
  129.       "streamSettings": {
  130.         "network": "tcp",
  131.         "tcpSettings": {
  132.           "header": {
  133.             "type": "http",
  134.             "request": {
  135.               "version": "1.1",
  136.               "method": "GET",
  137.               "path": [
  138.                 "/"
  139.               ],
  140.               "headers": {
  141.                 "Host": [
  142.                   "www.microsoft.com/zh-cn"
  143.                 ],
  144.                 "User-Agent": [
  145.                   "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.75 Safari/537.36",
  146.                   "Mozilla/5.0 (iPhone; CPU iPhone OS 10_0_2 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/53.0.2785.109 Mobile/14A456 Safari/601.1.46"
  147.                 ],
  148.                 "Accept-Encoding": [
  149.                   "gzip, deflate"
  150.                 ],
  151.                 "Connection": [
  152.                   "keep-alive"
  153.                 ],
  154.                 "Pragma": "no-cache"
  155.               }
  156.             }
  157.           }
  158.         }
  159.       },
  160.       "mux": {
  161.         "enabled": true,
  162.         "concurrency": 8
  163.       }
  164.     },
  165.     {
  166.       "protocol": "freedom",
  167.       "settings": { },
  168.       "tag": "direct"
  169.     },
  170.     {
  171.       "protocol": "blackhole",
  172.       "settings": { },
  173.       "tag": "blocked"
  174.     }
  175.   ],
  176.   "routing": {
  177.     "domainStrategy": "IPIfNonMatch",
  178.     "domainMatcher": "mph",
  179.     "rules": [
  180.      {
  181.         "type": "field",
  182.         "inboundTag": ["vmess-in-1,vmess-in-2"],
  183.         "domain": ["geosite:category-ads-all"],
  184.         "outboundTag": "blocked"
  185.       },
  186.      {                                                             ##分流说明:  1号inbound进,1号outbound出
  187.         "type": "field",
  188.         "inboundTag": ["vmess-in-1"],     
  189.         "domain": ["geosite:netflix"],
  190.         "outboundTag": "nf-1"
  191.       },
  192. {                                                                 ##分流说明:  2号inbound进,2号outbound出
  193.         "type": "field",
  194.         "inboundTag": ["vmess-in-2"],
  195.         "domain": ["geosite:netflix"],
  196.         "outboundTag": "nf-2"
  197.       },
  198.       {
  199.         "type": "field",
  200.         "inboundTag": ["vmess-in-1,vmess-in-2"],
  201.         "outboundTag": "direct"
  202.       }
  203.     ]
  204.   }
  205. }

复制代码

c7J8 发表于 2022-7-10 11:36
大概就是这样,我举例的inbound和outbound都是用的  "ws+tls"+"tcp",根据你实际修改

好….好长 zsbd

c7J8 发表于 2022-7-10 11:36
大概就是这样,我举例的inbound和outbound都是用的  "ws+tls"+"tcp",根据你实际修改

研究下,谢大佬