I have two main networks setup on my Main Proxmox Host
The other node is
I tried to do
on the secondary node, but it timed out on WAITING FOR QUORUM.
Is there any way to join the node to the cluster through the other network now?
Issue: Secondary node only has 2 ethernet ports and they must be used bonded to connect to the NFS Server.
Code:
# network interface settingsauto lo
iface lo inet loopback
auto eth0
iface eth0 inet manual
auto eth1
iface eth1 inet manual
iface eth2 inet manual
iface eth3 inet manual
auto bond0
iface bond0 inet manual
slaves eth2 eth3
bond_miimon 100
bond_mode 802.3ad
auto vmbr0
iface vmbr0 inet static
address 10.1.222.55
netmask 255.255.255.0
gateway 10.1.222.1
bridge_ports eth0
bridge_stp off
bridge_fd 0
auto vmbr1
iface vmbr1 inet static
address 192.168.222.10
netmask 255.255.255.0
bridge_ports bond0
bridge_stp off
bridge_fd 0
auto vmbr2
iface vmbr2 inet manual
bridge_ports none
bridge_stp off
bridge_fd 0
The other node is
Code:
auto bond0
iface bond0 inet manual
slaves eth0 eth1
bond_miimon 100
bond_mode 802.3ad
auto vmbr0
iface vmbr0 inet static
address 192.168.222.13
netmask 255.255.255.0
gateway 192.168.222.3
bridge_ports bond0
bridge_stp off
bridge_fd 0
Code:
pvecm add 192.168.222.10
Is there any way to join the node to the cluster through the other network now?
Issue: Secondary node only has 2 ethernet ports and they must be used bonded to connect to the NFS Server.