Share via

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.

Community Center | Not monitored

1 answer

Sort by: Most helpful
  1. Trent Helms - MSFT 2,541 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

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.