Questions tagged [vnet]

Questions regarding The Azure Virtual Network (VNet)

An Azure virtual network (VNet) is a representation of your own network in the cloud. It is a logical isolation of the Azure cloud dedicated to your subscription. You can fully control the IP address blocks, DNS settings, security policies, and route tables within this network.

https://learn.microsoft.com/en-us/azure/virtual-network/virtual-networks-overview

315 questions
1
vote
0 answers

Azure S2S VPN Gateway connection 0 B data in

We set up a Azure site to site VPN connection to a Cisco ASA device, which in Azure shows 'connected' and some data out but no data in (0 B). The connection uses IPSec (IKEv2) which seems fine in Azure but shows no traffic on-prem. How is that…
O. C.
  • 31
  • 4
1
vote
1 answer

Azure Private Endpoint for postgresql is not working with multiple Vnet

I have created two vnets (Main APP vnet, Reporting APP vnet both are in same region). My azure postgres database(PAAS) is hosted on main app vnet. I have created two private end point. First private end point is used for Main App, vnet…
1
vote
0 answers

Deploy to vnet from Azure devops

I want to deploy using devops several vnet enabled Logic apps standard and an Azure function. What do I need to do to accomplish this besides creating a virtual machine with my self hosted agent in the same vnet as the logic apps / function? Is it…
1
vote
1 answer

Azure - Network Security Group with Serverless App

I have serverless application in which Azure function apps are interacting with Cosmos db. I want to segregate web apps with logic and ensure database will interact only with logic part using Network Security Group and Application Security Group. My…
Ajay
  • 783
  • 3
  • 16
  • 37
1
vote
1 answer

Add virtual network to existing Event hub namespace

I have an arm template to add new virtual network to an existing Event Hub Namespace. The problem for is that i have to hard code, or ask as paramameter the vnet and subnet addresprefix. Is there a way to not have to do this or extract those values…
bogdanioanliviu
  • 87
  • 1
  • 1
  • 8
1
vote
1 answer

Azure NSG Private IP Congfiguration (WhiteList)Vnet to Vnet communication

I have situation where I want to open my Vnet(lets say Vnet1) for other Vnets (which has private IP range defined ) , I am thinking to use NSG rules and allow private IP ranges of other Vnets (lets say Vnet2 , Vnet3) to this entry point Subnet(in…
xslguy
  • 91
  • 1
  • 11
1
vote
1 answer

Unable to access my Azure for PostgreSQL Flexible Server through VNet from App Service

I have just set up a fresh Azure for PostgreSQL Flexible Server and selected to place it on my VNet rather than whitelisting with public IPs. It is on its own subnet and assigned the Storage and .SQL Service Endpoints. I also have a NodeJS API…
jdarling20
  • 13
  • 1
  • 4
1
vote
0 answers

Vnet Deep learning 3D volumetric Image Segmentation. How to handle large and different size images?

I have a V-Net to segment an organ from bunch of CT images. However, the training data varies in depth: some examples [Batch, Channels, D, H, W]: [32, 1, 34, 512, 512] [32, 1, 125, 512, 512] [32, 1, 80, 512, 512] The training dataloader requires…
1
vote
2 answers

“Client from Interface Endpoint is not allowed to access the server. Please make sure your Virtual Network is correctly configured. (SQL state 28000)

I'm trying to connect an application in Azure to my Azure DB for MySQL. I have created a private endpoint to it which was approved. However, while trying to connect to the DB, their team is getting the following error: Client from Interface…
AzNerd
  • 21
  • 5
1
vote
1 answer

Azure Vnet-to-Site Your VPN connectivity is impacted because the S2S VPN tunnels are disconnected

I'm trying to do a azure Vnet to connect on-premise, my vpn is connected status on my local machine. I installed certificates and on local is working. But my big problem is that on cloud between azure local network gateway and vnet gateway my…
Marcelo
  • 11
  • 5
1
vote
2 answers

"az network vnet peering create" results in "BadRequestError: Cannot parse the request."

I am trying to peer two Azure vnets with CLI, therefor I followed the tutorial Connect virtual networks with virtual network peering using the Azure CLI. But the result is always "BadRequestError: Cannot parse the request" # Get the id for…
1
vote
0 answers

Cannot access registered dataset in AMLS pipeline

I have a service principal for my AMLS workspace that has been granted a storage blob contributor role to ADLS Gen 2. ADLS Gen 2 is behind a vnet, but using the service principal, I was able to register it as a datastore and register a csv file in…
bab689
  • 199
  • 1
  • 12
1
vote
1 answer

Provision AKS with internal load balancer from AMLS on Azure

I would like to provision an AKS cluster that is connected to a vnet and has an internal load balancer on Azure. I am using code from here that looks like this: import azureml.core from azureml.core.compute import AksCompute, ComputeTarget # Verify…
1
vote
2 answers

.NET CORE API application timeout exception hosted in Microsoft Azure (Redis cache, SQL, .NET Core)

I have the following infrastructure: .NET Core 3.1 API, which is hosted in VNet. Inside of VNet we have 8 servers with load balancer + SQL Server + Redis Cache. We are running the API Load test 1200 operation per second on login operation (which is…
Eugene D
  • 347
  • 1
  • 3
  • 17
1
vote
1 answer

Azure Point-to-Site VPN - cannot connect to virtual machines in peered VNets

I have the following in Azure: HubVNet with VPN Gateway (Point to Site VPN) Spoke01VNet with one virtual machine HubVNet and Spoke01VNet are peered with gateway transit enabled Spoke01VNet is allowing forwarded traffic from HubVNet I connect to…