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
Copy file name to clipboardExpand all lines: articles/dns/dns-reverse-dns-hosting.md
+18-21Lines changed: 18 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,26 +24,23 @@ In this article, you learn how to create your first reverse lookup DNS zone and
24
24
25
25
## Create a reverse lookup DNS zone
26
26
27
-
1. Sign in to the [Azure portal](https://portal.azure.com).
28
-
29
-
1. On the top left-hand side of the screen, select **Create a resource** and search for **DNS zone**. Then select **Create**.
30
-
31
-
:::image type="content" source="./media/dns-operations-dnszones-portal/search-dns-zone.png" alt-text="Screenshot of create a resource search for reverse DNS zone.":::
32
-
33
-
1. On the **Create DNS zone** page, select, or enter the following settings:
27
+
1. Sign in to the [Azure portal](https://portal.azure.com/).
28
+
2. On the top left-hand side of the screen, select **Create a resource**.
29
+
3. Search for **DNS zone**, select **DNS zone**, and then select **Create**.
30
+
4. On the **Create DNS zone** page enter the following values, then select **Create**:
34
31
35
32
| Setting | Details |
36
33
| --- | --- |
37
-
|**Subscription**| Select a subscription to create the DNS zone in.|
34
+
|**Subscription**| Select your subscription.|
38
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.|
39
-
|**Name**| Enter a name for the DNS zone. The name of the zone is crafted 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. 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. |
40
37
|**Location**| Select the location for the resource group. The location is already be selected if you're using a previously created resource group. |
41
38
42
-
1. Select **Review + create**, and then select **Create** once validation has passed.
39
+
5. Select **Review + create**, and then select **Create** once validation has passed.
43
40
44
41
### IPv4
45
42
46
-
The name of an IPv4 reverse lookup zone is based on the IP range that it represents. It should be in the following format: `<IPv4 network prefix in reverse order>.in-addr.arpa`. For examples, see [Overview of reverse DNS](dns-reverse-dns-overview.md#ipv4) for IPv4.
43
+
The name of an IPv4 reverse lookup zone is based on the IP address range that it represents. Use the following format: `<IPv4 network prefix in reverse order>.in-addr.arpa`. For examples, see [Overview of reverse DNS](dns-reverse-dns-overview.md#ipv4) for IPv4.
47
44
48
45
> [!NOTE]
49
46
> When you're creating classless reverse DNS lookup zones in Azure DNS, you must use a hyphen (`-`) instead of a forward slash (`/`) in the zone name.
@@ -118,21 +115,21 @@ For forward lookup zones, the process of delegating a DNS zone is described in [
118
115
119
116
The following example explains the process of creating a PTR record for a reverse DNS zone in Azure DNS. To learn more about record types or how to modify existing records, see [Manage DNS records and record sets](dns-operations-recordsets-portal.md).
120
117
121
-
1. At the top of the *DNS zone* overview page, select **+ Record set**to open the *Add record set* pane.
118
+
1. At the top of the reverse DNS zone**Overview**page, select **Record sets**and then select **+Add**.
122
119
123
-
:::image type="content" source="./media/dns-reverse-dns-hosting/create-record-set-ipv4.png" alt-text="Screenshot of create IPv4 pointer record set.":::
120
+

124
121
125
-
1. The name of the record set for a PTR record is the rest of the IPv4 address in reverse order.
122
+
2. The name of the record set for a PTR record is the rest of the IPv4 address in reverse order.
126
123
127
124
In this example, the first three octets are already populated as part of the zone name `.2.0.192`. That's why only the last octet is needed in the **Name** box. For example, give your record set the name of **15** for a resource whose IP address is `192.0.2.15`.
128
125
129
126
:::image type="content" source="./media/dns-reverse-dns-hosting/create-ipv4-ptr.png" alt-text="Screenshot of create IPv4 pointer record.":::
130
127
131
-
1. For *Type*, select **PTR**.
128
+
3. For *Type*, select **PTR**.
132
129
133
-
1. For *DOMAIN NAME*, enter the fully qualified domain name (FQDN) of the resource that uses the IP.
130
+
4. For *DOMAIN NAME*, enter the fully qualified domain name (FQDN) of the resource that uses the IP.
134
131
135
-
1. Select **OK** to create the DNS record.
132
+
5. Select **Add** to create the reverse DNS record.
136
133
137
134
The following examples show how to complete this task by using Azure PowerShell and Azure CLI.
138
135
@@ -157,9 +154,9 @@ az network dns record-set ptr add-record -g mydnsresourcegroup -z 2.0.192.in-add
157
154
158
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).
159
156
160
-
1. At the top of the *DNS zone* pane, select **+ Record set**to open the *Add record set* pane.
157
+
1. At the top of the reverse DNS zone**Overview** page, select **Record sets**and then select **+Add**.
161
158
162
-
:::image type="content" source="./media/dns-reverse-dns-hosting/create-record-set-ipv6.png" alt-text="Screenshot of create IPv6 pointer record set.":::
159
+

163
160
164
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.
165
162
@@ -201,7 +198,7 @@ To view the records that you created, browse to your DNS zone in the Azure porta
201
198
202
199
The **DNS zone** page shows the IPv4 PTR record:
203
200
204
-
:::image type="content" source="./media/dns-reverse-dns-hosting/view-ipv4-ptr-record.png" alt-text="Screenshot of IPv4 pointer record on overview page." lightbox="./media/dns-reverse-dns-hosting/view-ipv4-ptr-record-expanded.png":::
201
+
:::image type="content" source="./media/dns-reverse-dns-hosting/view-ipv4-ptr-record.png" alt-text="Screenshot of IPv4 pointer record on overview page." lightbox="./media/dns-reverse-dns-hosting/view-ipv4-ptr-record.png":::
205
202
206
203
The following examples show how to view the PTR records by using Azure PowerShell and Azure CLI.
207
204
@@ -227,7 +224,7 @@ az network dns record-set list -g mydnsresourcegroup -z 2.0.192.in-addr.arpa
227
224
228
225
The **DNS zone** page shows the IPv6 PTR record:
229
226
230
-
:::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-expanded.png":::
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":::
231
228
232
229
The following examples show how to view the records by using PowerShell or Azure CLI.
Copy file name to clipboardExpand all lines: articles/dns/dns-web-sites-custom-domain.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ An A record is used to map a name to its IP address. In the following example, a
62
62
63
63
In the left navigation of the App Services page in the Azure portal, select **Custom domains**, then copy the IP address of your web app:
64
64
65
-
:::image type="content" source="./media/dns-web-sites-custom-domain/app-service-custom-domains.png" alt-text="Screenshot of Azure App Service Custom domains page showing the web app I P address.":::
65
+
:::image type="content" source="./media/dns-web-sites-custom-domain/app-service-custom-domains.png" alt-text="Screenshot of Azure App Service Custom domains page showing the web app IP address.":::
0 commit comments