We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug I want to create a network such that peers can contact eachother as if they were on the same physical network segment.
To Reproduce Steps to reproduce the behavior:
apiVersion: v1 kind: Namespace metadata: name: wireguard --- apiVersion: vpn.wireguard-operator.io/v1alpha1 kind: Wireguard metadata: name: "ponyville" namespace: wireguard spec: mtu: "1380" serviceType: "NodePort" enableIpForwardOnPodInit: true --- apiVersion: vpn.wireguard-operator.io/v1alpha1 kind: WireguardPeer metadata: name: rainbow-dash namespace: wireguard spec: wireguardRef: "ponyville" --- apiVersion: vpn.wireguard-operator.io/v1alpha1 kind: WireguardPeer metadata: name: rarity namespace: wireguard spec: wireguardRef: "ponyville"
Expected behavior Node rainbow-dash to be able to ping node rarity and connect over TCP/UDP/IP.
rainbow-dash
rarity
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Hi @Twi,
Thank you for openning the issue. I have tried to reproduce and at least I can verify that ICMP connectivity (ping) between the nodes is possible.
How are you verifying this?
Sorry, something went wrong.
HTTP (TCP) is also possible between the peers
Can you try to also check connectivity from the wireguard pod itself. here are some tips on how you can debug this:
kubectl get pods -lapp=wireguard -n NAMESPACE_YOU_USED
kubectl exec -it <POD_NAME> -c agent -- bash
wg
iptables -L
those should be similar to what I have as you haven't configured any networkpolicy
ping 10.8.0.2 ping 10.8.0.3
You could also do a tcpdump on the pod and analyse the logs. I'll be happy to help you debug this further and available for a quick call if needed
No branches or pull requests
Describe the bug
I want to create a network such that peers can contact eachother as if they were on the same physical network segment.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Node
rainbow-dash
to be able to ping noderarity
and connect over TCP/UDP/IP.Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: