Hi,
I have a Proxmox cluster at Hetzner (no shared storage). I use a feature supported by Hetzner called vSwitch which let customers connect servers via a virtual private network across different locations. My Proxmox nodes at Hetzner are inter-connected (joined) via a private subnet on a vSwitch dedicated for pve traffic.
vSwitch is cool, but unfortunately it's unreliable. So I would like to use a dedicated physical network for pve inter-node traffic. The preparation has been done, all nodes have been moved to a single rack, each node has 2 NICs: one main public NIC and one extra NIC for pve traffic.
Now I am not sure how I should switch to this. The relevant part from /etc/network/interfaces looks like this:
enp41s0 is the primary physical NIC. The node uses 192.168.110.11 as the node IP to join the cluster.
My plan is following:
- add to /etc/network/interfaces the following stanza:
- bring vmbr4010 down:
- bring enp33s0 up:
Is it going to work? I am not sure what happens if the nodes are disconnected from the current vSwitch and reconnected to the physical switch, one by one.
Thanks in advance for any hint.
I have a Proxmox cluster at Hetzner (no shared storage). I use a feature supported by Hetzner called vSwitch which let customers connect servers via a virtual private network across different locations. My Proxmox nodes at Hetzner are inter-connected (joined) via a private subnet on a vSwitch dedicated for pve traffic.
vSwitch is cool, but unfortunately it's unreliable. So I would like to use a dedicated physical network for pve inter-node traffic. The preparation has been done, all nodes have been moved to a single rack, each node has 2 NICs: one main public NIC and one extra NIC for pve traffic.
Now I am not sure how I should switch to this. The relevant part from /etc/network/interfaces looks like this:
Code:
iface enp41s0.4010 inet manual
auto vmbr4010
iface vmbr4010 inet manual
# net4010 private
bridge_ports enp41s0.4010
bridge_stp off
bridge_fd 0
mtu 1400
up ip addr add 192.168.110.11/24 dev vmbr4010
enp41s0 is the primary physical NIC. The node uses 192.168.110.11 as the node IP to join the cluster.
My plan is following:
- add to /etc/network/interfaces the following stanza:
Code:
auto enp33s0
iface enp33s0 inet static
address 192.168.110.11
netmask 255.255.255.0
- bring vmbr4010 down:
Code:
ifdown vmbr4010
- bring enp33s0 up:
Code:
ifup enp33s0
Is it going to work? I am not sure what happens if the nodes are disconnected from the current vSwitch and reconnected to the physical switch, one by one.
Thanks in advance for any hint.