Azure Stack HCI

Folorunso Ojuri 1 Reputation point
2022-01-27T17:42:47.65+00:00

I recently installed Azure Stack on 2 nodes. I am able to set ip address on the first server but the second server throws error.

I tried on 2 other servers and same error observed.

Any suggestion about how to resolve issue?

Please find attached error message.

Kindly advise.

Azure Stack HCI
Azure Stack HCI
A hyperconverged infrastructure operating system delivered as an Azure service that provides security, performance, and feature updates.
216 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Trent Helms - MSFT 1,901 Reputation points Microsoft Employee
    2022-01-27T18:20:06.81+00:00

    Hi @Folorunso Ojuri ,

    The easiest way to alleviate this issue would be to set the IP address for the NIC via PowerShell. You can choose option 15 from sconfig to drop into PowerShell and use the commands below to set the static IP and DNS servers appropriately.

    Get-NetAdapter "ADAPTER_NAME" | Set-NetIPInterface -Dhcp Disabled
    Get-NetAdapter "ADAPTER_NAME" | New-NetIPAddress -IPAddress 10.46.1.157 -PrefixLength 16 -DefaultGateway 10.46.0.254
    Get-NetAdapter "ADAPTER_NAME" | Set-DnsClientServerAddress -ServerAddresses ("X.X.X.X, Y.Y.Y.Y") <-- of course, replace with the appropriate IPs :)

    Hope this helps!
    Trent

    0 comments No comments