安装 WARP
配置 WARP
# 注册客户端
warp-cli registration new
# 设置为代理模式
warp-cli mode proxy
# 连接 默认为 40000 端口
warp-cli connect
配置 xray
添加下面配置
{
"outbounds": {
{
"protocol": "socks",
"tag": "WARP", // 标签名可自定义
"settings": {
"servers": [
{
"address": "127.0.0.1",
"port": 40000
}
]
}
}
},
"routing": {
"rules": [
{
"domain": [
"geosite:openai"
],
"outboundTag": "WARP", // 这里对应上面 outbounds 里的 tag
"inboundTag": [
"xxx" // 这里 xxx 对应 inbounds 里的 tag
],
"type": "field"
}
]
}
}