Hi,
I've recently started working with Proxmox and built a 3-node cluster.
My nodes have the following addresses:
node1 - 10.140.128.1/9
node2 - 10.140.128.3/9
node3 - 10.140.128.5/9
Additionally, I have a special subnet for VMs: 10.140.134.0/24.
Currently, my network configuration looks like this:
Additionally, I created a new bridge (vmbr0) on each node via the Proxmox GUI with the following addresses:
node1 - 10.140.134.1/24
node2 - 10.140.134.2/24
node3 - 10.140.134.3/24
I want to enable HA in the cluster, be able to SSH into my VMs and allow VMs to connect to the Internet.
What is the best practice for configuring networking in this case? Should I configure nodes as routers? Would it be better to create a dedicated VM as a router on each node? Are there any alternative solutions I should consider?
Thanks in advance!
I've recently started working with Proxmox and built a 3-node cluster.
My nodes have the following addresses:
node1 - 10.140.128.1/9
node2 - 10.140.128.3/9
node3 - 10.140.128.5/9
Additionally, I have a special subnet for VMs: 10.140.134.0/24.
Currently, my network configuration looks like this:
Code:
auto lo
iface lo inet loopback
# Physical if
auto eno8303
iface eno8303 inet manual
# brone
auto brone
iface brone inet static
address 10.130.128.1/24
bridge-ports eno8303
bridge-stp off
bridge-fd 0
up ip route add default via 10.130.128.254 metric 300
dns-nameservers 8.8.8.8
# VLAN conf
auto eno8303.2
iface eno8303.2 inet manual
vlan-raw-device eno8303
# brtwo
auto brtwo
iface brtwo inet static
address 10.140.128.1/9
bridge-ports eno8303.2
bridge-stp off
bridge-fd 0
up ip route add default via 10.140.0.121 metric 200
dns-nameservers 8.8.8.8
Additionally, I created a new bridge (vmbr0) on each node via the Proxmox GUI with the following addresses:
node1 - 10.140.134.1/24
node2 - 10.140.134.2/24
node3 - 10.140.134.3/24
I want to enable HA in the cluster, be able to SSH into my VMs and allow VMs to connect to the Internet.
What is the best practice for configuring networking in this case? Should I configure nodes as routers? Would it be better to create a dedicated VM as a router on each node? Are there any alternative solutions I should consider?
Thanks in advance!