You're seeing this error:
“New Node Mgmt IP '10.0.99.15' is not on the New Node. Found instead on ''”
This means:
The IP address 10.0.99.15 is not detected on the new node you're adding.
The system sees that IP on the network, but it's not mapped to the new node as expected.
As a result, the health check AzStackHci_Network_Test_New_Node_And_IP_Match fails.
Is likely IP Already Used by Another Device
Run ping 10.0.99.15 and arp -a from another machine.
Check if another server or device has that IP.
The IP must be free and assigned only to the new node.
New Node Does Not Have the IP Assigned
Log into the new node directly.
Run:
"Get-NetIPAddress -AddressFamily IPv4"
Confirm the IP 10.0.99.15 is actually assigned.
Also run:
"Get-NetIPConfiguration"
and check if it's on the correct NIC, with valid subnet/gateway.
Automated Configuration Missed It
If you're using a JSON or scripted config to deploy nodes (like NodeConfiguration.json), verify the management IP is correctly defined and applied.
Firewall/DNS Conflict
Make sure there are no firewall rules blocking node communication.
Check DNS to ensure the IP isn't mapped to a different hostname.
😊 If my answer helped you resolve your issue, please consider marking it as the correct answer. This helps others in the community find solutions more easily. Thanks!