Hi @ all,
I'm having a strange configuration issue during a hardware refresh. When I tried to set up a cluster interface, it was detected twice, namely in the following format:
eth1.123 VIP:10.20.20.121, Node1:10.20.20.119, Node2:noIP
eth1.123 VIP:noIP, Node1:noIP , Node2:10.20.20.119
So I deleted the second one and corrected the first one to
eth1.123 VIP:10.20.20.121, Node1:10.20.20.119, Node2:10.20.20.120
Afterward, the cluster crashed due to ARP problems. Upon closer inspection, I discovered that (for some reason) OSPF was installed on the eth1.123 interfaces in the cluster.
Node1:
add interface eth1 vlan 123
set interface eth1.123 state on
set interface eth1.123 ipv4-address 10.20.20.119 mask-length 28
set ospf instance default
interface eth1.123 area 0.0.0.51 on
set ospf instance default interface eth1.123 priority 1
set ospf instance default interface eth1.123 authtype cryptographic key 1 algorithm md5 secret .....
Node2:
add interface eth1 vlan 123
set interface eth1.123 state on
set interface eth1.123 ipv4-address 10.20.20.120 mask-length 28
set ospf instance default interface eth1.123 area 0.0.0.51 on
set ospf instance default interface eth1.123 priority 1
No key
OSPF is not configured on the opposite switch!!!
Maybe someone can explain to me
-why the configuration didn't cause any problems during operation (I assume the OSPF configuration was added after the cluster was build)
-eth1.123 was not recognized as a cluster interface. The OSPF configuration shouldn't have affected this?
Thank you very much for your effort,
Herr_O