Greetings,
I have 3 node cluster setup and I would like to have a private network between several VMs on different hosts.
First thing I did was to create a Linux bridge (vmbr1) via GUI on all nodes without assigning an IP address and this worked well as long as the VMs were on the same host.
What would I like to achieve is some kind of distribuded switch on each host that would be reachable from all other hosts.
I found some OpenVSwitch how-tos but they seem overly complicated and not actually easy to follow for what I am trying to acheive here.
Could somebody please point me in the right direction?
Otherwise I could just run all VMs which need to communicate together on a single host but I would like to avoid this.
Running Proxmox VE 5.4
Thanks!
My current simple setup (Proxmox nodes IPs: 10.97.48.1, 10.97.48.2, 10.97.48.3):
I have 3 node cluster setup and I would like to have a private network between several VMs on different hosts.
First thing I did was to create a Linux bridge (vmbr1) via GUI on all nodes without assigning an IP address and this worked well as long as the VMs were on the same host.
What would I like to achieve is some kind of distribuded switch on each host that would be reachable from all other hosts.
I found some OpenVSwitch how-tos but they seem overly complicated and not actually easy to follow for what I am trying to acheive here.
Could somebody please point me in the right direction?
Otherwise I could just run all VMs which need to communicate together on a single host but I would like to avoid this.
Running Proxmox VE 5.4
Thanks!
My current simple setup (Proxmox nodes IPs: 10.97.48.1, 10.97.48.2, 10.97.48.3):
Code:
auto lo
iface lo inet loopback
iface ens2f0 inet manual
iface ens2f1 inet manual
auto bond0
iface bond0 inet manual
bond-slaves ens2f0 ens2f1
bond-miimon 100
bond-mode balance-alb
#Primary NW
auto vmbr0
iface vmbr0 inet static
address 10.97.48.1
netmask 255.255.0.0
gateway 10.97.0.1
bridge-ports bond0
bridge-stp off
bridge-fd 0
Last edited: