datapath: add missing interface MAC configuration for BPFOverlay config#44513
Merged
ti-mo merged 1 commit intocilium:mainfrom Mar 4, 2026
Merged
datapath: add missing interface MAC configuration for BPFOverlay config#44513ti-mo merged 1 commit intocilium:mainfrom
ti-mo merged 1 commit intocilium:mainfrom
Conversation
|
Commit b4e9a6d does not match "(?m)^Signed-off-by:". Please follow instructions provided in https://docs.cilium.io/en/stable/contributing/development/contributing_guide/#developer-s-certificate-of-origin |
3 tasks
b4e9a6d to
b617495
Compare
Contributor
|
/test |
Contributor
|
/test |
The InterfaceMAC field is not filled from the tunnel dev's MAC address. Because of this the BPF program for the overlay resolves to 00:00:00:00:00:00, sending this broken response to the VTEP ARP lookup request. Fixes: cilium#44453 Signed-off-by: akos011221 <orbanakos2001@gmail.com>
b617495 to
37982cf
Compare
Member
|
/test |
1 similar comment
Member
|
/test |
7 tasks
1 task
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Please ensure your pull request adheres to the following guidelines:
description and a
Fixes: #XXXline if the commit addresses a particularGitHub issue.
Fixes: <commit-id>tag, thenplease add the commit author[s] as reviewer[s] to this issue.
The InterfaceMAC field is not filled from the tunnel dev's MAC address. Because of this the BPF program for the overlay resolves to 00:00:00:00:00:00, sending this broken response to the VTEP ARP lookup request.
It seems to be that the root cause was d296e0d removing the compile time option -DTHIS_INTERFACE_MAC for bpf_overlay.c, but the MAC field was not set in the replacement Go struct.
Fixes: #44453
Fixes: d296e0d