Skip to content

Commit 67783ff

Browse files
committed
command correction
1 parent 12e1106 commit 67783ff

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,13 @@ $subnetId = (Get-AzVirtualNetworkSubnetConfig -Name RouteServerSubnet -VirtualNe
104104
105105
To establish BGP peering from the Route Server to your NVA use [Add-AzRouteServerPeer](/powershell/module/az.network/add-azrouteserverpeer):
106106
107-
The your_nva_ip is the virtual network IP assigned to the NVA. The your_nva_asn is the Autonomous System Number (ASN) configured in the NVA. The ASN can be any 16-bit number other than the ones in the range of 65515-65520. This range of ASNs is reserved by Microsoft.
107+
The `your_nva_ip` is the virtual network IP assigned to the NVA. The `your_nva_asn` is the Autonomous System Number (ASN) configured in the NVA. The ASN can be any 16-bit number other than the ones in the range of 65515-65520. This range of ASNs is reserved by Microsoft.
108108
109109
```azurepowershell-interactive
110110
$peer = @{
111-
PeerName = 'myNVA"
112-
PeerIp = '192.168.0.1'
113-
PeerAsn = '65501'
111+
PeerName = 'myNVA'
112+
PeerIp = 'your_nva_ip'
113+
PeerAsn = 'your_nva_asn'
114114
RouteServerName = 'myRouteServer'
115115
ResourceGroupName = myRouteServerRG'
116116
}

0 commit comments

Comments
 (0)