Skip to content

Commit 98db5e5

Browse files
Merge pull request #100866 from prmitiki/internet-peering-prmitiki-rp
Add resource provider registration steps
2 parents c6c1ea2 + 6446b31 commit 98db5e5

8 files changed

+47
-2
lines changed

articles/internet-peering/howto-subscription-association-portal.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,34 @@ If you prefer, you can complete this guide using the [PowerShell](howto-subscrip
2121
### Sign in to the portal
2222
[!INCLUDE [Account](./includes/account-portal.md)]
2323

24+
### Register for peering resource provider
25+
Register for peering resource provider in your subscription by following the steps below. If you do not execute this, then Azure resources required to set up peering are not accessible.
26+
27+
1. Click on **Subscriptions** on the top left corner of the portal. If you don't see it, click on **More services** and search for it.
28+
29+
> [!div class="mx-imgBorder"]
30+
> ![Open subscriptions](./media/rp-subscriptions-open.png)
31+
32+
1. Click on the subscription you want to use for peering.
33+
34+
> [!div class="mx-imgBorder"]
35+
> ![Launch subscription](./media/rp-subscriptions-launch.png)
36+
37+
1. Once the subscription opens, on the left, click on **Resource providers**. Then, in the right pane, search for *peering* in the search window, or use the scroll bar to find **Microsoft.Peering** and look at the **Status**. If the status is ***Registered***, skip the steps below and proceed to section **Create PeerAsn**. If the status is ***NotRegistered***, select **Microsoft.Peering** and click on **Register**.
38+
39+
> [!div class="mx-imgBorder"]
40+
> ![Registration start](./media/rp-register-start.png)
41+
42+
1. Observe that the status changes to ***Registering***.
43+
44+
> [!div class="mx-imgBorder"]
45+
> ![Registration in-progress](./media/rp-register-progress.png)
46+
47+
1. Wait for a min or so for it to complete registration. Then, click on **Refresh** and verify that the status is ***Registered***.
48+
49+
> [!div class="mx-imgBorder"]
50+
> ![Registration completed](./media/rp-register-completed.png)
51+
2452
### Create PeerAsn
2553
You can create a new PeerAsn resource for associating an Autonomous System Number (ASN) with Azure subscription. You can associate multiple ASNs to a subscription by creating a **PeerAsn** for each ASN you need to associate.
2654

articles/internet-peering/howto-subscription-association-powershell.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,25 @@ If you prefer, you can complete this guide using the [portal](howto-subscription
2424
### Sign in to your Azure account and select your subscription
2525
[!INCLUDE [Account](./includes/account-powershell.md)]
2626

27+
### Register for peering resource provider
28+
Register for peering resource provider in your subscription using the command below. If you do not execute this, then Azure resources required to set up peering are not accessible.
29+
30+
```powershell
31+
Register-AzResourceProvider -ProviderNamespace Microsoft.Peering
32+
```
33+
34+
You can check the registration status using the commands below:
35+
```powershell
36+
Get-AzResourceProvider -ProviderNamespace Microsoft.Peering
37+
```
38+
39+
> [!IMPORTANT]
40+
> Wait for *RegistrationState* to turn "Registered" before proceeding. It may take 5 to 30 minutes after you execute the command.
41+
2742
### Update the peer information associated with this subscription
2843

44+
Below is an example to update peer information.
45+
2946
```powershell
3047
New-AzPeerAsn `
3148
-Name "Contoso_1234" `
6.82 KB
Loading
23.1 KB
Loading
56.4 KB
Loading
18.6 KB
Loading
41.9 KB
Loading

articles/internet-peering/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.author: prmitiki
1212

1313
# Internet peering overview
1414

15-
Peering is the interconnection between Microsoft’s global network (AS8075) and your network for the purpose of exchanging internet traffic from/to Microsoft online services and Microsoft Azure Services. Carriers or Service Providers can request to connect with Microsoft at any of our Edge locations. Each request is reviewed by Microsoft Azure Networking to ensure that it adheres to our peering policy. You can set up a peering with Microsoft network in two ways:
15+
Peering is the interconnection between Microsoft’s global network (AS8075) and your network for the purpose of exchanging internet traffic from/to Microsoft online services and Microsoft Azure Services. Carriers or Service Providers can request to connect with Microsoft at any of our Edge locations. Each request is reviewed by Microsoft to ensure that it adheres to our peering policy. You can set up a peering with Microsoft network in two ways:
1616

1717
* **Direct peering:**
1818

@@ -28,7 +28,7 @@ Peering is the interconnection between Microsoft’s global network (AS8075) and
2828
* Protect customer traffic against failures in your network or transit provider's network, by peering with Microsoft at redundant locations.
2929
* Learn performance metrics about your peering connections and utilize insights to troubleshoot your network.
3030

31-
## Benefits of using Azure
31+
## Benefits of using Azure to set up peering
3232

3333
You may request for peering with Microsoft using Azure PowerShell or portal. Peering set up in this manner is managed as an Azure resource and provides the following benefits:
3434
* Simplified and automatable steps to set up and manage peering with Microsoft.

0 commit comments

Comments
 (0)