Jordan Whited
Jordan Whited
closed with std lib netip in https://github.com/jwhited/corebgp/commit/f6ab10ec00942d7608c69603d85b09225a6ffda7
add-path added in https://github.com/jwhited/corebgp/commit/8393cb68c8f205e0f2fea0c895631a7125dfdc9c
> Do you have a suggestion on how to handle this scenario then? AFAIU, there isn't a good way to know without trying and failing if GRO is supported. That's...
> I'm pretty sure this is a false positive. Mind making a PR to ignore this? Is this OS version available in GitHub to add automation? https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources Doesn't look like...
The registry distributes public keys over DNS, and the DNS server can be secured however you want (obvious and easiest being to restrict it to only be accessible over the...
@suyuee / @xiang90 - do you have a simplified topology for reproduction? Is Calico using `type vxlan` interfaces, or something else? > With the udp segmentation offloads optimization, we observed...
Thanks @suyuee. We are able to reproduce the issue on 6.2 & 6.5 kernels with `type vxlan` interfaces and are working on a fix. @emosbaugh it looks like you are...
reproduction w/vxlan: node1 setup: ``` sudo ip link add vxlan0 type vxlan id 100 local remote sudo bridge fdb add to dst dev vxlan0 sudo ip addr add 172.16.0.1/24 dev...
@suyuee & @emosbaugh In 1.65.119 (and later) via our [unstable track](https://tailscale.com/kb/1083/install-unstable) there is an option to disable UDP GRO on Linux via environment variable: `TS_TUN_DISABLE_UDP_GRO=true`. We expect this to resolve...
I wrote a simpler program to demonstrate the issue in the kernel: https://github.com/jwhited/tun-gro-vxlan-repro/blob/main/main.go This program creates a TUN device, VXLAN device, and UDP socket. It writes packets to the TUN...