I would like to use Cloudflare Access’ ssh feature to tunnel into my server. It worked perfectly on my home setup. But when I’m at work behind a http proxy server. I cannot access and I don’t know what the correct proxy command combination is.
Previously if I’d ssh to my server behind company proxy gateway, I would have one proxy command line in ssh config like this:
Host h1
HostName
ProxyCommand corkscrew 10.10.101.9 8080 %h %p
Port
User root
IdentityFile ~/.ssh/id_rsa
AddKeysToAgent ask
But with cf’s ProxyCommand /usr/local/bin/cloudflared access ssh --hostname %h, I tried several combinations and it won’t work. Help appreciated.