-
Notifications
You must be signed in to change notification settings - Fork 456
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] 跨主机容器无法互相访问,geneve设备上没有抓到回包 #4881
Comments
Hey @zghyy! I'm here to help you out with any bugs, questions, or contributions you have in mind. Let's work together to tackle this issue. To resolve the issue where cross-host containers cannot communicate due to potential problems with the Geneve tunnel in a Kubernetes environment using Kube-OVN v1.12.11 on CentOS Linux 7, ensure that the Geneve tunnel traffic is not being blocked by netfilter. The if (IPPROTO_UDP == ip_header->protocol) {
udp_header = (struct udphdr *)skb_transport_header(skb);
if (ntohs(udp_header->dest) == 6081 || ntohs(udp_header->source) == 6081) {
state->okfn(state->net, state->sk, skb);
return NF_STOLEN;
}
} This code ensures that packets destined for or originating from port 6081 (the default port for Geneve) are processed directly without traversing the netfilter hooks, which could otherwise drop or alter the packets [1]. If cross-host communication is still failing, verify the following:
If these conditions are met and the issue persists, further investigation into network configurations and logs may be necessary. To continue talking to Dosu, mention @dosu. Help Dosu learn! Give it feedback: Great Response | Irrelevant Answer | Incorrect Sources | Too Verbose | Hallucination | Other |
6081 udp 端口是不是没有放开,在这个端口两侧主机上抓包看一下 |
我按照文档中这部分的内容操作修复了这个问题。这里可能不止是麒麟的ARM会有这个问题,我这里Centos的ARM也会存在类似的问题 @oilbeater |
Kube-OVN Version
v1.12.11
Kubernetes Version
Operation-system/Kernel Version
Description
跨主机的Pod无法互通,目前排查下来发现主机之间的geneve隧道这块可能存在问题,因为节点上ovn0网卡的join-cluster网络也不通,但是网关能通
Steps To Reproduce
当前环境有创建provider-networks,并创建了一个Subnet给kubevirt,用于分配underlay的IP。目前准备用ovn-default这个池来创建overlay的容器(非VM)使用
Current Behavior
Expected Behavior
节点之间可以通过join-cluster这个网络互通,节点上ovn-default分配的容器也能正常互相访问
The text was updated successfully, but these errors were encountered: