You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -33,7 +33,7 @@ In this article, you learn how to create your first reverse lookup DNS zone and
33
33
| --- | --- |
34
34
|**Subscription**| Select your subscription.|
35
35
|**Resource group**| Select or create a new resource group. To learn more about resource groups, read the [Resource Manager](../azure-resource-manager/management/overview.md?toc=%2fazure%2fdns%2ftoc.json#resource-groups) overview article.|
36
-
|**Name**| Enter a name for the DNS zone. The name of the zone is specified differently for IPv4 and IPv6 prefixes. Use the instructions for [IPv4](#ipv4) or [IPv6](#ipv6) to name your zone. |
36
+
|**Name**| Enter a name for the DNS zone. Use the instructions for [IPv4](#ipv4) to name your zone. |
37
37
|**Location**| Select the location for the resource group. The location is already be selected if you're using a previously created resource group. |
38
38
39
39
5. Select **Review + create**, and then select **Create** once validation has passed.
@@ -75,39 +75,7 @@ az network dns zone create -g mydnsresourcegroup -n 2.0.192.in-addr.arpa
75
75
76
76
### IPv6
77
77
78
-
The name of an IPv6 reverse lookup zone should be in the following form:
79
-
`<IPv6 network prefix in reverse order>.ip6.arpa`. For examples, see [Overview of reverse DNS](dns-reverse-dns-overview.md#ipv6) for IPv6.
80
-
81
-
82
-
The following example shows how to create an IPv6 reverse DNS lookup zone named `0.0.0.0.d.c.b.a.8.b.d.0.1.0.0.2.ip6.arpa` in Azure DNS via the Azure portal:
83
-
84
-
:::image type="content" source="./media/dns-reverse-dns-hosting/ipv6-arpa-zone.png" alt-text="Screenshot of create IPv6 arpa DNS zone.":::
85
-
86
-
The following examples show how to complete this task using Azure PowerShell and Azure CLI.
azure network dns zone create mydnsresourcegroup 0.0.0.0.d.c.b.a.8.b.d.0.1.0.0.2.ip6.arpa
98
-
```
99
-
100
-
#### Azure CLI
101
-
102
-
```azurecli
103
-
az network dns zone create -g mydnsresourcegroup -n 0.0.0.0.d.c.b.a.8.b.d.0.1.0.0.2.ip6.arpa
104
-
```
105
-
106
-
## Delegate a reverse DNS lookup zone
107
-
108
-
Once the reverse DNS lookup zone gets created, you then need to make sure the zone gets delegated from the parent zone. DNS delegation enables the DNS name resolution process to find the name servers that host your reverse DNS lookup zone. Those name servers can then answer DNS reverse queries for the IP addresses in your address range.
109
-
110
-
For forward lookup zones, the process of delegating a DNS zone is described in [Delegate your domain to Azure DNS](dns-delegate-domain-azure-dns.md). Delegation for reverse lookup zones works the same way. The only difference is that you need to configure the name servers with the ISP. The ISP manages your IP range, that's why they need to update the name servers instead of domain name registrar.
78
+
Azure Public DNS doesn't currently support IPv6 reverse DNS zones or records.
111
79
112
80
## Create a DNS PTR record
113
81
@@ -152,47 +120,7 @@ az network dns record-set ptr add-record -g mydnsresourcegroup -z 2.0.192.in-add
152
120
153
121
### IPv6
154
122
155
-
The following example explains the process of creating new PTR record for IPv6. To learn more about record types or how to modify existing records, see [Manage DNS records and record sets](dns-operations-recordsets-portal.md).
156
-
157
-
1. At the top of the reverse DNS zone **Overview** page, select **Record sets** and then select **+Add**.
158
-
159
-

160
-
161
-
1. The name of the record set for a PTR record is the rest of the IPv6 address in reverse order. It must not include any zero compression.
162
-
163
-
In this example, the first 64 bits of the IPv6 gets populated as part of the zone name (0.0.0.0.c.d.b.a.8.b.d.0.1.0.0.2.ip6.arpa). That's why only the last 64 bits are supplied in the **Name** box. The last 64 bits of the IP address gets entered in reverse order, with a period as the delimiter between each hexadecimal number. Name your record set **e.5.0.4.9.f.a.1.c.b.0.1.4.2.5.f** if you have a resource whose IP address is 2001:0db8:abdc:0000:f524:10bc:1af9:405e.
164
-
165
-
:::image type="content" source="./media/dns-reverse-dns-hosting/create-ipv6-ptr.png" alt-text="Screenshot of create IPv6 pointer record.":::
166
-
167
-
1. For *Type*, select **PTR**.
168
-
169
-
1. For *DOMAIN NAME*, enter the FQDN of the resource that uses the IP.
170
-
171
-
1. Select **OK** to create the DNS record.
172
-
173
-
The following examples show how to complete this task by using PowerShell or Azure CLI.
az network dns record-set ptr add-record -g mydnsresourcegroup -z 0.0.0.0.c.d.b.a.8.b.d.0.1.0.0.2.ip6.arpa -n e.5.0.4.9.f.a.1.c.b.0.1.4.2.5.f --ptrdname dc2.contoso.com
191
-
```
192
-
193
-
## View records
194
-
195
-
To view the records that you created, browse to your DNS zone in the Azure portal. In the lower part of the **DNS zone** pane, you can see the records for the DNS zone. You should see the default NS and SOA records, plus any new records that you've created. The NS and SOA records are created in every zone.
123
+
Azure Public DNS doesn't currently support IPv6 reverse DNS zones or records.
196
124
197
125
### IPv4
198
126
@@ -222,29 +150,7 @@ az network dns record-set list -g mydnsresourcegroup -z 2.0.192.in-addr.arpa
222
150
223
151
### IPv6
224
152
225
-
The **DNS zone** page shows the IPv6 PTR record:
226
-
227
-
:::image type="content" source="./media/dns-reverse-dns-hosting/view-ipv6-ptr-record.png" alt-text="Screenshot of IPv6 pointer record on overview page." lightbox="./media/dns-reverse-dns-hosting/view-ipv6-ptr-record.png":::
228
-
229
-
The following examples show how to view the records by using PowerShell or Azure CLI.
azure network dns record-set list mydnsresourcegroup 0.0.0.0.c.d.b.a.8.b.d.0.1.0.0.2.ip6.arpa
241
-
```
242
-
243
-
#### Azure CLI
244
-
245
-
```azurecli
246
-
az network dns record-set list -g mydnsresourcegroup -z 0.0.0.0.c.d.b.a.8.b.d.0.1.0.0.2.ip6.arpa
247
-
```
153
+
Azure Public DNS doesn't currently support IPv6 reverse DNS zones or records.
248
154
249
155
## FAQ
250
156
@@ -260,7 +166,7 @@ Hosting the reverse DNS lookup zone for your ISP-assigned IP block in Azure DNS
260
166
261
167
### Can I host reverse DNS lookup zones for both IPv4 and IPv6 addresses in Azure DNS?
262
168
263
-
Yes. This article explains how to create both IPv4 and IPv6 reverse DNS lookup zones in Azure DNS.
169
+
Only IPv4 reverse zones are supported. This article explains how to create IPv4 reverse DNS lookup zones in Azure DNS. IPv6 reverse lookup zones aren't currently supported.
264
170
265
171
### Can I import an existing reverse DNS lookup zone?
0 commit comments