Hello everybody,
After I successfully managed to deploy my Hyper-v hosts through VMM, I'm moving forward and I'm currently testing the deployment of a Scale-Out File Server.
I'm struggling to understand why the deployment fail with the error below. Since the error points to a specific element in the VMM configuration, I'll try to summarize the overall configuration hoping that someone has run in the same issue and can provide some kind of guidelines :-)
Error (20400)
1 parallel subtasks failed during execution.
Error (21219)
IP or subnet doesn't match to specified logical network.
Recommended Action
Specify matching logical network and IP address or subnet.
--------------Configuration -------------------------------------
Physical Computer Profile: Windows File Server (Server Role)
Hardware Configuration :
Physical Nic #1 : Allocate a static IP From the following logical network - Host Management Network
Physical NIC #2 : Allocate a static IP From the following logical network - Prod Network
Logical Network
Host Management Network (VLAN-based independent Networks)
VLAN 0 | IP subnet: 10.4.4.0/24
The logical network includes only one site, all host groups can use this site
Prod Network (VLAN-based independent Networks)
VLAN 8 | IP subnet: 10.8.0.0/16
The logical network includes only one site, all host groups can use this site
No IPPool has been created since I want to assign specific IP address (I also tested with IPpool and the deployment failed in the same way)
------------ Dump of Create Clustered File Server - (View Script) --------------------
$BmcRunAsAccount = Get-SCRunAsAccount -Name "BMC Administrator"$PhysicalComputerProfile = Get-SCPhysicalComputerProfile -Name SOFS
$HM_LN = Get-SCLogicalNetwork -Name "Host Management Network"
$Prod_LN = Get-SCLogicalNetwork -Name "Prod Network"
$PhysicalComputerConfigurations = @()
$NetworkAdapterConfigs0 = @()
$NetworkAdapterConfigs0 += New-SCPhysicalComputerNetworkAdapterConfig -UseStaticIPForIPConfiguration -SetAsPhysicalNetworkAdapter -SetAsGenericNIC -MACAddress "00-25-90-xx-xx-xx" -LogicalNetwork $HM_LN -IPv4Subnet "10.4.4.0/24" -IPv4Address"10.4.4.xx"
$NetworkAdapterConfigs0 += New-SCPhysicalComputerNetworkAdapterConfig -UseStaticIPForIPConfiguration -SetAsPhysicalNetworkAdapter -SetAsGenericNIC -MACAddress "0C-C4-7A-xx-xx-xx" -LogicalNetwork $SVC_LN -IPv4Subnet "10.8.0.0/16" -IPv4Address"10.8.200.xx"
$PhysicalComputerConfigurations += New-SCPhysicalComputerConfig -BMCAddress "10.4.4.xx" -BMCPort 623 -BMCProtocol "IPMI" -BMCRunAsAccount $BmcRunAsAccount -ComputerName "SOFSN01" -SMBiosGuid "00000000-0000-0000-0000-00xxxxxx" -PhysicalComputerProfile $PhysicalComputerProfile -PhysicalComputerNetworkAdapterConfig $NetworkAdapterConfigs0
Install-SCStorageFileServer -ClusterName "SOFSCL01" -ScaleoutFileServerName "SOFS01" -PhysicalComputerConfig $PhysicalComputerConfigurations -RunAsynchronously -ClusterIPAddress @("10.8.200.xx") -SkipClusterValidation