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

App service not working with on-premises VPN

I've been trying to set up an App Service which communicates with a server in our on-premises environment. I've set up everything regarding VNET, Local network gateway, Virtual network gateway, Point-to-Site and so on. I've also set up a Linux VM to…
0
votes
0 answers

Azure AD deleted associated vnet

I have accidently deleted the virtual network that was associated with my Azure AD instance. Therefore I can´t join computers to that domain. Is there a way to associate the Azure AD directory to another vnet? If this is not possible, can I delete…
Marc34
  • 1
0
votes
1 answer

Azure app service cannot connect external resource

I have the following application deployed in an Azure app service static void Main(string[] args) { SqlConnection con; try { con = new SqlConnection(args[0]); con.Open(); …
0
votes
1 answer

Forced tunneling for VNet peered network

I have a VNet with on-premise S2S VPN and forced tunneling configured. This is the hub for my hub-spoke network where the spoke networks are Vnet peered to the Hub. I would like to know how I can enforce 'forced tunneling' for the peered spoke…
shaswata pal
  • 389
  • 3
  • 15
0
votes
1 answer

Error configure service fabric api with api management

I am trying to configure Api hosted in service fabric cluster with API management gateway using ARM template. I am getting below error: New-AzureRmResourceGroupDeployment : 9:08:39 PM - Resource Microsoft.ApiManagement/service 'RCISAPIGateway'…
0
votes
1 answer

azure - make 30 vnets with the same ip address range accessible to 1 vnet

I have 30 service fabric clusters in different vnets. Each of them has it own public load balancer and appliction gateway. On each cluster there are 2 applications. app 1 which should be accessible from internet and app2 which should be only…
Grzegorz
  • 93
  • 8
0
votes
1 answer

Azure: Webapp Slots in different vnets

is it possible to determine each slot of an azure webapp to different ip adresses / vnets? e.g. dev-slot to the dev-vnet and prod-slot to the prod-vnet the properties to determine outbound ip-adresses work "global" (for the whole webapp is not…
notice
  • 3
  • 1
0
votes
1 answer

Adding VNET Rules to PostgreSQL Server via Azure ARM Template

I'm writing an Azure Resource Manager template automating the creation of a PostgreSQL database. I have successfully added a firewall rule with the following: { "type": "firewallRules" "apiVersion": "2017-12-01", "dependsOn": [ …
x3nr0s
  • 1,946
  • 4
  • 26
  • 46
0
votes
1 answer

How the IP adressess are connected in Azure vnet to vnet connection

I have just started working on Azure Cloud Services and was trying to establish v-net to v-net Connection within the same subscription and a different location. Vnet name = vnetOne Address space = 10.1.0.0/16 Resource Group = RG Location =…
0
votes
1 answer

How to add a gateway subnet to Vnet that contains VMs on Azure

My existing Vnet has a default subnet: 10.0.1.0/24 And I have a VM in it with IP address: 10.0.1.8 Now I want to add a gateway subnet so that I can connect web app to it, and the web app should be able to use the VM's private IP to access it. But…
Allen Zhang
  • 2,432
  • 2
  • 20
  • 31
0
votes
2 answers

Azure ARM Inline IF not working

I am trying to build an Azure VNET via .json template. I am trying to use an inline conditional statement to either create a 2nd subnet or skip creating the 2nd subnet. I do not think I am using json('null') correctly, or if this is even…
chew224
  • 481
  • 2
  • 6
  • 19
0
votes
1 answer

How to configure Azure redis cache in vnet of azure kubenretes?

I am deploying my application on which uses "Azure Redis Cache" Azure kubernetes where "aks-vnet-xxx" created by default so I wanted to put redis cache under same vnet but I am not able to do getting error Please suggest.
user1480180
  • 79
  • 2
  • 6
0
votes
2 answers

Inbound/Outbound Traffic Logging Azure VPN Gateway

I have a IPSEC connection from On-PREM to Azure via VPN gateway. I want to monitor all traffic, aka src/dest, ports, and data that ever enters or leaves that VPN gateway. How would I accomplish this under Azure?
Chris
  • 11
  • 5
0
votes
3 answers

How to replace the last octet of IP address in ARM template

I am trying to pass a parameter with an IP address prefix (say, 10.0.0.0/24) in an ARM template to deploy a VNET In the ARM template, I would like to replace 10.0.0.0/24 with 10.0.0.123 and assign it to a NIC which I would like to use later to…
Akash Masand
  • 1,441
  • 14
  • 30
0
votes
2 answers

How do I restrict traffic from webapp to a subnet in VNet

I have 3 subnets in my VNet and I would like to restrict traffic coming from a VNET integration on a webapp to just one of the three subnets. Is it possible to do that?
OjasP
  • 29
  • 3