2

I can't find a way to use Cloudflare WARP client over local SOCKS5 proxy. I even tried using Proxifier to force it to use proxy but it couldn't connect, probably because WARP uses WireGuard, which is UDP, but Proxifier only support TCP.

my local proxy on 127.0.0.1 however supports both TCP and UDP.

so how can I use Cloudflare WARP over my local SOCKS5 proxy?

2 Answers2

2

You need to set the cloudflare mode to proxy mode, in this case I'm using my linux server, so I don't have a GUI.

First type :

warp-cli register
warp-cli set-mode proxy
warp-cli set-proxy-port 4000 // or anything
warp-cli connect

In this case I'm using proxychains4 so I need to edit my proxychains4.conf.

After that I try to test using:

proxychains4 curl wtfismyip.com/json
Dominique
  • 2,373
Irfani
  • 31
-1

You can use proxy-mode of warp client, official doc here

grayxu
  • 59