Xboard | NewV2Board
“机场”管理销售面板
https://github.com/cedar2025/Xboard/tree/dev
分流解锁
解锁机x-ui: 在解锁机上的x-ui上配置一个socks
节点,节点的信息在配置xrayr进行分流时用到。
机场节点xrayr分流配置:
/etc/XrayR/config.yml
: 解开RouteConfigPath
与OutboundConfigPath
,表示当启用该项配置。/etc/XrayR/route.json
: 文件所有内容如下,domain
下面是要分流到解锁机的站点列表。
{
"domainStrategy": "IPOnDemand",
"rules": [
{
"type": "field",
"domain": [
"geosite:netflix",
"chatgpt.com",
"openai.com",
"oaistatic.com",
"oaiusercontent.com",
"openai.com.cdn.cloudflare.net",
"openaiapi-site.azureedge.net",
"openaicom-api-bdcpf8c6d2e9atf6.z01.azurefd.net",
"openaicomproductionae4b.blob.core.windows.net",
"production-openaicom-storage.azureedge.net",
"claude.ai",
"anthropic.com",
"dazn.com",
"wikipedia.com",
"spotify.com"
],
"outboundTag": "netflix_proxy"
}
]
}
/etc/XrayR/custom_outbound.json
: 文件所有内容如下
[
{
"tag": "netflix_proxy",
"protocol": "socks",
"settings": {
"servers": [
{
"address": "解锁机ip",
"port": 解锁机x-ui的socks节点端口,
"users": [
{
"user": "解锁机x-ui的socks节点用户名",
"pass": "解锁机x-ui的socks节点密码"
}
]
}
]
}
}
]
配置完后重启xrayr restart
.