Questions tagged [azure-dns]

110 questions
1
vote
0 answers

Create an A record for a VM in azure

I have a VM running in azure with a public ip address and the required firewall settings and network security groups. I want to create an alias for this vm such as www.abc.com. I created an A record for it with @ as the name and public-ip as the…
Askall
  • 33
  • 3
1
vote
1 answer

Azure DNS Forwarder not working with public resource

I'm trying to resolve private and public ip addresses of databases in Azure. I do that over a VPN connection. I currently have 2 DNS Forwarder vms in Azure, those are specified as DNS servers in my VPN config. The DNS forward config is as…
E. Staal
  • 525
  • 5
  • 18
1
vote
2 answers

How to host subdomain only in Azure while hosting main domain elsewhere?

I currently have a domain name, lets call it contoso.com, whose registrar is Go Daddy and the DNS is currently managed by (for the sake of discussion) Super WordPress Provider where the main website lives (i.e. the domain name at Go Daddy points to…
1
vote
1 answer

Azure Domain broken

everyone. I recently bought a domain on azure and I can't bind it to an app service (web app). When I try to bind a domain it says "App Service Domain is in a broken state. Please navigate to the App Service Domain resource and delegate to Azure DNS…
programad
  • 1,291
  • 3
  • 19
  • 38
1
vote
1 answer

Azure How can I call internal API Management service by private IP inside VNET

I created VNET in Azure. I put in one subset internal API Management which call Azure Function outside of the VNET and in another one Virtual machine. When I tried to call API Management I got a 503 exception. And if I try to ping private IP from…
1
vote
1 answer

Azure DNS Root Domain Pointing to Azure CDN Endpoint

If I were to use Azure DNS, can I point my root domain to an Azure CDN endpoint? It's kind of like creating an A record that points to an Azure CDN endpoint. Is this possible with Azure DNS? Just to paint the big picture here, I'm trying to host a…
Sam
  • 26,817
  • 58
  • 206
  • 383
1
vote
0 answers

Azure FQDN to AKS Load Balancer static IP keeps disappearing

A couple of weeks ago, I set up a Load Balancer on an AKS Cluster. I am using the following script to point a .cloudapp.azure.com domain to the Load Balancer: #!/bin/bash # Public IP address of your ingress controller IP="" # Name to…
kiwiidb
  • 331
  • 2
  • 10
1
vote
3 answers

How to change the DNS Zone nameserver in Azure?

How do I change the nameserver in a Microsoft Azure DNS Zone to be something else? I'd like to use Cloudflare for my nameservers instead of the default Azure ones.
Joey
  • 601
  • 3
  • 10
  • 19
1
vote
1 answer

Convert powershell azure command into CLI

I need to convert below into a cli command into a CLI command and need some help. New-AzDnsRecordSet -Name www -RecordType A -ZoneName host.com -ResourceGroupName devdnsgroup -Ttl 3600 -DnsRecords (New-AzDnsRecordConfig -IPv4Address…
Joelgullander
  • 1,624
  • 2
  • 20
  • 46
1
vote
1 answer

Azure Internal Load Balancer - Private DNS?

I know with external load balancers in azure we can assign a DNS, but can the same be achieved with an internal load balancer? Using MS Private DNS?
0
votes
0 answers

Azure App Service Environment Private DNS Zone Deploy if not exists Policy

We have an Azure hub and spoke network scenario, where we deploy resources into a spoke network. The ressources are secured with private endpoints. For DNS resolution we are using azure private dns zones, these zones reside in the hub subscription…
0
votes
0 answers

DNS challenge with consuming CloudAMQP service through PrivateLink service

I am testing a new RabbitMQ service hosted by CloudAMQP through the Azure Marketplace. The recommended PrivateLink configuration was straight forward and easy to set up (though auto-accept connection on AMQP side needed manual intervention). One…
0
votes
1 answer

Azure DNS for Public IP

I have your VM public ip address xxx1.northeurope.cloudapp.azure.com I want to add 1 TXT record in DNS, for this purpose I created the following DNS zone xxx1.northeurope.cloudapp.azure.com then added 1 record test TXT 3600 TEST however i can't…
Glória
  • 1
  • 1
0
votes
1 answer

How to add multiple TXT records in Azure DNS record set using .NET SDK

var recordSetParams = new RecordSet(); recordSetParams.TTL = 3600; recordSetParams.TxtRecords = new List(); var strings = new List(); var records = new…
0
votes
1 answer

Update/Modify multiple DNS A type records with same private IPv4 address in Azure using Powershell

I would like to update or modify existing multiple DNS 'A' type records with same one private IP address using powershell. Can someone help me or advise me on this please, would be a great help. Thank you. So far I tried by running below command to…