VM interconnection inside PM Cluster

Toshik

Member
Jun 13, 2012
22
0
21
Hello!

We have 3 servers (each with 1 NIC) in different datacentres, all of them are interconnected by openvpn private network.

Inside this network we have fully functional 3 nodes Proxmox 2.1 cluster.
So, actually question is:

Is there any "easy" way to make "global" local network for all VMs inside cluster, so even if we move VM from one node to other we could reach it by static IP regardless of it physical location?

Thanks in advance.
 
I have tried to make a separate openvpn bridge for 172.16.x.x, now I have at each server two interfaces:

SRV1:
Code:
openvpnbr1 - 172.16.13.1
vmbr0 - 172.16.1.1

SRV2:
Code:
openvpnbr1 - 172.16.13.2
vmbr0 - 172.16.2.1

But now there is no connection between those ifaces:


SRV1:
Code:
#ping 172.16.13.2
From 172.16.1.1 icmp_seq=2 Destination Host Unreachable

SRV2:
Code:
#ping 172.16.13.1
From 172.16.2.1 icmp_seq=2 Destination Host Unreachable

If I shut down vmbr0 interfaces, so there is connection between servers over openvpn, but vmbr0 is used by Proxmox...


Where I am wrong?