I currently have 2 machines in a cluster and wanted to add the 3rd. however I have an issue with the networking part.
on hosts 1 and 2 the networking is as followed:
Node 1
Node 2
Node 3 <- this one needs to be added
However if i want to add node 3 to the cluster I get the following message:
what am I missing here? I cannot find the problem?
on hosts 1 and 2 the networking is as followed:
Node 1
YAML:
auto lo
iface lo inet loopback
iface enp3s0f0 inet manual
iface enp3s0f1 inet manual
iface enp4s0f0 inet manual
auto enp4s0f1
iface enp4s0f1 inet static
address 10.254.0.1
netmask 24
#Cluster Interconnect
auto bond0
iface bond0 inet manual
bond-slaves enp3s0f0 enp3s0f1 enp4s0f0
bond-miimon 100
bond-mode balance-alb
auto vmbr0
iface vmbr0 inet manual
address 192.168.1.204
netmask 24
gateway 192.168.1.1
bridge-ports bond0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
Node 2
YAML:
auto lo
iface lo inet loopback
iface enp3s0f0 inet manual
iface enp3s0f1 inet manual
iface enp4s0f0 inet manual
auto enp4s0f1
iface enp4s0f1 inet static
address 10.254.0.2
netmask 24
#Cluster Interconnect
auto bond0
iface bond0 inet manual
bond-slaves enp3s0f0 enp3s0f1 enp4s0f0
bond-miimon 100
bond-mode balance-alb
mtu 1500
auto vmbr0
iface vmbr0 inet static
address 192.168.1.203
netmask 24
gateway 192.168.1.1
bridge-ports bond0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
mtu 1500
Node 3 <- this one needs to be added
YAML:
auto lo
iface lo inet loopback
iface enp2s0f0 inet manual
auto enp2s0f1
iface enp2s0f1 inet static
address 10.254.0.3
netmask 24
#Cluster Interconnect
auto vmbr0
iface vmbr0 inet static
address 192.168.1.206
netmask 24
gateway 192.168.1.254
bridge-ports enp2s0f0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
mtu 1500
However if i want to add node 3 to the cluster I get the following message:
what am I missing here? I cannot find the problem?