嘟嘟社区

v2配置咋样改让v4直接走本地的s5


hk区想用warp就官方的能开出s5 用的x-ui v4是全球广播的 v6是原生的 用的是x-ui 咋样配能让v4走s5 v6直连 MJJ指点下
dd
先开个socks的outbound出站,然后路由里面出站写成socks,自己重写下配置完事

厂弟 发表于 2022-5-25 16:09
先开个socks的outbound出站,然后路由里面出站写成socks,自己重写下配置完事

我太菜了 这样写全部都走s5 我想访问v4地址就走s5  v6就直连不走 求大佬指点

  1. {
  2.   "api": {
  3.     "services": [
  4.       "HandlerService",
  5.       "LoggerService",
  6.       "StatsService"
  7.     ],
  8.     "tag": "api"
  9.   },
  10.   "inbounds": [
  11.     {
  12.       "listen": "127.0.0.1",
  13.       "port": 62789,
  14.       "protocol": "dokodemo-door",
  15.       "settings": {
  16.         "address": "127.0.0.1"
  17.       },
  18.       "tag": "proxy-in"
  19.     }
  20.   ],
  21.   "outbounds": [
  22.     {
  23.         "protocol": "socks",
  24.         "tag": "proxy-out",
  25.         "settings": {
  26.           "servers": [{
  27.             "address": "127.0.0.1",
  28.             "port": 40000,
  29.             "users": []
  30.           }]
  31.         }
  32.     },
  33.     {
  34.       "protocol": "freedom",
  35.       "settings": {}
  36.     },
  37.     {
  38.       "protocol": "blackhole",
  39.       "settings": {},
  40.       "tag": "blocked"
  41.     }
  42.   ],
  43.   "policy": {
  44.     "system": {
  45.       "statsInboundDownlink": true,
  46.       "statsInboundUplink": true
  47.     }
  48.   },
  49.   "routing": {
  50.     "rules": [
  51.         {
  52.             "type": "field",
  53.             "inboundTag": [
  54.               "proxy-in"
  55.             ],
  56.             "outboundTag": "proxy-out"
  57.           },
  58.       {
  59.         "inboundTag": [
  60.           "api"
  61.         ],
  62.         "outboundTag": "api",
  63.         "type": "field"
  64.       },
  65.       {
  66.         "ip": [
  67.           "geoip:private"
  68.         ],
  69.         "outboundTag": "blocked",
  70.         "type": "field"
  71.       },
  72.       {
  73.         "outboundTag": "blocked",
  74.         "protocol": [
  75.           "bittorrent"
  76.         ],
  77.         "type": "field"
  78.       }
  79.     ]
  80.   },
  81.   "stats": {}
  82. }

复制代码