Hi,
We can't use static IPv6 addresses to create the Cluster. If we want to use static IPv6 address, we need to identify it first after the cluster is created.
So, it's recommended to use IPv4 address to create the Cluster first, then use the following method to add static IPv6 address resource and add to Cluster name, then remove the IPv4 addresses. Or use dynamic IPv6 address to create the cluster.
"If you prefer to select your own statically assigned IPv6 addresses, you can reconfigure the IPv6 Address resources using PowerShell as follows (it cannot be specified when the cluster is created):"
Open a Windows PowerShell console as an Administrator and do the following:
1) Create a new IPv6 Cluster IP Resource
Add-ClusterResource -Name “IPv6 Cluster Address” -ResourceType “IPv6 Address” -Group “Cluster Group”
2) Set the properties for the newly created IP Address resource
Get-ClusterResource “IPv6 Cluster Address” | Set-ClusterParameter –Multiple @{“Network”=”Cluster Network 1”; “Address”= “2001:489828:4::”;”PrefixLength”=64}
3) Stop the netname which corresponds to this static IPv6 address
Stop-ClusterResource “Cluster Name”
4) Create a dependency between the netname and the static IPv6 address
Set-ClusterResourceDependency “Cluster Name” “[Ipv6 Cluster Address]”
You might consider having an OR dependency with between the netname and, the static IPv6 and IPv4 addresses as follows:
Set-ClusterResourceDependency “Cluster Name” “[Ipv6 Cluster Address] or [Ipv4 Cluster Address]”
5) Restart the netname
Start-ClusterResource “Cluster Name”
For name resolution, if you prefer not to use dynamic DNS, you can configure DNS mappings for the address automatically generated by the cluster, or you can configure DNS mappings for your static address. Also note that, Cluster IPv6 Address resources do not support DHCPv6.
Please check the following article for detailed information:
Thanks for your time!
Best Regards,
Anne
If the Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.