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://docs.microsoft.com/en-us/azure/virtual-network/virtual-networks-overview

196 questions
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
  • 1,804
  • 1
  • 16
  • 27
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
  • 339
  • 3
  • 11
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
  • 1
  • 6
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
  • 882
  • 10
  • 24
0
votes
3 answers

Azure, connection refused on some ports when accessed from the internet

I have 2 VMs (CentOS), running in the same VNET (and subnet). They both have a static public IP. I have a Network Security Group which defines inbound and outbound rules, attached to both NICs as well as to the VNET. One of the inbound rules is the…
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
  • 31
  • 3
0
votes
1 answer

Azure v-net in failed state after re-deploying ARM script

I previously used this script: https://github.com/AdamBJ/SAP-HANA-ARM to spin up two Azure VMs. I wanted to use the script to spin up two more VMs, so I changed the VM names that were hard-coded into the script and tried running it again. However,…
Adam
  • 6,140
  • 10
  • 41
  • 80
0
votes
1 answer

How to add a subnet to a vnet in another resource group in JSON templates

I have a VNET in a resource group call VNET. I have another resource group which will contain a database server. I want to add a subnet for the database server to the virtual network in the resource group called VNET. What is the best way to to this…
itye1970
  • 831
  • 1
  • 12
  • 28
0
votes
1 answer

azure logic apps and ftp to azure VM on subnet

Is it possible to connect an Azure logic app to an FTP server residing on an Azure VM that lives in a subnet under a private IP address ? I cannot, when trawling the internet, find many (-if any at all) references to anybody trialling this, although…
robgoch
  • 3
  • 1
0
votes
0 answers

After Azure WebApp integration to VNET - Unable to connect to Azure SQL

I was trying to connect my Azure webapp(paas) to my VM in another VNET - I could get this working by doing a VNET integration following the instructions https://docs.microsoft.com/en-us/azure/app-service/web-sites-integrate-with-vnet I could now…
0
votes
1 answer

Azure Vnet peering with public IP load balancer

I got two Vnets: Vnet #1: 1 VM with Public (internet facing) IP load balancer - internet connected App VMs. Vnet #2: 3 VMs with public (internet facing) IP load balancer - internet and private DB servers (the load balancer is using public ip so that…
Eking
  • 581
  • 6
  • 12
0
votes
2 answers

Create loadbalancer inside a vnet with azure

I want to create a load balancer for all my agents. In the official docs I found a guide for an external load balancer, but I want to connect it with the api management so it has to be only visible in the vnet. This post works if you only have one…
cre8
  • 11,108
  • 5
  • 33
  • 55
0
votes
0 answers

How to connect 2 cross region azure vnet using express route

I have one vnet in Australia East and another in Australia southeast I need minimum latency setup between these 2 regions. I am looking at ER connection to both VNET but cant find any detailed guide on this. Traffic will be bidirectional. Please…
0
votes
1 answer

Azure WebJob on Premise Resource

We have an Azure WebJob running on an App Service connected to a vNET via Point-to-Site connection. That same vNET is then connected to the on-premise network via a Site-to-Site VPN connection. Routing is set up so to the Site-to-Site conn so that…
m1nkeh
  • 1,137
  • 15
  • 39
0
votes
1 answer

How to configure Azure AD Domain Services to use virtual network

So, here is my problem. I'm configuring Azure AD DS and as I see it, you cannot configure it through the new Azure portal (if you can, kindly direct me to that resource). I've Azure virtual machines created and attached to a virtual network. All…