前言
1. 解决某些地区, 官方禁止使用 Ipv4/ipv6 代理方式,如香港区,只能使用官方客户端 socks 代理方式
2. 使用 socks 方式可以精准解锁指定网址流量,不影响其他业务
安装 WARP
# 使用命令安装 warp 输入 2。自动配置 WARP 客户端 socks5 代理
bash <(curl -fsSL git.io/warp.sh) menu
安装完了以后如上图所示显示 40000 端口在运行即可。
配置 warp 自动刷 ip 解锁奈飞解锁
#- S 表示使用 socks 方式运行刷 ip 脚本
bash <(curl -sSL https://raw.githubusercontent.com/fscarmen/warp_unlock/main/unlock.sh) -S
选择中文
选择模式 1, 输入 vps 对应地区即可运行。
后台会一直检测是否解锁并刷新 ip。
转发奈飞流量至 socks 代理端口
1. 修改代理节点(x-ui)x-ray 的配置文件。主要就是添加一个 outbounds, 和 rules 里添加奈飞的分流规则,或者无其他要求直接复制粘贴替换原有配置即可
{
"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":[
{
"protocol":"freedom",
"settings":{}},
{
"tag":"socks-unlock",
"protocol":"socks",
"settings":{
"servers":[
{
"address":"127.0.0.1",
"port":40000,
"users":[
]
}
]
}
},
{
"protocol":"blackhole",
"settings":{ },
"tag":"blocked"
}
],
"policy":{
"system":{
"statsInboundDownlink":true,
"statsInboundUplink":true
}
},
"routing":{
"rules":[
{
"inboundTag":[
"api"
],
"outboundTag":"api",
"type":"field"
},
{
"ip":[
"geoip:private"
],
"outboundTag":"blocked",
"type":"field"
},
{
"type":"field",
"outboundTag":"socks-unlock",
"domain":[
"geosite:netflix",
"nflxvideo.net",
"nflxext.com",
"nflxso.net"
]
},
{
"outboundTag":"blocked",
"protocol":[
"bittorrent"
],
"type":"field"
}
]
},
"stats":{}}
正文完