Skip to content

Commit 7a18b3b

Browse files
committed
Merge branch 'dns-private-faq' of https://github.com/vhorne/azure-docs-pr into dns-private-faq
2 parents b62a138 + f584d37 commit 7a18b3b

File tree

3 files changed

+24
-38
lines changed

3 files changed

+24
-38
lines changed

articles/dns/dns-faq-private.md

Lines changed: 21 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,10 @@ ms.author: victorh
1212

1313
## Does Azure DNS support private domains?
1414

15-
Support for private domains is implemented by using the Private Zones feature. This feature is currently available in public preview. Private zones are managed by using the same tools as internet-facing Azure DNS zones. They're resolvable only from within your specified virtual networks. For more information, see the [overview](private-dns-overview.md).
15+
Support for private domains is supported using Azure Private DNS Zones feature. Private DNS zones are managed using the same tools as internet-facing Azure DNS zones. They're resolvable only from within your specified virtual networks. For more information, see the [overview](private-dns-overview.md).
1616

1717
For information on other internal DNS options in Azure, see [Name resolution for VMs and role instances](../virtual-network/virtual-networks-name-resolution-for-vms-and-role-instances.md).
1818

19-
## What's the difference between Registration virtual network and Resolution virtual network in the context of private zones?
20-
21-
You can link virtual networks to a DNS private zone as a Registration virtual network or as a Resolution virtual network. In either case, virtual machines in the virtual network successfully resolve against records in the private zone. With a Registration virtual network, DNS records are automatically registered into the zone for the virtual machines in the virtual network. When a virtual machine in a Registration virtual network is deleted, the corresponding DNS record from the linked private zone is automatically removed.
22-
2319
## Will Azure DNS Private Zones work across Azure regions?
2420

2521
Yes. Private Zones is supported for DNS resolution between virtual networks across Azure regions. Private Zones works even without explicitly peering the virtual networks. All the virtual networks must be specified as Resolution virtual networks for the private zone. Customers might need the virtual networks to be peered for TCP/HTTP traffic to flow from one region to another.
@@ -32,29 +28,29 @@ No. Private zones work along with virtual networks. Customers use them to manage
3228

3329
Yes. You can associate up to 1000 virtual networks with a single private zone.
3430

35-
## Can a virtual network that belongs to a different subscription be added as a Resolution virtual network to a private zone?
31+
## Can a virtual network that belongs to a different subscription be added as a linked virtual network to a private zone?
3632

3733
Yes. You must have write operation permission on the virtual networks and the private DNS zone. The write permission can be granted to several RBAC roles. For example, the Classic Network Contributor RBAC role has write permissions to virtual networks. For more information on RBAC roles, see [Role-based access control](../role-based-access-control/overview.md).
3834

3935
## Will the automatically registered virtual machine DNS records in a private zone be automatically deleted when you delete the virtual machine?
4036

41-
Yes. If you delete a virtual machine within a Registration virtual network, the registered records are automatically deleted.
37+
Yes. If you delete a virtual machine within a linked virtual network with autoregistration enabled, the registered records are automatically deleted.
4238

43-
## Can an automatically registered virtual machine record in a private zone from a Registration virtual network be deleted manually?
39+
## Can an automatically registered virtual machine record in a private zone from a linked virtual network be deleted manually?
4440

4541
Yes. You can overwrite the automatically registered DNS records with a manually created DNS record in the zone. The following question and answer address this topic.
4642

47-
## What happens when I try to manually create a new DNS record into a private zone that has the same hostname as an automatically registered existing virtual machine in a Registration virtual network?
43+
## What happens when I try to manually create a new DNS record into a private zone that has the same hostname as an automatically registered existing virtual machine in a linked virtual network?
4844

49-
You try to manually create a new DNS record into a private zone that has the same hostname as an existing, automatically registered virtual machine in a Registration virtual network. When you do, the new DNS record overwrites the automatically registered virtual machine record. If you try to delete this manually created DNS record from the zone again, the delete succeeds. The automatic registration happens again as long as the virtual machine still exists and has a private IP attached to it. The DNS record is re-created automatically in the zone.
45+
You try to manually create a new DNS record into a private zone that has the same hostname as an existing, automatically registered virtual machine in a linked virtual network. When you do, the new DNS record overwrites the automatically registered virtual machine record. If you try to delete this manually created DNS record from the zone again, the delete succeeds. The automatic registration happens again as long as the virtual machine still exists and has a private IP attached to it. The DNS record is re-created automatically in the zone.
5046

51-
## What happens when we unlink a Registration virtual network from a private zone? Will the automatically registered virtual machine records from the virtual network be removed from the zone too?
47+
## What happens when we unlink a linked virtual network from a private zone? Will the automatically registered virtual machine records from the virtual network be removed from the zone too?
5248

53-
Yes. To unlink a Registration virtual network from a private zone, you update the DNS zone to remove the associated virtual network link. In this process, virtual machine records that were automatically registered are removed from the zone.
49+
Yes. To unlink a linked virtual network from a private zone, you update the DNS zone to remove the associated virtual network link. In this process, virtual machine records that were automatically registered are removed from the zone.
5450

55-
## What happens when we delete a Registration or Resolution virtual network that's linked to a private zone? Do we have to manually update the private zone to unlink the virtual network as a Registration or Resolution virtual network from the zone?
51+
## What happens when we delete a linked virtual network that's linked to a private zone? Do we have to manually update the private zone to unlink the virtual network as a linked virtual network from the zone?
5652

57-
Yes. When you delete a Registration or Resolution virtual network without unlinking it from a private zone first, your deletion operation succeeds. But the virtual network isn't automatically unlinked from your private zone, if any. You must manually unlink the virtual network from the private zone. For this reason, unlink your virtual network from your private zone before you delete it.
53+
Yes. When you delete a linked virtual network without unlinking it from a private zone first, your deletion operation succeeds. But the virtual network isn't automatically unlinked from your private zone, if any. You must manually unlink the virtual network from the private zone. For this reason, unlink your virtual network from your private zone before you delete it.
5854

5955
## Will DNS resolution by using the default FQDN (internal.cloudapp.net) still work even when a private zone (for example, private.contoso.com) is linked to a virtual network?
6056

@@ -64,17 +60,19 @@ Yes. Private Zones doesn't replace the default DNS resolutions by using the Azur
6460

6561
No. The DNS suffix on the virtual machines in your linked virtual network stays as the default Azure-provided suffix ("*.internal.cloudapp.net"). You can manually change this DNS suffix on your virtual machines to that of the private zone.
6662

67-
## Are there any limitations for private zones?
68-
69-
Yes. During the public preview, the following limitations exist:
70-
71-
* Reverse DNS works only for private IP space in the Registration virtual network.
72-
* Reverse DNS for a private IP that's not registered in the private zone returns "internal.cloudapp.net" as the DNS suffix. This suffix can't be resolved. An example is a private IP for a virtual machine in a virtual network that's linked as a Resolution virtual network to a private zone.
73-
* Conditional forwarding isn't supported, for example, to enable resolution between Azure and on-premises networks. Learn how customers can realize this scenario via other mechanisms. See [Name resolution for VMs and role instances](../virtual-network/virtual-networks-name-resolution-for-vms-and-role-instances.md)
63+
## What are the usage limits for Azure Private DNS?
7464

75-
## Are there any quotas or limits on zones or records for private zones?
65+
The following default limits apply when you use Azure Private DNS.
7666

77-
See the [Azure subscription and service limits](../azure-subscription-service-limits.md#azure-dns-limits) article.
67+
| Resource | Default limit |
68+
| --- | --- |
69+
|Private DNS zones per subscription|1000|
70+
|Record sets per Private DNS zone|25,000|
71+
|Records per record set|20|
72+
|Virtual Network Links per private DNS zone|1000|
73+
|Virtual Networks Links per private DNS zones with auto-registration enabled|100|
74+
|Number of private DNS zones a virtual network can get linked to with auto-registration enabled|1|
75+
|Number of private DNS zones a virtual network can get linked|1000|
7876

7977
## Is there portal support for private zones?
8078

articles/dns/dns-faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: dns
55
author: vhorne
66
ms.service: dns
77
ms.topic: article
8-
ms.date: 3/26/2019
8+
ms.date: 6/15/2019
99
ms.author: victorh
1010
---
1111

includes/dns-limits.md

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
author: rothja
33
ms.service: billing
44
ms.topic: include
5-
ms.date: 11/09/2018
5+
ms.date: 6/15/2019
66
ms.author: victorh
77
---
88
**Public DNS zones**
@@ -13,16 +13,4 @@ ms.author: victorh
1313
| Record sets per zone |5,000 <sup>1</sup> |
1414
| Records per record set |20 |
1515

16-
<sup>1</sup>If you need to increase these limits, contact Azure Support.
17-
18-
**Private DNS zones**
19-
20-
| Resource | Default limit |
21-
| --- | --- |
22-
|Private DNS zones per subscription|1000|
23-
|Record sets per Private DNS zone|25,000|
24-
|Records per record set|20|
25-
|Virtual Network Links per private DNS zone|1000|
26-
|Virtual Networks Links per private DNS zones with auto-registration enabled|100|
27-
|Number of private DNS zones a virtual network can get linked to with auto-registration enabled|1|
28-
|Number of private DNS zones a virtual network can get linked|1000|
16+
<sup>1</sup>If you need to increase these limits, contact Azure Support.

0 commit comments

Comments
 (0)