嘟嘟社区

x-ui链式代理问题


有多个国外socks5IP

想用中转服务器转一下
搭了x-ui 用配置文件只能实现一个

怎么实现接入多个socks5  

  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": "api"
  19.     }
  20.   ],
  21.   "outbounds": [
  22.     {
  23.       "tag": "proxy",
  24.       "protocol": "socks",
  25.       "settings": {
  26.         "servers": [
  27.           {
  28.             "address": "IP",
  29.             "port": 22876,
  30.             "users": [
  31.               {
  32.                 "user": "*****",
  33.                 "pass": "*****"
  34.               }
  35.             ]
  36.           }
  37.         ]
  38.       }
  39.     },
  40.     {
  41.       "protocol": "blackhole",
  42.       "settings": {},
  43.       "tag": "blocked"
  44.     }
  45.   ],
  46.   "policy": {
  47.     "system": {
  48.       "statsInboundDownlink": true,
  49.       "statsInboundUplink": true
  50.     }
  51.   },
  52.   "routing": {
  53.     "rules": [
  54.       {
  55.         "inboundTag": [
  56.           "api"
  57.         ],
  58.         "outboundTag": "api",
  59.         "type": "field"
  60.       },
  61.       {
  62.         "ip": [
  63.           "geoip:private"
  64.         ],
  65.         "outboundTag": "blocked",
  66.         "type": "field"
  67.       },
  68.       {
  69.         "outboundTag": "blocked",
  70.         "protocol": [
  71.           "bittorrent"
  72.         ],
  73.         "type": "field"
  74.       }
  75.     ]
  76.   },
  77.   "stats": {}
  78. }

复制代码