VM network configuration Not found while the network still works

Blagoje Ivanovic 0 Reputation points
2024-11-20T20:59:18.7933333+00:00

I have an app running on an Azure virtual machine, and today when I went into the portal to change the network access rule to access it via ssh I got this error from the screenshot. Namely, the network configuration page is "Not found". And I can't make any changes, it show as if no network interfaces are attached etc. But the main thing is the app works fine and I could connect to it via ssh until my ip changed, so the network is there, but the portal isn't showing it correctly I guess.

azure-vm Also, the overview shows nothing:

User's image

Do you know what can cause this and how to fix it? Again, i have to emphasise, the app is available at the public ip address (which isn't displayed now on the portal.

Azure Virtual Machines
Azure Virtual Machines
An Azure service that is used to provision Windows and Linux virtual machines.
8,067 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Akshay kumar Mandha 1,270 Reputation points Microsoft Vendor
    2024-11-21T07:04:20.4466667+00:00

    Hi Blagoje Ivanovic,
    Welcome to the Microsoft Q&A Platform. Thank you for posting your query here

    Based on your query, I understand your concern. Can you go to directly virtual network section separately in portal and able see what you have created vnets is that present? and also try using Azure CLI a try to check if the VNet IP and other details are reflected there use below commands

    az network public-ip list --resource-group <resourcegroup> --query "[].{Name:name, PublicIP:ipAddress}" --output table
    
    az network nic list --resource-group <resourcegroup> --query "[].{Name:name, PrivateIP:ipConfigurations[].privateIPAddress}" --output table
    
    az network vnet list --resource-group <resourcegroup> --output table
    
    az network vnet subnet list --resource-group <resourcegroup> --vnet-name <vnet> --output table
    

    For more information on commands, please refer below document
    az network vnet
    az network public-ip
    az network nic list
    az network nic
    After trying these steps, please let us know if the network interface IP and other details are showing up. If all the IPs are visible, then there might be an issue with the Azure portal UI interface

    Please let us know if you need any other information tag us in comment, we will help you further as you needed!

    1 person found this answer helpful.

Your answer

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