diff --git a/cmd/cloudflared/tunnel/cmd.go b/cmd/cloudflared/tunnel/cmd.go index 67dd5595..5196d08a 100644 --- a/cmd/cloudflared/tunnel/cmd.go +++ b/cmd/cloudflared/tunnel/cmd.go @@ -409,6 +409,11 @@ func StartServer( } } + // Disable ICMP packet routing for quick tunnels + if quickTunnelURL != "" { + tunnelConfig.PacketConfig = nil + } + internalRules := []ingress.Rule{} if features.Contains(features.FeatureManagementLogs) { serviceIP := c.String("service-op-ip")