Troubleshooting Connectivity Issues between a Virtual Machine (VM) and an Azure Container App by info.odysseyx@gmail.com September 12, 2024 written by info.odysseyx@gmail.com September 12, 2024 0 comment 9 views 9 In today’s cloud-centric world, ensuring seamless connectivity between various components is critical to maintaining efficient workflows and minimizing downtime. One common scenario is troubleshooting connectivity issues between virtual machines (VMs) and Azure container apps. This guide aims to provide a basic approach to identifying and resolving connectivity issues, covering key aspects such as ingress configuration, troubleshooting tools, and networking components. Following these steps will ensure that your VMs and Azure container apps can communicate effectively. Troubleshooting connectivity issues between a virtual machine (VM) and an Azure container app can require several steps. Here are some key steps to perform or check: Reviewing Ingress Configuration script explanation act Requests to endpoints fail. The container app endpoint is not responding to requests. Reviewing Ingress Configuration Troubleshoot Azure Container Apps | Microsoft Learn Check your DNS name Unique identifier>..azurecontainerapps.io or *. The container app environment correctly resolves to the static IP address 10.0.8.209. Networking in Azure Container App Environments | Microsoft Learn Custom environment DNS suffix for Azure container apps | Microsoft Learn Test connectivity between the VM and the container app using Psping or Test-NetConnections.. The result should show TcpTestSucceeded = True or PSping <Container app environment static IP>: https://learn.microsoft.com/en-us/sysinternals/downloads/psping NOTE: Tracert returns Timedout because there is no option to set the listening port (disable command usage) You can also use curl -v <For container app environment static IP> connection. This command should return HTTP 404. If the connection test fails, Make sure the destination port is correct and that the Azure Container App’s ingress settings are configured to allow traffic within the virtual network. check NSGs associated with VMs and container apps allow traffic on required ports (e.g. HTTP/HTTPS). Check route table for forced tunneling traffic for NVA and cCheck if there are any firewall rules that might be blocking traffic to your container app. Source link Share 0 FacebookTwitterPinterestEmail info.odysseyx@gmail.com previous post Introducing the new SharePoint start experience next post The Apple Glowtime event is tripling down on Apple Intelligence You may also like 7 Disturbing Tech Trends of 2024 December 19, 2024 AI on phones fails to impress Apple, Samsung users: Survey December 18, 2024 Standout technology products of 2024 December 16, 2024 Is Intel Equivalent to Tech Industry 2024 NY Giant? December 12, 2024 Google’s Willow chip marks breakthrough in quantum computing December 11, 2024 Job seekers are targeted in mobile phishing campaigns December 10, 2024 Leave a Comment Cancel Reply Save my name, email, and website in this browser for the next time I comment.