X-ui面板配置分流规则

[不指定 2023/01/09 00:02 | by Totti ]
| |
warp+ipv4+ipv6 分流
{
  "api": {
    "services": [
      "HandlerService",
      "LoggerService",
      "StatsService"
    ],
    "tag": "api"
  },
  "inbounds": [{
    "listen": "127.0.0.1",
    "port": 62789,
    "protocol": "dokodemo-door",
    "settings": {
      "address": "127.0.0.1"
    },
    "tag": "api"
  }],
  "outbounds": [{
      "tag": "IP4-out",
      "protocol": "freedom",
      "settings": {}
    },
    {
      "tag": "IP6-out",
      "protocol": "freedom",
      "settings": {
        "domainStrategy": "UseIPv6"
      }
    },
    {
      "tag": "socks5-warp",
      "protocol": "socks",
      "settings": {
        "servers": [{
          "address": "127.0.0.1",
          "port": 40000 //warp socks5端口
        }]
      }
    }
  ],
  "policy": {
    "system": {
      "statsInboundDownlink": true,
      "statsInboundUplink": true
    }
  },
  "routing": {
    "rules": [{
        "type": "field",
        "outboundTag": "IP6-out",
        "domain": ["ipget.net"] //自定义域名走IPv6出口,例:["geosite:netflix","geosite:*****"]或["netflix.com","****.**"]
      },
      {
        "type": "field",
        "outboundTag": "socks5-warp",
        "domain": ["geosite:google"] //自定义域名走socks5 warp出口,例:["geosite:netflix","geosite:*****"]或["netflix.com","****.**"]
      },
      {
        "type": "field",
        "outboundTag": "IP4-out",
        "network": "udp,tcp" //除上述规则外,其他连接走IPv4出口
      },
      {
        "inboundTag": [
          "api"
        ],
        "outboundTag": "api",
        "type": "field"
      },
      {
        "ip": [
          "geoip:private"
        ],
        "outboundTag": "blocked",
        "type": "field"
      },
      {
        "outboundTag": "blocked",
        "protocol": [
          "bittorrent"
        ],
        "type": "field"
      }
    ]
  },
  "stats": {}
}


IPv4+IPv6配置模板


{
  "api": {
    "services": [
      "HandlerService",
      "LoggerService",
      "StatsService"
    ],
    "tag": "api"
  },
  "inbounds": [{
    "listen": "127.0.0.1",
    "port": 62789,
    "protocol": "dokodemo-door",
    "settings": {
      "address": "127.0.0.1"
    },
    "tag": "api"
  }],
  "outbounds": [{
      "tag": "IP4-out",
      "protocol": "freedom",
      "settings": {}
    },
    {
      "tag": "IP6-out",
      "protocol": "freedom",
      "settings": {
        "domainStrategy": "UseIPv6"
      }
    }
  ],
  "policy": {
    "system": {
      "statsInboundDownlink": true,
      "statsInboundUplink": true
    }
  },
  "routing": {
    "rules": [{
        "type": "field",
        "outboundTag": "IP6-out",
        "domain": ["ipget.net"] //自定义域名走IPv6出口,例:["geosite:netflix","geosite:*****"]或["netflix.com","****.**"]
      },
      {
        "type": "field",
        "outboundTag": "IP4-out",
        "network": "udp,tcp" //除上述规则外,其他连接走IPv4出口
      },
      {
        "inboundTag": [
          "api"
        ],
        "outboundTag": "api",
        "type": "field"
      },
      {
        "ip": [
          "geoip:private"
        ],
        "outboundTag": "blocked",
        "type": "field"
      },
      {
        "outboundTag": "blocked",
        "protocol": [
          "bittorrent"
        ],
        "type": "field"
      }
    ]
  },
  "stats": {}
}


域名列表:
https://github.com/v2fly/domain-list-community/tree/master/data
个人 | 评论(0) | 引用(0) | 阅读(455)
发表评论
昵称

网址

电邮
打开HTML 打开UBB 表情 打开表情 隐藏 记住我 [注册]