Mark's blog 这是 Mark 的个人博客,记录些东西。

racknerd virmach 过 google 谷歌验证,过 P 站 Pornhub 过玉米

https://github.com/P3TERX/warp.sh https://p3terx.com/archives/cloudflare-warp-configuration-script.html

WARP 官方 Linux 客户端 SOCKS5 代理模式,配合 xray 出站协议。 不是WARP WireGuard!!

CF 官方 WARP ,目前只支持在 x86_64(amd64) CPU 架构的 De­bian 10/​11、Ubuntu 20.04、Cen­tOS 8 (及其它 RHEL 8 系) 系统中使用。其它发行版也许能正常安装,但可能存在无法正常启动的问题。

推荐Ubuntu 20.04!

当然你也可以 warp 接管 ipv4,直接全部走warp,这样上油管的速度就慢了。或者套个 ipv6,不过 Pornhub 不支持 ipv6 就没法上了

推荐这个脚本:

#选择 安装WARP的Linux Client和代理模式
#warp i 刷 IP
wget -O  menu.sh https://cdn.jsdelivr.net/gh/fscarmen/warp/menu.sh && bash menu.sh

使用以下命令一把梭后将自动安装 WARP 官方客户端并开启 SOCKS5 代理端口 (127.0.0.1:40000):

自动配置 WARP 官方客户端 SOCKS5 代理:

bash <(curl -fsSL git.io/warp.sh) s5

WARP 一键配置脚本 功能菜单:

#还是安装官方 socks5 客户端
#选择 3, 重启 warp 官方客户端可以重新获取 ip
bash <(curl -fsSL git.io/warp.sh) menu

修改/usr/local/etc/xray 下的 config.json,把 "outbounds": [ 开始到最后全部替换掉。

  "outbounds": [
        {
      "tag": "direct",
      "protocol": "freedom",
      "settings": {}
    },
    {
      "tag": "cfofficialwarp",
      "protocol": "socks",
      "settings": {
        "servers": [{
          "address": "127.0.0.1",
          "port": 40000
        }]
      }
    },
  {
    "protocol": "blackhole",
    "settings": {},
    "tag": "blocked"
  }
  ],
    "routing": {
        "rules": [
          {
            "type": "field",
            "outboundTag": "cfofficialwarp",
            "domain": ["domain:google.com","domain:phncdn.com","domain:pornhub.com"]
          }
        ]
    }
}

重启xray或者直接 reboot

reboot
By Mark On