cloudflared failed to dial to edge with quic only ipv6-only vps
I'm trying to use cloudflared to create a tunnel for a site, but whenever I run
cloudflared service install <token>
it hangs on 2024-09-24T14:52:33Z INF Using Systemd
and doesn't finish.
When I look at the logs for cloudflared with systemctl status cloudflared
I get the following logs:
I've also tried passing using cloudflared --edge-ip-version 6 --edge-bind-address <my server's public ipv6> service install <token>
as well, but this doesn't seem to make any difference.
:neuroHeart: thanks in advance3 Replies
update: if i manually copy the
cloudflared tunnel run --token <token>
part, and add in --edge-ip-version 6 --edge-bind-address
just after cloudflared
it runs fine, looks like this flags aren't getting passed through to the systemd service created via cloudflared service install
- is this intentional?yea that's just how it works, have to modify unit file manually
should just need --edge-ip-version and not --edge-bind-address
❤️ thanks, just a bit difficult to guess
awesome, that worked