I'll try to make an example cluster 1 node 1 has private IP1 and VIP1 cluster 2 node 2 has private IP2 and VIP2 each node uses it's private ip for outbound connections. each node can receive inbound connection on its VIP. so the wireguard config file for node1 is going to look like: [peer] endpoint: VIP2:port and for node 2: [peer] endpoint: VIP1: port the problem is that after the handshake, wireguard updates the config to the following (for example for node2): [peer] endpoint: IP1:port but IP2 cannot route to IP1... I think a well configured SNAT rule may work, although is not elegant because it forces the cluster to exchange information about their private IPs. This should not be needed and in the cloud private IPs are ephemeral.... anyway thanks for the advice, I am going to try to use it in my prototype. I still think there is need for a better technical approach for a long term solution. Thanks, Raffaele Raffaele Spazzoli Senior Architect - OpenShift , Containers and PaaS Practice Tel: +1 216-258-7717 On Sun, Sep 16, 2018 at 12:54 PM, Ivan Labáth wrote: > Hi, > > On Sun, Sep 16, 2018 at 08:21:02AM -0400, Raffaele Spazzoli wrote: > > ... then the IP that a node uses for its outbound > > connection is not the same that its peer need to use for its inbound > > connections. > > Who uses what for whose connection? You lost me here. > Looks like a broken network to me. Does TCP even work? > > Anyway, SNAT/DNAT should be able to fix things up, if you want to go > that route. > > Regards, > Ivan >