ONTAP Discussions
ONTAP Discussions
Hello Team,
We are trying to create peer cluster setup using Ontap simulator 9.12.1.
We have 2 node cluster setup and created logical interface on cluster1 to communicate using command :
Cluster991::> net interface create -vserver Cluster991 -lif Cluster991-01_LIF1 -address 192.168.32.119 -service-policy default-management -netmask 255.255.240.0 -home-node Cluster991-01 -home-port e0d -status-admin up -failover-policy local-only -firewall-policy mgmt -auto-revert true -failover-group Default -is-dns-update-enabled false
After that we tried to create peer cluster setup using command :
Cluster9121::> cluster peer create -address-family ipv4 -peer-addrs 192.168.32.119 -no-authentication true
Error: command failed: The address family IPv4 of the specified peer addresses is not valid in the IPspace "Default":
there are no operational local IPv4 intercluster LIFs available in the "Default" IPspace. Use the "network
interface show" command to verify that required LIFs are present and operational on each cluster node.
IP Address: 192.168.32.119.
Getting above error and configuration is not complete.
Kindly suggest workaround/inputs to make peer cluster setup available.
Thanks in advance.
Regards,
Shubhangi Ranvirkar
Instead of this what you did:
net interface create -vserver Cluster991 -lif Cluster991-01_LIF1 -address 192.168.32.119 -service-policy default-management -netmask 255.255.240.0 -home-node Cluster991-01 -home-port e0d -status-admin up -failover-policy local-only -firewall-policy mgmt -auto-revert true -failover-group Default -is-dns-update-enabled false
do this instead:
net interface create -vserver Cluster991 -lif Cluster991-01_LIF1 -address 192.168.32.119 -service-policy default-intercluster -netmask 255.255.240.0 -home-node Cluster991-01 -home-port e0d -status-admin up -failover-policy disabled
the service policy needs to be default intercluster
in most cases the failover policy can be disabled. (Most usually use a vlan on a port channel and most do not have an extra port for it to fail over to)
since it shouldn’t move, you can skip the auto revert and the failover group and the dns option is always false.
tip: if the option tabs out with a value, that is the default value.
And in case you didn’t already know, a cluster peer is full mesh. Every node on both sides must have an intercluster lif.
When creating a intercluster lif, select -service-policy default-intercluster as the service-policy
Please refer to the following article:
Hi Shubhangi Ranvirkar,
When creating lif,Select service policy default-intercluster from the options here
Do not choose service policy default-management
Both sides of the lif should choose service policy default-intercluster lif
Afterwards, try pinging the lif IPs on both sides. Once the IPs are pinged, create a cluster peer.