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
0
votes
1 answer

Storage Account vnet details

I am trying to create a report to find all the storage account and its associated vnet details. & { foreach ($storageAccount in Get-AzStorageAccount) { $storageAccountName = $storageAccount.StorageAccountName $resourceGroupName =…
0
votes
0 answers

Connect to Azure SQL via Point to Site Azure VPN which is in another vNet

I have vNet1 (in south central US region) with Virtual network gateway configured with Point to Site VPN. Azure SQL has been deployed within the same vNet with private endpoint (all public access blocked.) i am able to access the Azure SQL via ssms…
0
votes
1 answer

Azure PostgreSQL Flexible Server Network Security Group Outbound Rules

We have an Azure PostgreSQL Flexible Server on a VNET subnet which we're trying to lock down as much as possible via NSG rules. As per the Microsoft documentation we've added rules to cover the guidance given: High availability Features of Azure…
Gavin
  • 5,629
  • 7
  • 44
  • 86
0
votes
1 answer

DenyVnetInbound in Azure NSG

For Azure Network Security Groups (NSGs), we have a default inbound security rule called AllowVnetInBound rule. AllowVnetInboundRule - https://learn.microsoft.com/en-us/azure/virtual-network/network-security-groups-overview#allowvnetinbound But is…
MathGeek
  • 511
  • 6
  • 17
0
votes
1 answer

Routing traffic between VNets through VPN Gateway

I have the following S2S VPN configuration. VNet peering configuration details are below: Vnet A (with VPN Gateway) Vnet B Both VNets are configured to forward traffic and either use virtual network gateway (Vnet A) or use remote virtual network…
Sergey
  • 381
  • 6
  • 24
0
votes
1 answer

Connect one Azure Subscription via another

We are having 2 Azure VNETs (192.168.0.0/20 & 10.40.1.0/16 respectively) in 2 different subscriptions (Sub - A & Sub - B) and those are connected via VNET Peerings. VMs resides on both VNETs, can able to ping each other. We do have Cisco AnyConnect…
0
votes
1 answer

Azure VNET Gateway - Firewall Traffic - Intra-subnet - port 10001, 20000, 54321

I have a Hub VNET and a VNET Gateway linked to an ExpressRoute. I added a route table on my Gateway subnet to route all traffic to my Azure Firewall. When I inspect the FW logs, I see some intra-subnet traffic in the Gateway Subnet. Somethings in…
2d1b
  • 595
  • 1
  • 6
  • 24
0
votes
0 answers

Accessing http url hosted on a VNet Peered VM from another VM

If I peer two Bastion VMs via VNet, and run a web application on one VM, will I be able to access its REST url from the other VM? Is there a charge involved for this type of access? Sorry that I couldn't find it in me to understand all that jargon…
Walking Corpse
  • 107
  • 7
  • 31
  • 49
0
votes
1 answer

Connecting AKS and Web App with VNet integration

I'm trying to connect my Web App to the AKS LoadBalancer through the VNet integration instead of a public load balancer. The problem here is to integrate VNet into the web app, the VNet needs to have a subnet delegated to Microsoft.Web/serverFarms.…
kasravi
  • 23
  • 3
0
votes
1 answer

Does peering between vnets create congestion?

Problem As you can see in the image, I have 2 vnets and both have NAT Gateways. Vnet 2 has one VM which wants to connect internet but I can't allow it directly. So want to introduce one proxy server (squid proxy) in between VM and NAT Gateway. But…
PSKP
  • 1,178
  • 14
  • 28
0
votes
2 answers

App service using private link but still need public access

I'm trying to configure an app service such that it has a private link setup into our VPN enabled vnet but also allow public access (e.g. to allow front door and our devops agents access). The docs…
0
votes
1 answer

Vnet not listing while creating a Azure Api Management

I have created a Vnet and subnet for a Azure Api management service but when I try to provision the ApiM and trying to select the internal Vnet that's created it doesn't seem to be listing in the drop down
0
votes
1 answer

Unable to reach APIM in Spoke Network from App Gateway Hub Network

I have a basic Hub and Spoke network topology set up with Azure VNets. My Hub Network seems to be unable to reach IPs/Private domains in my spoke network: Application Gateway V2 in a Hub Network (No NSGs and no WAF) APIM in spoke Network (No…
0
votes
1 answer

AKS not able to create new subnet new node pool in a seperate subnet

I am trying to create a new node pool in a newly created subnet with this command az aks nodepool add \ --resource-group nems12 \ --cluster-name nems-cluster \ --name aksperfnode \ --node-count 1 \ --vnet-subnet-id aks2 But…
0
votes
2 answers

Can't configure network config on two azure web apps

Facing a problem about VNET and Azure Web Apps I don't understand. My issue This is my setting: Two web apps on the same service plan SP1 (SP1 (P1v2: 1)) and a VNET, VNET1: Both subnets have Microsoft.Web/serverFarms delegation. I want to add…