TUN-8425: Remove ICMP binding for quick tunnels

This commit is contained in:
Devin Carr 2024-05-21 16:50:09 -07:00
parent 8184bc457d
commit e9f010111d
1 changed files with 5 additions and 0 deletions

View File

@ -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")