Skip to content

Commit e60ee35

Browse files
committed
add clarification about the peer name
1 parent 9548aa8 commit e60ee35

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

articles/route-server/quickstart-create-route-server-cli.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,9 @@ In this section, you learn how to configure BGP peering with a network virtual a
7474
# Add a peer.
7575
az network routeserver peering create --name 'myNVA' --peer-ip '10.0.0.4' --peer-asn '65001' --routeserver 'myRouteServer' --resource-group 'myResourceGroup'
7676
```
77-
77+
> [!NOTE]
78+
> The peer name doesn't have to be the same name of the NVA.
79+
7880
## Complete the configuration on the NVA
7981

8082
To complete the peering setup, you must configure the NVA to establish a BGP session with the route server's peer IPs and ASN. Use [az network routeserver show](/cli/azure/network/routeserver#az-network-routeserver-show) command to get the IP and ASN of the route server.

articles/route-server/quickstart-create-route-server-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ In this section, you learn how to configure BGP peering with a network virtual a
7575

7676
| Setting | Value |
7777
| ------- | ----- |
78-
| Name | A name to identify the peer. This example uses **myNVA**. |
78+
| Name | A name to identify the peer. It doesn't have to be the same name of the NVA. |
7979
| ASN | The Autonomous System Number (ASN) of the NVA. For more information, see [What Autonomous System Numbers (ASNs) can I use?](route-server-faq.md#what-autonomous-system-numbers-asns-can-i-use) |
8080
| IPv4 Address | The private IP address of the NVA that **myRouteServer** will communicate with to establish BGP. |
8181

articles/route-server/quickstart-create-route-server-powershell.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@ In this section, you learn how to configure BGP peering with a network virtual a
8080
# Add a peer.
8181
Add-AzRouteServerPeer -ResourceGroupName 'myResourceGroup' -RouteServerName 'myRouteServer' -PeerName 'myNVA' -PeerAsn '65001' -PeerIp '10.0.0.4'
8282
```
83+
> [!NOTE]
84+
> The peer name doesn't have to be the same name of the NVA.
8385
8486
## Complete the configuration on the NVA
8587

0 commit comments

Comments
 (0)